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 23fdf7fca4b..bf1460fcdbb 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 @@ -46,3 +46,7 @@ def backup_policies_mgmt_client_factory(cli_ctx, _): def vaults_mgmt_client_factory(cli_ctx, _): return cf_netappfiles(cli_ctx).vaults + + +def subvolumes_mgmt_client_factory(cli_ctx, _): + return cf_netappfiles(cli_ctx).subvolumes 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 9f26ad38948..a77d372eae6 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_help.py @@ -47,21 +47,27 @@ - name: --server-root-ca-cert short-summary: When LDAP over SSL/TLS is enabled, the LDAP client is required to have base64 encoded Active Directory Certificate Service's self-signed root CA certificate, this optional parameter is used only for dual protocol with LDAP user-mapping volumes. - name: --backup-operators - short-summary: Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier + short-summary: Users to be added to the Built-in Backup Operator active directory group. A space separated string of unique usernames without domain specifier - name: --aes-encryption short-summary: If enabled, AES encryption will be enabled for SMB communication - name: --ldap-signing short-summary: Specifies whether or not the LDAP traffic needs to be signed - name: --security-operators - 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 + short-summary: Domain Users in the Active directory to be given SeSecurityPrivilege privilege (Needed for SMB Continuously available shares for SQL). A space seperated 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 - name: --administrators - short-summary: Users to be added to the Built-in Administrators active directory group. A list of unique usernames without domain specifier. + short-summary: Users to be added to the Built-in Administrators active directory group. A space seperated string of unique usernames without domain specifier. - name: --encrypt-dc-conn short-summary: If enabled, Traffic between the SMB server to Domain Controller (DC) will be encrypted + - name: --user-dn + short-summary: This specifies the user DN, which overrides the base DN for user lookups + - name: --group-dn + short-summary: This specifies the group DN, which overrides the base DN for group lookups + - name: --group-filter + short-summary: This specifies the custom LDAP search filter to be used when looking up group membership from LDAP server examples: - name: Add an active directory to the account text: > @@ -95,21 +101,27 @@ - name: --server-root-ca-cert short-summary: When LDAP over SSL/TLS is enabled, the LDAP client is required to have base64 encoded Active Directory Certificate Service's self-signed root CA certificate, this optional parameter is used only for dual protocol with LDAP user-mapping volumes. - name: --backup-operators - short-summary: Users to be added to the Built-in Backup Operator active directory group. A list of unique usernames without domain specifier + short-summary: Users to be added to the Built-in Backup Operator active directory group. A space seperated list of unique usernames without domain specifier - name: --aes-encryption short-summary: If enabled, AES encryption will be enabled for SMB communication - name: --ldap-signing short-summary: Specifies whether or not the LDAP traffic needs to be signed - name: --security-operators - 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 + short-summary: Domain Users in the Active directory to be given SeSecurityPrivilege privilege (Needed for SMB Continuously available shares for SQL). A space seperated 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 - name: --administrators - short-summary: Users to be added to the Built-in Administrators active directory group. A list of unique usernames without domain specifier. + short-summary: Users to be added to the Built-in Administrators active directory group. A space seperated list of unique usernames without domain specifier. - name: --encrypt-dc-conn short-summary: If enabled, Traffic between the SMB server to Domain Controller (DC) will be encrypted + - name: --user-dn + short-summary: This specifies the user DN, which overrides the base DN for user lookups. + - name: --group-dn + short-summary: This specifies the group DN, which overrides the base DN for group lookups. + - name: --group-filter + short-summary: This specifies the custom LDAP search filter to be used when looking up group membership from LDAP server. examples: - name: Update an active directory on the account text: > @@ -513,6 +525,28 @@ az netappfiles snapshot show -g mygroup --account-name myaccname --pool-name mypoolname --volume-name myvolname --name mysnapname """ +helps['netappfiles snapshot restore-files'] = """ +type: command +short-summary: Restore specified files from the specified snapshot to the active filesystem. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --volume-name -v + short-summary: The name of the ANF volume + - name: --name --snapshot-name -n -s + short-summary: The name of the ANF snapshot + - name: --file-paths + short-summary: Required. A space seperated string of filed to be restored + - name: --destination-path + short-summary: Destination folder where the files will be restored +examples: + - name: Restore files from snapshot + text: > + az netappfiles snapshot restore-files -g mygroup --account-name myaccname --pool-name mypoolname --volume-name myvolname --name mysnapname --file-paths myfilepaths +""" + helps['netappfiles volume'] = """ type: group short-summary: Manage Azure NetApp Files (ANF) Volume Resources. @@ -622,6 +656,8 @@ short-summary: Specifies whether the volume is enabled for Azure VMware Solution (AVS) datastore purpose. Possible values are Enabled and Disabled. Default value is Disabled. - name: --network-features short-summary: Basic network, or Standard features available to the volume. Possible values are Basic and Standard. Default value is Basic. + - name: --enable-subvolumes + short-summary: Flag indicating whether subvolume operations are enabled on the volume. Possible values are Enabled and Disabled. Default value is Disabled examples: - name: Create an ANF volume text: > @@ -638,6 +674,8 @@ short-summary: The name of the ANF pool - name: --name --volume-name -n -v short-summary: The name of the ANF volume + - name: --force-delete + short-summary: An option to force delete the volume. Will cleanup resources connected to the particular volume. examples: - name: Delete an ANF volume text: > @@ -912,11 +950,13 @@ - name: --is-def-quota-enabled short-summary: Specifies if default quota is enabled for the volume. - name: --default-user-quota - short-summary: Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies. + short-summary: Default user quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies - name: --default-group-quota - short-summary: Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies. + short-summary: Default group quota for volume in KiBs. If isDefaultQuotaEnabled is set, the minimum value of 4 KiBs applies - name: --throughput-mibps - short-summary: Maximum throughput in Mibps that can be achieved by this volume and this will be accepted as input only for manual qosType volume. + short-summary: Maximum throughput in Mibps that can be achieved by this volume and this will be accepted as input only for manual qosType volume + - name: --unix-permissions + short-summary: UNIX permissions for NFS volume accepted in octal 4 digit format. First digit selects the set user ID(4), set group ID (2) and sticky (1) attributes. Second digit selects permission for the owner of the file- read (4), write (2) and execute (1). Third selects permissions for other users in the same group. the fourth for other users not in the group. 0755 - gives read/write/execute permissions to owner and read/execute to group and other users. examples: - name: Update an ANF volume text: > @@ -1009,7 +1049,7 @@ - name: --pool-name -p short-summary: The name of the ANF pool - name: --name --volume-name -n -v - short-summary: The name of the ANF pool + short-summary: The name of the ANF volume examples: - name: Returns the backup status of the given ANF Volume text: > @@ -1216,3 +1256,129 @@ text: > az netappfiles vault list -g mygroup --account-name myname """ + +helps['netappfiles subvolume'] = """ +type: group +short-summary: Manage Azure NetApp Files (ANF) Subvolume Resources. +""" + +helps['netappfiles subvolume create'] = """ +type: command +short-summary: Create a subvolume in the specified path or clones the subvolume specified in the parentPath +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --volume-name -v + short-summary: The name of the ANF volume + - name: --subvolume-name + short-summary: The name of the ANF subvolume + - name: --path + short-summary: Path to the subvolume + - name: --size + short-summary: Size of the subvolume + - name: --parent-path + short-summary: Path to the parent subvolume +examples: + - name: Create a ANF subvolume + text: > + az netappfiles subvolume create -g mygroup --account-name myaccountname --pool-name mypoolname --volume-name myvolumename --subvolume-name mysubvolumename +""" + +helps['netappfiles subvolume update'] = """ +type: command +short-summary: Update a specified ANF subvolume. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --volume-name -v + short-summary: The name of the ANF volume + - name: --subvolume-name + short-summary: The name of the ANF subvolume + - name: --path + short-summary: Path to the subvolume + - name: --size + short-summary: Size of the subvolume +examples: + - name: Update a subvolume + text: > + az netappfiles subvolume update -g mygroup --account-name myaccountname --pool-name mypoolname --volume-name myvolumename --subvolume-name mysubvolumename +""" + +helps['netappfiles subvolume list'] = """ +type: command +short-summary: List all ANF subvolumes in the specified NetApp volume. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --volume-name -v + short-summary: The name of the ANF volume +examples: + - name: List all subvolumes of a ANF volume + text: > + az netappfiles subvolume list -g mygroup --account-name myaccountname --pool-name mypoolname --volume-name myvolumename +""" + +helps['netappfiles subvolume show'] = """ +type: command +short-summary: Get the path associated with a subvolumeName +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --volume-name -v + short-summary: The name of the ANF volume + - name: --subvolume-name + short-summary: The name of the ANF subvolume +examples: + - name: Get a subvolume of the ANF volume + text: > + az netappfiles subvolume show -g mygroup --account-name myaccountname --pool-name mypoolname --volume-name myvolumename --subvolume-name mysubvolumename +""" + +helps['netappfiles subvolume delete'] = """ +type: command +short-summary: Delete a specified ANF subvolume. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --volume-name -v + short-summary: The name of the ANF volume + - name: --subvolume-name + short-summary: The name of the ANF subvolume +examples: + - name: Delete a subvolume of the ANF volume + text: > + az netappfiles subvolume delete -g mygroup --account-name myaccountname --pool-name mypoolname --volume-name myvolumename --subvolume-name mysubvolumename +""" + +helps['netappfiles subvolume metadata'] = """ +type: group +short-summary: Manage Azure NetApp Files (ANF) Subvolume Metadata Resources. +""" + +helps['netappfiles subvolume metadata show'] = """ +type: command +short-summary: Get the specified ANF metadata of a subvolume. +parameters: + - name: --account-name -a + short-summary: The name of the ANF account + - name: --pool-name -p + short-summary: The name of the ANF pool + - name: --volume-name -v + short-summary: The name of the ANF volume + - name: --subvolume-name + short-summary: The name of the ANF subvolume +examples: + - name: Get a metadata of an ANF subvolume + text: > + az netappfiles subvolume metadata show -g mygroup --account-name myaccountname --pool-name mypoolname --volume-name myvolumename --subvolume-name mysubvolumename +""" 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 fb904680858..cb0d44d1430 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/_params.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -# pylint: disable=line-too-long +# pylint: disable=line-too-long, disable=too-many-statements from azure.cli.core.commands.parameters import tags_type, resource_group_name_type, get_enum_type, get_three_state_flag from knack.arguments import CLIArgumentType @@ -16,7 +16,7 @@ def load_arguments(self, _): with self.argument_context('netappfiles') as c: c.argument('resource_group', resource_group_name_type) c.argument('tags', arg_type=tags_type) - c.argument('protocol_types', arg_type=tags_type) + c.argument('protocol_types', nargs="+") c.argument('account_name', account_name_type) c.argument('pool_name', pool_name_type) c.argument('volume_name', volume_name_type) @@ -32,10 +32,13 @@ def load_arguments(self, _): c.argument('account_name', help='The name of the ANF account', id_part=None) 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) + c.argument('backup_operators', nargs="+") + c.argument('security_operators', nargs="+") + c.argument('administrators', nargs="+") + c.argument('allow_local_ldap_users', arg_type=get_three_state_flag()) c.argument('encrypt_dc_conn', options_list=['--encrypt-dc-conn'], arg_type=get_three_state_flag()) + c.argument('ldap_signing', arg_type=get_three_state_flag()) + c.argument('aes_encryption', arg_type=get_three_state_flag()) with self.argument_context('netappfiles account ad list') as c: c.argument('account_name', help='The name of the ANF account', id_part=None) @@ -54,13 +57,14 @@ def load_arguments(self, _): 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) + load_pool_arguments(self, account_name_type, pool_name_type) + load_volume_arguments(self, account_name_type, pool_name_type, volume_name_type) + load_snapshot_arguments(self, account_name_type, pool_name_type, volume_name_type) + load_vault_arguments(self, account_name_type) + load_subvolume_arguments(self, account_name_type, pool_name_type, volume_name_type) -def load_poolArguments(self, account_name_type, pool_name_type): +def load_pool_arguments(self, account_name_type, pool_name_type): with self.argument_context('netappfiles pool') as c: c.argument('account_name', id_part='name') c.argument('pool_name', pool_name_type, options_list=['--pool-name', '-p', '--name', '-n']) @@ -70,7 +74,7 @@ def load_poolArguments(self, account_name_type, pool_name_type): c.argument('account_name', account_name_type, id_part=None) -def load_volumeArguments(self, account_name_type, pool_name_type, volume_name_type): +def load_volume_arguments(self, account_name_type, pool_name_type, volume_name_type): with self.argument_context('netappfiles volume') as c: c.argument('account_name', id_part='name') c.argument('pool_name', pool_name_type) @@ -87,6 +91,9 @@ def load_volumeArguments(self, account_name_type, pool_name_type, volume_name_ty c.argument('cool_access', arg_type=get_three_state_flag()) c.argument('is_def_quota_enabled', arg_type=get_three_state_flag()) + with self.argument_context('netappfiles volume delete') as c: + c.argument('force_delete', 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) c.argument('pool_name', options_list=['--pool-name', '-p'], help='Name of the ANF pool.', id_part=None) @@ -131,12 +138,13 @@ def load_volumeArguments(self, account_name_type, pool_name_type, volume_name_ty c.argument('backup_name', options_list=['--backup-name', '-b'], id_part=None) -def load_snapshotArguments(self, account_name_type, pool_name_type, volume_name_type): +def load_snapshot_arguments(self, account_name_type, pool_name_type, volume_name_type): with self.argument_context('netappfiles snapshot') as c: c.argument('account_name', account_name_type) c.argument('pool_name', pool_name_type) c.argument('volume_name', volume_name_type) c.argument('snapshot_name', id_part='child_name_3', options_list=['--name', '--snapshot-name', '-n', '-s'], help='The name of the ANF snapshot') + c.argument('file_paths', nargs="+") with self.argument_context('netappfiles snapshot list') as c: c.argument('account_name', account_name_type, id_part=None) @@ -155,6 +163,20 @@ def load_snapshotArguments(self, account_name_type, pool_name_type, volume_name_ c.argument('snapshot_policy_name', options_list=['--snapshot-policy-name', '--name', '-n'], help='The name of the snapshot policy') -def load_vaultArguments(self, account_name_type): +def load_vault_arguments(self, account_name_type): with self.argument_context('netappfiles vault list') as c: c.argument('account_name', account_name_type, id_part=None) + + +def load_subvolume_arguments(self, account_name_type, pool_name_type, volume_name_type): + with self.argument_context('netappfiles subvolume') as c: + c.argument('account_name', account_name_type) + c.argument('pool_name', pool_name_type) + c.argument('volume_name', volume_name_type) + c.argument('subvolume_name', id_part="child_name_3") + + with self.argument_context('netappfiles subvolume list') as c: + c.argument('account_name', id_part=None) + c.argument('pool_name', id_part=None) + c.argument('volume_name', id_part=None) + c.argument('subvolume_name', 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 5bf6dc8d76a..20b5eec8a0d 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/commands.py @@ -15,7 +15,8 @@ account_backups_mgmt_client_factory, backups_mgmt_client_factory, backup_policies_mgmt_client_factory, - vaults_mgmt_client_factory) + vaults_mgmt_client_factory, + subvolumes_mgmt_client_factory) from ._exception_handler import netappfiles_exception_handler @@ -83,6 +84,13 @@ def load_command_table(self, _): ) load_vaults_command_groups(self, netappfiles_vaults_sdk) + netappfiles_subvolumes_sdk = CliCommandType( + operations_tmpl='azure.mgmt.netapp.operations._subvolumes_operations#SubvolumesOperations.{}', + client_factory=subvolumes_mgmt_client_factory, + exception_handler=netappfiles_exception_handler + ) + load_subvolumes_command_groups(self, netappfiles_subvolumes_sdk) + with self.command_group('netappfiles', is_preview=False): pass @@ -252,6 +260,10 @@ def load_snapshots_command_groups(self, netappfiles_snapshots_sdk): doc_string_source='azure.mgmt.netapp.models#Snapshot', exception_handler=netappfiles_exception_handler) g.command('update', 'begin_update') + g.custom_command('restore-files', 'snapshot_restore_files', + client_factory=snapshots_mgmt_client_factory, + doc_string_source='azure.mgmt.netapp.models#SnapshotRestoreFiles', + exception_handler=netappfiles_exception_handler) def load_snapshots_policies_command_groups(self, netappfiles_snapshot_policies_sdk): @@ -273,3 +285,21 @@ def load_snapshots_policies_command_groups(self, netappfiles_snapshot_policies_s def load_vaults_command_groups(self, netappfiles_vaults_sdk): with self.command_group('netappfiles vault', netappfiles_vaults_sdk) as g: g.command('list', 'list') + + +def load_subvolumes_command_groups(self, netappfiles_subvolumes_sdk): + with self.command_group('netappfiles subvolume', netappfiles_subvolumes_sdk) as g: + g.show_command('show', 'get') + g.command('list', 'list_by_volume') + g.custom_command('create', 'create_subvolume', + client_factory=subvolumes_mgmt_client_factory, + doc_string_source='azure.mgmt.netapp.models#SubvolumeInfo', + exception_handler=netappfiles_exception_handler) + g.custom_command('update', 'patch_subvolume', + client_factory=subvolumes_mgmt_client_factory, + doc_string_source='azure.mgmt.netapp.models#SubvolumePatchRequest', + exception_handler=netappfiles_exception_handler) + g.command('delete', 'begin_delete', confirmation=True) + + with self.command_group('netappfiles subvolume metadata', netappfiles_subvolumes_sdk) as g: + g.show_command('show', 'begin_get_metadata') 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 4f8fc97d177..d9f0f7323ab 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/custom.py @@ -4,10 +4,9 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=line-too-long - 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, AuthorizeRequest, BreakReplicationRequest, PoolChangeRequest, VolumeRevert, Backup, BackupPatch +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, LdapSearchScopeOpt, SubvolumeInfo, SubvolumePatchRequest, SnapshotRestoreFiles from azure.cli.core.commands.client_factory import get_subscription_id from msrestazure.tools import is_valid_resource_id, parse_resource_id @@ -28,20 +27,25 @@ def _update_mapper(existing, new, keys): # ---- ACCOUNT ---- # pylint: disable=unused-argument # account update - active_directory is amended with subgroup commands -def create_account(client, account_name, resource_group_name, location, tags=None, encryption=None): +def create_account(client, account_name, resource_group_name, location=None, tags=None, encryption=None): + if location is None: + location = client.resource_groups.get(resource_group_name).location account_encryption = AccountEncryption(key_source=encryption) if encryption is not None else None body = NetAppAccount(location=location, tags=tags, encryption=account_encryption) return client.begin_create_or_update(resource_group_name, account_name, body) -# pylint: disable=unused-argument +# pylint: disable=unused-argument, disable=too-many-locals # add an active directory to the netapp account # current limitation is 1 AD/subscription 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, allow_local_ldap_users=None, tags=None, - administrators=None, encrypt_dc_conn=None): + security_operators=None, ldap_over_tls=None, allow_local_ldap_users=None, + administrators=None, encrypt_dc_conn=None, user_dn=None, group_dn=None, group_filter=None): + ldap_search_scope = LdapSearchScopeOpt(user_dn=user_dn, + group_dn=group_dn, + group_membership_filter=group_filter) active_directories = [] active_directory = ActiveDirectory(username=username, password=password, domain=domain, dns=dns, smb_server_name=smb_server_name, organizational_unit=organizational_unit, @@ -50,23 +54,28 @@ def add_active_directory(instance, account_name, resource_group_name, username, ldap_signing=ldap_signing, security_operators=security_operators, ldap_over_tls=ldap_over_tls, allow_local_nfs_users_with_ldap=allow_local_ldap_users, - administrators=administrators, encrypt_dc_connections=encrypt_dc_conn) + administrators=administrators, encrypt_dc_connections=encrypt_dc_conn, + ldap_search_scope=ldap_search_scope) active_directories.append(active_directory) body = NetAppAccountPatch(active_directories=active_directories) _update_mapper(instance, body, ['active_directories']) return body -# pylint: disable=unused-argument, disable=too-many-locals +# pylint: disable=unused-argument, disable=too-many-locals, disable=too-many-statements # update an active directory on the netapp account # current limitation is 1 AD/subscription def update_active_directory(instance, account_name, resource_group_name, active_directory_id, 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, allow_local_ldap_users=None, - administrators=None, encrypt_dc_conn=None, tags=None): + administrators=None, encrypt_dc_conn=None, user_dn=None, group_dn=None, group_filter=None): ad_list = instance.active_directories + ldap_search_scope = LdapSearchScopeOpt(user_dn=user_dn, + group_dn=group_dn, + group_membership_filter=group_filter) + active_directory = ActiveDirectory(active_directory_id=active_directory_id, 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, @@ -74,7 +83,8 @@ def update_active_directory(instance, account_name, resource_group_name, active_ aes_encryption=aes_encryption, ldap_signing=ldap_signing, security_operators=security_operators, ldap_over_tls=ldap_over_tls, allow_local_nfs_users_with_ldap=allow_local_ldap_users, - administrators=administrators, encrypt_dc_connections=encrypt_dc_conn) + administrators=administrators, encrypt_dc_connections=encrypt_dc_conn, + ldap_search_scope=ldap_search_scope) for ad in ad_list: if ad.active_directory_id == active_directory_id: @@ -127,8 +137,11 @@ def list_accounts(client, resource_group_name=None): # ---- POOL ---- -def create_pool(client, account_name, pool_name, resource_group_name, service_level, location, size, tags=None, +# pylint: disable=no-required-location-param +def create_pool(client, account_name, pool_name, resource_group_name, service_level, size, location=None, tags=None, qos_type=None, cool_access=None, encryption_type=None): + if location is None: + location = client.resource_groups.get(resource_group_name).location body = CapacityPool(service_level=service_level, size=int(size) * tib_scale, location=location, @@ -149,9 +162,9 @@ def patch_pool(instance, size=None, qos_type=None, tags=None): # ---- VOLUME ---- -# pylint: disable=too-many-locals -def create_volume(cmd, client, account_name, pool_name, volume_name, resource_group_name, location, file_path, - usage_threshold, vnet, subnet='default', service_level=None, protocol_types=None, volume_type=None, +# pylint: disable=too-many-locals, disable=no-required-location-param +def create_volume(cmd, client, account_name, pool_name, volume_name, resource_group_name, file_path, usage_threshold, + vnet, location=None, subnet='default', service_level=None, protocol_types=None, volume_type=None, endpoint_type=None, replication_schedule=None, remote_volume_resource_id=None, tags=None, snapshot_id=None, snapshot_policy_id=None, backup_policy_id=None, backup_enabled=None, backup_id=None, policy_enforced=None, vault_id=None, kerberos_enabled=None, security_style=None, throughput_mibps=None, @@ -162,7 +175,9 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr rule_index=None, unix_read_only=None, unix_read_write=None, cifs=None, allowed_clients=None, ldap_enabled=None, chown_mode=None, cool_access=None, coolness_period=None, unix_permissions=None, is_def_quota_enabled=None, default_user_quota=None, - default_group_quota=None, avs_data_store=None, network_features=None): + default_group_quota=None, avs_data_store=None, network_features=None, enable_subvolumes=None): + if location is None: + location = client.resource_groups.get(resource_group_name).location 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 @@ -182,7 +197,8 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr # if NFSv4 is specified then the export policy must reflect this # the RP ordinarily only creates a default setting NFSv3. - if protocol_types is not None and any(x in ['NFSv3', 'NFSv4.1'] for x in protocol_types): + if protocol_types is not None and any(x in ['NFSv3', 'NFSv4.1'] for x in protocol_types) \ + and not (protocol_types == 'NFSv3' and rule_index is None): rules = [] isNfs41 = False isNfs3 = False @@ -264,7 +280,8 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr default_user_quota_in_ki_bs=default_user_quota, default_group_quota_in_ki_bs=default_group_quota, avs_data_store=avs_data_store, - network_features=network_features) + network_features=network_features, + enable_subvolumes=enable_subvolumes) return client.begin_create_or_update(resource_group_name, account_name, pool_name, volume_name, body) @@ -272,7 +289,7 @@ def create_volume(cmd, client, account_name, pool_name, volume_name, resource_gr # -- 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, snapshot_policy_id=None, - is_def_quota_enabled=None, default_user_quota=None, default_group_quota=None): + is_def_quota_enabled=None, default_user_quota=None, default_group_quota=None, unix_permissions=None): data_protection = None backup = None snapshot = None @@ -292,7 +309,8 @@ def patch_volume(instance, usage_threshold=None, service_level=None, tags=None, tags=tags, is_default_quota_enabled=is_def_quota_enabled, default_user_quota_in_ki_bs=default_user_quota, - default_group_quota_in_ki_bs=default_group_quota) + default_group_quota_in_ki_bs=default_group_quota, + unix_permissions=unix_permissions) if throughput_mibps is not None: params.throughput_mibps = throughput_mibps _update_mapper(instance, params, ['service_level', 'usage_threshold', 'tags', 'data_protection']) @@ -386,18 +404,31 @@ def remove_export_policy_rule(instance, rule_index): # ---- SNAPSHOTS ---- -def create_snapshot(client, resource_group_name, account_name, pool_name, volume_name, snapshot_name, location): +def create_snapshot(client, resource_group_name, account_name, pool_name, volume_name, snapshot_name, location=None): + if location is None: + location = client.resource_groups.get(resource_group_name).location body = Snapshot(location=location) return client.begin_create(resource_group_name, account_name, pool_name, volume_name, snapshot_name, body) +def snapshot_restore_files(client, resource_group_name, account_name, pool_name, volume_name, snapshot_name, file_paths, + destination_path=None): + body = SnapshotRestoreFiles( + file_paths=file_paths, + destination_path=destination_path + ) + client.begin_restore_files(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, +def create_snapshot_policy(client, resource_group_name, account_name, snapshot_policy_name, location=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): + if location is None: + location = client.resource_groups.get(resource_group_name).location body = SnapshotPolicy( location=location, hourly_schedule=HourlySchedule(snapshots_to_keep=hourly_snapshots, minute=hourly_minute), @@ -411,12 +442,14 @@ def create_snapshot_policy(client, resource_group_name, account_name, snapshot_p 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, +def patch_snapshot_policy(client, resource_group_name, account_name, snapshot_policy_name, location=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): + if location is None: + location = client.resource_groups.get(resource_group_name).location body = SnapshotPolicyPatch( location=location, hourly_schedule=HourlySchedule(snapshots_to_keep=hourly_snapshots, minute=hourly_minute), @@ -430,8 +463,10 @@ def patch_snapshot_policy(client, resource_group_name, account_name, snapshot_po # ---- VOLUME BACKUPS ---- -def create_backup(client, resource_group_name, account_name, pool_name, volume_name, backup_name, location, +def create_backup(client, resource_group_name, account_name, pool_name, volume_name, backup_name, location=None, use_existing_snapshot=None): + if location is None: + location = client.resource_groups.get(resource_group_name).location body = Backup(location=location, use_existing_snapshot=use_existing_snapshot) return client.begin_create(resource_group_name, account_name, pool_name, volume_name, backup_name, body) @@ -443,8 +478,10 @@ def update_backup(client, resource_group_name, account_name, pool_name, volume_n # ---- BACKUP POLICIES ---- -def create_backup_policy(client, resource_group_name, account_name, backup_policy_name, location, +def create_backup_policy(client, resource_group_name, account_name, backup_policy_name, location=None, daily_backups=None, weekly_backups=None, monthly_backups=None, enabled=False, tags=None): + if location is None: + location = client.resource_groups.get(resource_group_name).location body = BackupPolicy( location=location, daily_backups_to_keep=daily_backups, @@ -465,3 +502,23 @@ def patch_backup_policy(client, resource_group_name, account_name, backup_policy enabled=enabled, tags=tags) return client.begin_update(resource_group_name, account_name, backup_policy_name, body) + + +# ---- SUBVOLUME ---- +def create_subvolume(client, resource_group_name, account_name, pool_name, volume_name, subvolume_name, path=None, + size=None, parent_path=None): + body = SubvolumeInfo( + path=path, + size=size, + parent_path=parent_path + ) + return client.begin_create(resource_group_name, account_name, pool_name, volume_name, subvolume_name, body) + + +def patch_subvolume(client, resource_group_name, account_name, pool_name, volume_name, subvolume_name, path=None, + size=None): + body = SubvolumePatchRequest( + path=path, + size=size + ) + return client.begin_update(resource_group_name, account_name, pool_name, volume_name, subvolume_name, body) 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 c34e76a4065..d956719b00a 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 @@ -18,25 +18,25 @@ interactions: ParameterSetName: - -g -a -l --encryption User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A27%3A11.8884802Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:27:08.7123013Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:27:11.1348983Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:27:11.1348983Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A52%3A27.8755524Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:52:21.8589281Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:52:27.1221906Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:52:27.1221906Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/34f6ae6d-590d-4527-9375-d5c0e9555b70?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11f9fc3a-71a4-42f4-a158-54234c0740d5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1147' + - '1168' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:27:13 GMT + - Tue, 15 Mar 2022 10:52:29 GMT etag: - - W/"datetime'2022-01-07T08%3A27%3A11.8884802Z'" + - W/"datetime'2022-03-15T10%3A52%3A27.8755524Z'" expires: - '-1' pragma: @@ -68,21 +68,21 @@ interactions: ParameterSetName: - -g -a -l --encryption User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/34f6ae6d-590d-4527-9375-d5c0e9555b70?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11f9fc3a-71a4-42f4-a158-54234c0740d5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/34f6ae6d-590d-4527-9375-d5c0e9555b70","name":"34f6ae6d-590d-4527-9375-d5c0e9555b70","status":"Succeeded","startTime":"2022-01-07T08:27:11.8936559Z","endTime":"2022-01-07T08:27:11.9236582Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11f9fc3a-71a4-42f4-a158-54234c0740d5","name":"11f9fc3a-71a4-42f4-a158-54234c0740d5","status":"Succeeded","startTime":"2022-03-15T10:52:27.87925Z","endTime":"2022-03-15T10:52:27.9104617Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '538' + - '536' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:27:43 GMT + - Tue, 15 Mar 2022 10:52:59 GMT expires: - '-1' pragma: @@ -116,23 +116,23 @@ interactions: ParameterSetName: - -g -a -l --encryption User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A27%3A11.915005Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:27:08.7123013Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:27:11.1348983Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:27:11.1348983Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A52%3A27.9156705Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:52:21.8589281Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:52:27.1221906Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:52:27.1221906Z"}}' headers: cache-control: - no-cache content-length: - - '1147' + - '1169' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:27:43 GMT + - Tue, 15 Mar 2022 10:52:59 GMT etag: - - W/"datetime'2022-01-07T08%3A27%3A11.915005Z'" + - W/"datetime'2022-03-15T10%3A52%3A27.9156705Z'" expires: - '-1' pragma: @@ -170,15 +170,15 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A27%3A48.8139051Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:27:44.9772875Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:27:48.0514726Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:27:48.0514726Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A53%3A07.6351408Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:53:02.1314779Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:53:06.9027075Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:53:06.9027075Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a628d858-bcc9-4429-9a21-4ff7f900b5a3?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/abf41fa1-b700-4822-871a-15175317a7ae?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -186,9 +186,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:27:49 GMT + - Tue, 15 Mar 2022 10:53:08 GMT etag: - - W/"datetime'2022-01-07T08%3A27%3A48.8139051Z'" + - W/"datetime'2022-03-15T10%3A53%3A07.6351408Z'" expires: - '-1' pragma: @@ -200,7 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -220,12 +220,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a628d858-bcc9-4429-9a21-4ff7f900b5a3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/abf41fa1-b700-4822-871a-15175317a7ae?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a628d858-bcc9-4429-9a21-4ff7f900b5a3","name":"a628d858-bcc9-4429-9a21-4ff7f900b5a3","status":"Succeeded","startTime":"2022-01-07T08:27:48.8182883Z","endTime":"2022-01-07T08:27:48.9133147Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/abf41fa1-b700-4822-871a-15175317a7ae","name":"abf41fa1-b700-4822-871a-15175317a7ae","status":"Succeeded","startTime":"2022-03-15T10:53:07.6312414Z","endTime":"2022-03-15T10:53:07.6624863Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' headers: cache-control: - no-cache @@ -234,7 +234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:28:19 GMT + - Tue, 15 Mar 2022 10:53:38 GMT expires: - '-1' pragma: @@ -268,23 +268,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A27%3A48.8821822Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:27:44.9772875Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:27:48.0514726Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:27:48.0514726Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A53%3A07.6666063Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:53:02.1314779Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:53:06.9027075Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:53:06.9027075Z"}}' headers: cache-control: - no-cache content-length: - - '1148' + - '1169' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:28:20 GMT + - Tue, 15 Mar 2022 10:53:39 GMT etag: - - W/"datetime'2022-01-07T08%3A27%3A48.8821822Z'" + - W/"datetime'2022-03-15T10%3A53%3A07.6666063Z'" expires: - '-1' pragma: @@ -318,23 +318,23 @@ interactions: ParameterSetName: - -g -a --encryption User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A27%3A48.8821822Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:27:44.9772875Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:27:48.0514726Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:27:48.0514726Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A53%3A07.6666063Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:53:02.1314779Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:53:06.9027075Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:53:06.9027075Z"}}' headers: cache-control: - no-cache content-length: - - '1148' + - '1169' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:28:21 GMT + - Tue, 15 Mar 2022 10:53:40 GMT etag: - - W/"datetime'2022-01-07T08%3A27%3A48.8821822Z'" + - W/"datetime'2022-03-15T10%3A53%3A07.6666063Z'" expires: - '-1' pragma: @@ -343,10 +343,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -355,7 +351,7 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {"CreatedOnDate": "2022-01-07T08:27:44.9772875Z"}, "properties": + body: '{"tags": {"CreatedOnDate": "2022-03-15T10:53:02.1314779Z"}, "properties": {"encryption": {"keySource": "Microsoft.NetApp"}}}' headers: Accept: @@ -373,23 +369,23 @@ interactions: ParameterSetName: - -g -a --encryption User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A28%3A25.2366875Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:27:44.9772875Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:27:48.0514726Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:28:24.5345713Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A53%3A45.0619216Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:53:02.1314779Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:53:06.9027075Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:53:44.3095338Z"}}' headers: cache-control: - no-cache content-length: - - '1148' + - '1169' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:28:27 GMT + - Tue, 15 Mar 2022 10:53:47 GMT etag: - - W/"datetime'2022-01-07T08%3A28%3A25.2366875Z'" + - W/"datetime'2022-03-15T10%3A53%3A45.0619216Z'" expires: - '-1' pragma: @@ -398,10 +394,6 @@ 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: 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 40089acbf79..2dac73a79ce 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 @@ -11,31 +11,31 @@ interactions: Connection: - keep-alive Content-Length: - - '58' + - '51' Content-Type: - application/json ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A36%3A10.2750041Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A56%3A02.0411018Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a47327a1-c6df-4216-81b1-88a1b0ba9116?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7e7c13de-afb0-4f34-80c1-416265d7ca5c?api-version=2021-10-01 cache-control: - no-cache content-length: - - '437' + - '430' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:36:11 GMT + - Fri, 18 Mar 2022 13:56:02 GMT etag: - - W/"datetime'2022-01-19T11%3A36%3A10.2750041Z'" + - W/"datetime'2022-03-18T13%3A56%3A02.0411018Z'" expires: - '-1' pragma: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a47327a1-c6df-4216-81b1-88a1b0ba9116?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7e7c13de-afb0-4f34-80c1-416265d7ca5c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a47327a1-c6df-4216-81b1-88a1b0ba9116","name":"a47327a1-c6df-4216-81b1-88a1b0ba9116","status":"Succeeded","startTime":"2022-01-19T11:36:10.2798744Z","endTime":"2022-01-19T11:36:10.3409045Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7e7c13de-afb0-4f34-80c1-416265d7ca5c","name":"7e7c13de-afb0-4f34-80c1-416265d7ca5c","status":"Succeeded","startTime":"2022-03-18T13:56:02.056031Z","endTime":"2022-03-18T13:56:02.0810331Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '533' + - '525' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:36:41 GMT + - Fri, 18 Mar 2022 13:56:33 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A36%3A10.3353538Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"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/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A56%3A02.0774964Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '484' + - '938' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:36:42 GMT + - Fri, 18 Mar 2022 13:56:33 GMT etag: - - W/"datetime'2022-01-19T11%3A36%3A10.3353538Z'" + - W/"datetime'2022-03-18T13%3A56%3A02.0774964Z'" expires: - '-1' pragma: @@ -166,23 +166,23 @@ interactions: - -g -n --username --password --smb-server-name --dns --domain --ad-name --kdc-ip --ldap-signing --allow-local-ldap-users User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A36%3A10.3353538Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"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/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A56%3A02.0774964Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '484' + - '938' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:36:43 GMT + - Fri, 18 Mar 2022 13:56:34 GMT etag: - - W/"datetime'2022-01-19T11%3A36%3A10.3353538Z'" + - W/"datetime'2022-03-18T13%3A56%3A02.0774964Z'" expires: - '-1' pragma: @@ -206,7 +206,7 @@ interactions: body: '{"properties": {"activeDirectories": [{"username": "ad_user", "password": "ad_user", "domain": "southcentralusstage", "dns": "1.2.3.4", "smbServerName": "SMBSERVER", "kdcIP": "172.16.254.1", "adName": "cli-ad-name", "ldapSigning": true, "allowLocalNfsUsersWithLdap": - true}]}}' + true, "ldapSearchScope": {}}]}}' headers: Accept: - application/json @@ -217,36 +217,36 @@ interactions: Connection: - keep-alive Content-Length: - - '270' + - '286' Content-Type: - application/json ParameterSetName: - -g -n --username --password --smb-server-name --dns --domain --ad-name --kdc-ip --ldap-signing --allow-local-ldap-users User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A36%3A44.9219792Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Patching","encryption":{"keySource":"Microsoft.NetApp"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A56%3A36.2793258Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Patching","activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9de1abe8-fa35-49b7-bea1-96c5bd70e719?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b9dc973-181b-473a-8ede-e6edfac3a29d?api-version=2021-10-01 cache-control: - no-cache content-length: - - '483' + - '937' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:36:44 GMT + - Fri, 18 Mar 2022 13:56:35 GMT etag: - - W/"datetime'2022-01-19T11%3A36%3A44.9219792Z'" + - W/"datetime'2022-03-18T13%3A56%3A36.2793258Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9de1abe8-fa35-49b7-bea1-96c5bd70e719?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b9dc973-181b-473a-8ede-e6edfac3a29d?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -256,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -277,21 +277,21 @@ interactions: - -g -n --username --password --smb-server-name --dns --domain --ad-name --kdc-ip --ldap-signing --allow-local-ldap-users User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9de1abe8-fa35-49b7-bea1-96c5bd70e719?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b9dc973-181b-473a-8ede-e6edfac3a29d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9de1abe8-fa35-49b7-bea1-96c5bd70e719","name":"9de1abe8-fa35-49b7-bea1-96c5bd70e719","status":"Succeeded","startTime":"2022-01-19T11:36:44.931375Z","endTime":"2022-01-19T11:36:45.4995749Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b9dc973-181b-473a-8ede-e6edfac3a29d","name":"8b9dc973-181b-473a-8ede-e6edfac3a29d","status":"Succeeded","startTime":"2022-03-18T13:56:36.2833106Z","endTime":"2022-03-18T13:56:36.838425Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '532' + - '525' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:14 GMT + - Fri, 18 Mar 2022 13:57:06 GMT expires: - '-1' pragma: @@ -300,6 +300,10 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -322,23 +326,23 @@ interactions: - -g -n --username --password --smb-server-name --dns --domain --ad-name --kdc-ip --ldap-signing --allow-local-ldap-users User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A36%3A45.4936576Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"f632d5cc-619f-de72-9e33-be13feab8d92","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A56%3A36.8348872Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: cache-control: - no-cache content-length: - - '913' + - '938' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:15 GMT + - Fri, 18 Mar 2022 13:57:06 GMT etag: - - W/"datetime'2022-01-19T11%3A36%3A45.4936576Z'" + - W/"datetime'2022-03-18T13%3A56%3A36.8348872Z'" expires: - '-1' pragma: @@ -347,6 +351,10 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -368,23 +376,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A36%3A45.4936576Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"f632d5cc-619f-de72-9e33-be13feab8d92","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A56%3A36.8348872Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: cache-control: - no-cache content-length: - - '913' + - '938' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:16 GMT + - Fri, 18 Mar 2022 13:57:07 GMT etag: - - W/"datetime'2022-01-19T11%3A36%3A45.4936576Z'" + - W/"datetime'2022-03-18T13%3A56%3A36.8348872Z'" expires: - '-1' pragma: @@ -393,6 +401,10 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -415,23 +427,23 @@ interactions: - -g -n --active-directory-id --password --username --smb-server-name --dns --domain --ad-name --kdc-ip --ldap-signing --allow-local-ldap-users User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A36%3A45.4936576Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"f632d5cc-619f-de72-9e33-be13feab8d92","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A56%3A36.8348872Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: cache-control: - no-cache content-length: - - '913' + - '938' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:17 GMT + - Fri, 18 Mar 2022 13:57:08 GMT etag: - - W/"datetime'2022-01-19T11%3A36%3A45.4936576Z'" + - W/"datetime'2022-03-18T13%3A56%3A36.8348872Z'" expires: - '-1' pragma: @@ -452,10 +464,11 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"activeDirectories": [{"activeDirectoryId": "f632d5cc-619f-de72-9e33-be13feab8d92", - "username": "ad_user", "password": "ad_user", "domain": "southcentralusstage", "dns": - "1.2.3.5", "smbServerName": "SMBSERVER", "kdcIP": "172.16.254.1", "adName": - "cli-ad-name", "ldapSigning": true, "allowLocalNfsUsersWithLdap": true}]}}' + body: '{"properties": {"activeDirectories": [{"activeDirectoryId": "e84ad595-1e53-acd8-dc3e-d280c8fcad7e", + "username": "ad_user", "password": "ad_user", "domain": "southcentralusstage", "dns": "1.2.3.5", + "smbServerName": "SMBSERVER", "kdcIP": "172.16.254.1", "adName": "cli-ad-name", + "ldapSigning": true, "allowLocalNfsUsersWithLdap": true, "ldapSearchScope": + {}}]}}' headers: Accept: - application/json @@ -466,36 +479,36 @@ interactions: Connection: - keep-alive Content-Length: - - '331' + - '347' Content-Type: - application/json ParameterSetName: - -g -n --active-directory-id --password --username --smb-server-name --dns --domain --ad-name --kdc-ip --ldap-signing --allow-local-ldap-users User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A37%3A19.1247758Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Patching","activeDirectories":[{"activeDirectoryId":"f632d5cc-619f-de72-9e33-be13feab8d92","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A57%3A10.2441876Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Patching","activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d8ab6c6-ad90-4a3d-a040-ceb49fb68ef3?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2d6e9580-34b5-4602-ac76-a4bea67f96e4?api-version=2021-10-01 cache-control: - no-cache content-length: - - '912' + - '937' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:18 GMT + - Fri, 18 Mar 2022 13:57:09 GMT etag: - - W/"datetime'2022-01-19T11%3A37%3A19.1247758Z'" + - W/"datetime'2022-03-18T13%3A57%3A10.2441876Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d8ab6c6-ad90-4a3d-a040-ceb49fb68ef3?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2d6e9580-34b5-4602-ac76-a4bea67f96e4?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -505,7 +518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -526,21 +539,21 @@ interactions: - -g -n --active-directory-id --password --username --smb-server-name --dns --domain --ad-name --kdc-ip --ldap-signing --allow-local-ldap-users User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d8ab6c6-ad90-4a3d-a040-ceb49fb68ef3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2d6e9580-34b5-4602-ac76-a4bea67f96e4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d8ab6c6-ad90-4a3d-a040-ceb49fb68ef3","name":"5d8ab6c6-ad90-4a3d-a040-ceb49fb68ef3","status":"Succeeded","startTime":"2022-01-19T11:37:19.1334631Z","endTime":"2022-01-19T11:37:19.5762116Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2d6e9580-34b5-4602-ac76-a4bea67f96e4","name":"2d6e9580-34b5-4602-ac76-a4bea67f96e4","status":"Succeeded","startTime":"2022-03-18T13:57:10.2511049Z","endTime":"2022-03-18T13:57:11.0569148Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '533' + - '526' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:49 GMT + - Fri, 18 Mar 2022 13:57:39 GMT expires: - '-1' pragma: @@ -549,10 +562,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -575,23 +584,23 @@ interactions: - -g -n --active-directory-id --password --username --smb-server-name --dns --domain --ad-name --kdc-ip --ldap-signing --allow-local-ldap-users User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A37%3A19.5685267Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"f632d5cc-619f-de72-9e33-be13feab8d92","username":"ad_user","password":"****************","domain":"southcentralusstage","dns":"1.2.3.5","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A57%3A11.0516426Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","dns":"1.2.3.5","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: cache-control: - no-cache content-length: - - '913' + - '938' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:49 GMT + - Fri, 18 Mar 2022 13:57:40 GMT etag: - - W/"datetime'2022-01-19T11%3A37%3A19.5685267Z'" + - W/"datetime'2022-03-18T13%3A57%3A11.0516426Z'" expires: - '-1' pragma: @@ -600,10 +609,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -625,23 +630,23 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A37%3A19.5685267Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"f632d5cc-619f-de72-9e33-be13feab8d92","username":"ad_user","password":"****************","domain":"southcentralusstage","dns":"1.2.3.5","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A57%3A11.0516426Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","dns":"1.2.3.5","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: cache-control: - no-cache content-length: - - '913' + - '938' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:50 GMT + - Fri, 18 Mar 2022 13:57:41 GMT etag: - - W/"datetime'2022-01-19T11%3A37%3A19.5685267Z'" + - W/"datetime'2022-03-18T13%3A57%3A11.0516426Z'" expires: - '-1' pragma: @@ -662,8 +667,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1", "CreatedOnDate": - "2022-01-19T11:36:05.0359815Z"}, "properties": {"activeDirectories": []}}' + body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1", "CreatedOnDate": "2022-03-18T13:55:57.1935272Z"}, + "properties": {"activeDirectories": []}}' headers: Accept: - application/json @@ -674,31 +679,31 @@ interactions: Connection: - keep-alive Content-Length: - - '148' + - '141' Content-Type: - application/json ParameterSetName: - -g -n --active-directory User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A37%3A51.18874Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"properties":{"provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"f632d5cc-619f-de72-9e33-be13feab8d92","username":"ad_user","password":"****************","domain":"southcentralusstage","dns":"1.2.3.5","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A57%3A42.8529978Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Updating","activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","dns":"1.2.3.5","status":"Created","smbServerName":"SMBSERVER","organizationalUnit":"CN=Computers","kdcIP":"172.16.254.1","adName":"cli-ad-name","aesEncryption":false,"ldapSigning":true,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":true,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6f7b73d-0bf4-459d-8725-8d1d459efb20?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a341fc21-95c9-4fc0-9ed0-1f878c2fa423?api-version=2021-10-01 cache-control: - no-cache content-length: - - '910' + - '937' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:37:51 GMT + - Fri, 18 Mar 2022 13:57:42 GMT etag: - - W/"datetime'2022-01-19T11%3A37%3A51.18874Z'" + - W/"datetime'2022-03-18T13%3A57%3A42.8529978Z'" expires: - '-1' pragma: @@ -734,21 +739,21 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6f7b73d-0bf4-459d-8725-8d1d459efb20?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a341fc21-95c9-4fc0-9ed0-1f878c2fa423?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6f7b73d-0bf4-459d-8725-8d1d459efb20","name":"f6f7b73d-0bf4-459d-8725-8d1d459efb20","status":"Succeeded","startTime":"2022-01-19T11:37:51.1956891Z","endTime":"2022-01-19T11:37:51.6929652Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a341fc21-95c9-4fc0-9ed0-1f878c2fa423","name":"a341fc21-95c9-4fc0-9ed0-1f878c2fa423","status":"Succeeded","startTime":"2022-03-18T13:57:42.8569671Z","endTime":"2022-03-18T13:57:43.3514985Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '533' + - '526' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:38:21 GMT + - Fri, 18 Mar 2022 13:58:12 GMT expires: - '-1' pragma: @@ -782,23 +787,23 @@ interactions: ParameterSetName: - -g -n --active-directory User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A37%3A51.6814632Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"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/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A57%3A43.345834Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Succeeded","encryption":{"keySource":"Microsoft.NetApp"}}}' headers: cache-control: - no-cache content-length: - - '484' + - '476' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:38:21 GMT + - Fri, 18 Mar 2022 13:58:12 GMT etag: - - W/"datetime'2022-01-19T11%3A37%3A51.6814632Z'" + - W/"datetime'2022-03-18T13%3A57%3A43.345834Z'" expires: - '-1' pragma: @@ -832,23 +837,23 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-12.1-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-19T11%3A37%3A51.6814632Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-19T11:36:05.0359815Z"},"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/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A57%3A43.345834Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-18T13:55:57.1935272Z"},"properties":{"provisioningState":"Succeeded","encryption":{"keySource":"Microsoft.NetApp"}}}' headers: cache-control: - no-cache content-length: - - '484' + - '476' content-type: - application/json; charset=utf-8 date: - - Wed, 19 Jan 2022 11:38:22 GMT + - Fri, 18 Mar 2022 13:58:14 GMT etag: - - W/"datetime'2022-01-19T11%3A37%3A51.6814632Z'" + - W/"datetime'2022-03-18T13%3A57%3A43.345834Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_assign_snapshot_policy_to_volume.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_assign_snapshot_policy_to_volume.yaml index d70a75156a0..4ff52a0aa61 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_assign_snapshot_policy_to_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_assign_snapshot_policy_to_volume.yaml @@ -11,31 +11,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T12%3A31%3A43.8028058Z''\"","location":"southcentralusstage","properties":{"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''2022-03-15T11%3A43%3A35.8746153Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:43:31.2725311Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1affbdeb-abe3-40c4-b39d-714d424e9135?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c82e76a-9b9f-435c-abf1-9dca53e84e05?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '422' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:31:44 GMT + - Tue, 15 Mar 2022 11:43:36 GMT etag: - - W/"datetime'2021-10-19T12%3A31%3A43.8028058Z'" + - W/"datetime'2022-03-15T11%3A43%3A35.8746153Z'" expires: - '-1' pragma: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1affbdeb-abe3-40c4-b39d-714d424e9135?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c82e76a-9b9f-435c-abf1-9dca53e84e05?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1affbdeb-abe3-40c4-b39d-714d424e9135","name":"1affbdeb-abe3-40c4-b39d-714d424e9135","status":"Succeeded","startTime":"2021-10-19T12:31:43.8092142Z","endTime":"2021-10-19T12:31:43.8391815Z","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/southcentralusstage/operationResults/6c82e76a-9b9f-435c-abf1-9dca53e84e05","name":"6c82e76a-9b9f-435c-abf1-9dca53e84e05","status":"Succeeded","startTime":"2022-03-15T11:43:35.8866333Z","endTime":"2022-03-15T11:43:35.9238618Z","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: cache-control: - no-cache content-length: - - '588' + - '534' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:14 GMT + - Tue, 15 Mar 2022 11:44:06 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T12%3A31%3A43.8323437Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A43%3A35.9176041Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:43:31.2725311Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '469' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:14 GMT + - Tue, 15 Mar 2022 11:44:07 GMT etag: - - W/"datetime'2021-10-19T12%3A31%3A43.8323437Z'" + - W/"datetime'2022-03-15T11%3A43%3A35.9176041Z'" expires: - '-1' pragma: @@ -152,8 +152,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -164,22 +164,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"d5faa297-ace1-4a01-8eb2-a7f8c93a691b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"aed4a148-dab9-4e9e-8065-d323932e6f18\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"e5b62f97-3244-46a0-aee9-28cce43497d5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:44:09.2258743Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"58a4052d-7ac5-4c0a-b28f-5aef0e6e6382\",\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\": @@ -188,15 +189,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/43c11f5d-dc51-4448-889a-ff920f479079?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/12beef7e-1ceb-47ab-a23a-3d0a653f2e39?api-version=2021-05-01 cache-control: - no-cache content-length: - - '762' + - '780' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:18 GMT + - Tue, 15 Mar 2022 11:44:15 GMT expires: - '-1' pragma: @@ -209,9 +210,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62510454-a6f7-4a12-8085-f2a329f7c677 + - 407aa8e8-438a-4d4a-a5e2-4693d42e44fb x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 201 message: Created @@ -229,9 +230,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/43c11f5d-dc51-4448-889a-ff920f479079?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/12beef7e-1ceb-47ab-a23a-3d0a653f2e39?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -243,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:21 GMT + - Tue, 15 Mar 2022 11:44:18 GMT expires: - '-1' pragma: @@ -260,7 +261,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7661216d-cb0d-4b70-8c9d-5f7b568e50c7 + - ae02c0f2-45c0-4f8c-b0eb-d36a8ece28e0 status: code: 200 message: OK @@ -278,16 +279,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"648dff9f-6d9e-4c9c-9d75-68a8f9e12311\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"aed4a148-dab9-4e9e-8065-d323932e6f18\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"55aacd27-4ac0-45ca-a088-3d89edc24b9e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:44:09.2258743Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"58a4052d-7ac5-4c0a-b28f-5aef0e6e6382\",\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\": @@ -296,13 +298,13 @@ interactions: cache-control: - no-cache content-length: - - '763' + - '781' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:22 GMT + - Tue, 15 Mar 2022 11:44:18 GMT etag: - - W/"648dff9f-6d9e-4c9c-9d75-68a8f9e12311" + - W/"55aacd27-4ac0-45ca-a088-3d89edc24b9e" expires: - '-1' pragma: @@ -319,7 +321,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de4bd633-d571-45dc-a617-95d7a524c469 + - 158ca47c-6eee-4fcd-ac5a-f33a13b99b65 status: code: 200 message: OK @@ -337,16 +339,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"648dff9f-6d9e-4c9c-9d75-68a8f9e12311\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"aed4a148-dab9-4e9e-8065-d323932e6f18\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"55aacd27-4ac0-45ca-a088-3d89edc24b9e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:44:09.2258743Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"58a4052d-7ac5-4c0a-b28f-5aef0e6e6382\",\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\": @@ -355,13 +358,13 @@ interactions: cache-control: - no-cache content-length: - - '763' + - '781' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:23 GMT + - Tue, 15 Mar 2022 11:44:18 GMT etag: - - W/"648dff9f-6d9e-4c9c-9d75-68a8f9e12311" + - W/"55aacd27-4ac0-45ca-a088-3d89edc24b9e" expires: - '-1' pragma: @@ -378,18 +381,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d7f56fb-91dd-4878-97a1-b3f48d774fc1 + - b13fad72-311f-42b7-bbda-6bb33ef32d44 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T11:44:09.2258743Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -400,32 +403,33 @@ interactions: Connection: - keep-alive Content-Length: - - '687' + - '695' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"f1766617-6b23-4773-ab1f-11a65f3ce5f1\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"aed4a148-dab9-4e9e-8065-d323932e6f18\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"46d609af-65ee-4c49-a63a-ee784d8b67cc\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:44:09.2258743Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"58a4052d-7ac5-4c0a-b28f-5aef0e6e6382\",\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/\\\"f1766617-6b23-4773-ab1f-11a65f3ce5f1\\\"\",\r\n + \ \"etag\": \"W/\\\"46d609af-65ee-4c49-a63a-ee784d8b67cc\\\"\",\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/\\\"f1766617-6b23-4773-ab1f-11a65f3ce5f1\\\"\",\r\n + \ \"etag\": \"W/\\\"46d609af-65ee-4c49-a63a-ee784d8b67cc\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -440,15 +444,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0bae2a30-368b-4fc4-8ff3-5e14a2127bc1?api-version=2021-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/06aa917d-f138-4b79-a643-b6814955930a?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2305' + - '2259' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:24 GMT + - Tue, 15 Mar 2022 11:44:20 GMT expires: - '-1' pragma: @@ -465,9 +469,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e5da412-2f39-4745-9394-05c5bb233819 + - 0250f3d0-a774-4abc-8760-d7d6f6019fc2 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -485,9 +489,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0bae2a30-368b-4fc4-8ff3-5e14a2127bc1?api-version=2021-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/06aa917d-f138-4b79-a643-b6814955930a?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -499,7 +503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:27 GMT + - Tue, 15 Mar 2022 11:44:23 GMT expires: - '-1' pragma: @@ -516,7 +520,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8323b7af-b07f-4fd3-8885-cb584c936f0c + - 772e77e0-f97c-496d-972e-8de8132a4332 status: code: 200 message: OK @@ -534,26 +538,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c802ecf5-4974-4593-9ccc-8c6fcbbad8b8\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"aed4a148-dab9-4e9e-8065-d323932e6f18\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"aadf1754-a589-4f1e-9918-d1f65afe75ac\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:44:09.2258743Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"58a4052d-7ac5-4c0a-b28f-5aef0e6e6382\",\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/\\\"c802ecf5-4974-4593-9ccc-8c6fcbbad8b8\\\"\",\r\n + \ \"etag\": \"W/\\\"aadf1754-a589-4f1e-9918-d1f65afe75ac\\\"\",\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/\\\"c802ecf5-4974-4593-9ccc-8c6fcbbad8b8\\\"\",\r\n + \ \"etag\": \"W/\\\"aadf1754-a589-4f1e-9918-d1f65afe75ac\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -568,13 +573,13 @@ interactions: cache-control: - no-cache content-length: - - '2307' + - '2261' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:28 GMT + - Tue, 15 Mar 2022 11:44:23 GMT etag: - - W/"c802ecf5-4974-4593-9ccc-8c6fcbbad8b8" + - W/"aadf1754-a589-4f1e-9918-d1f65afe75ac" expires: - '-1' pragma: @@ -591,13 +596,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5cc39a28-b10f-4e43-8a84-a6360115578e + - b922d373-145c-4eda-9bcf-d21ae7910b58 status: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +613,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000003?api-version=2021-08-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-000003?api-version=2021-10-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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-10-19T12%3A32%3A32.9993616Z''\"","location":"southcentralusstage","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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-15T11%3A44%3A28.2613817Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:44:25.5533070Z"},"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/southcentralusstage/operationResults/1b66f1da-df3d-45f0-a872-1bb2125177b4?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ff97d79-df9e-405b-8040-559ad2e958d0?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '585' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:32:33 GMT + - Tue, 15 Mar 2022 11:44:28 GMT etag: - - W/"datetime'2021-10-19T12%3A32%3A32.9993616Z'" + - W/"datetime'2022-03-15T11%3A44%3A28.2613817Z'" expires: - '-1' pragma: @@ -644,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -664,21 +669,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1b66f1da-df3d-45f0-a872-1bb2125177b4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ff97d79-df9e-405b-8040-559ad2e958d0?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1b66f1da-df3d-45f0-a872-1bb2125177b4","name":"1b66f1da-df3d-45f0-a872-1bb2125177b4","status":"Succeeded","startTime":"2021-10-19T12:32:33.0094653Z","endTime":"2021-10-19T12:32:33.1181129Z","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-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ff97d79-df9e-405b-8040-559ad2e958d0","name":"0ff97d79-df9e-405b-8040-559ad2e958d0","status":"Succeeded","startTime":"2022-03-15T11:44:28.2705171Z","endTime":"2022-03-15T11:44:28.4673897Z","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-000003"}}' headers: cache-control: - no-cache content-length: - - '627' + - '564' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:33:03 GMT + - Tue, 15 Mar 2022 11:44:59 GMT expires: - '-1' pragma: @@ -687,10 +692,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -712,23 +713,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000003?api-version=2021-08-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-000003?api-version=2021-10-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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2021-10-19T12%3A32%3A33.1110703Z''\"","location":"southcentralusstage","properties":{"poolId":"be9661bb-3b21-6ad6-dfc8-5ed6af3e53d1","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-15T11%3A44%3A28.4272483Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:44:25.5533070Z"},"properties":{"poolId":"54eca67c-9d45-7b7d-2f15-04fc1ab074b6","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '700' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:33:03 GMT + - Tue, 15 Mar 2022 11:44:59 GMT etag: - - W/"datetime'2021-10-19T12%3A32%3A33.1110703Z'" + - W/"datetime'2022-03-15T11%3A44%3A28.4272483Z'" expires: - '-1' pragma: @@ -737,10 +738,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -750,7 +747,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "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"}}' + "serviceLevel": "Premium", "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +759,31 @@ interactions: Connection: - keep-alive Content-Length: - - '390' + - '368' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000003/volumes/cli-vol-000004?api-version=2021-08-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-000003/volumes/cli-vol-000004?api-version=2021-10-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-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-10-19T12%3A33%3A11.1592719Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","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-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A45%3A03.2588382Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:45:00.9285808Z"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 cache-control: - no-cache content-length: - - '905' + - '880' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:33:11 GMT + - Tue, 15 Mar 2022 11:45:03 GMT etag: - - W/"datetime'2021-10-19T12%3A33%3A11.1592719Z'" + - W/"datetime'2022-03-15T11%3A45%3A03.2588382Z'" expires: - '-1' pragma: @@ -797,7 +795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' x-powered-by: - ASP.NET status: @@ -817,21 +815,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Creating","startTime":"2021-10-19T12:33:11.1653985Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1","name":"f58c9ed9-9efb-4185-a4df-766c26947ff1","status":"Creating","startTime":"2022-03-15T11:45:03.2681429Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '649' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:33:41 GMT + - Tue, 15 Mar 2022 11:45:33 GMT expires: - '-1' pragma: @@ -865,21 +863,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Creating","startTime":"2021-10-19T12:33:11.1653985Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1","name":"f58c9ed9-9efb-4185-a4df-766c26947ff1","status":"Creating","startTime":"2022-03-15T11:45:03.2681429Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '649' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:34:12 GMT + - Tue, 15 Mar 2022 11:46:04 GMT expires: - '-1' pragma: @@ -913,21 +911,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Creating","startTime":"2021-10-19T12:33:11.1653985Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1","name":"f58c9ed9-9efb-4185-a4df-766c26947ff1","status":"Creating","startTime":"2022-03-15T11:45:03.2681429Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '649' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:34:42 GMT + - Tue, 15 Mar 2022 11:46:34 GMT expires: - '-1' pragma: @@ -961,21 +959,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Creating","startTime":"2021-10-19T12:33:11.1653985Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1","name":"f58c9ed9-9efb-4185-a4df-766c26947ff1","status":"Creating","startTime":"2022-03-15T11:45:03.2681429Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '649' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:35:12 GMT + - Tue, 15 Mar 2022 11:47:05 GMT expires: - '-1' pragma: @@ -1009,21 +1007,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Creating","startTime":"2021-10-19T12:33:11.1653985Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1","name":"f58c9ed9-9efb-4185-a4df-766c26947ff1","status":"Creating","startTime":"2022-03-15T11:45:03.2681429Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '649' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:35:43 GMT + - Tue, 15 Mar 2022 11:47:35 GMT expires: - '-1' pragma: @@ -1057,21 +1055,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Creating","startTime":"2021-10-19T12:33:11.1653985Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1","name":"f58c9ed9-9efb-4185-a4df-766c26947ff1","status":"Creating","startTime":"2022-03-15T11:45:03.2681429Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '649' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:36:13 GMT + - Tue, 15 Mar 2022 11:48:05 GMT expires: - '-1' pragma: @@ -1105,21 +1103,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Creating","startTime":"2021-10-19T12:33:11.1653985Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1","name":"f58c9ed9-9efb-4185-a4df-766c26947ff1","status":"Creating","startTime":"2022-03-15T11:45:03.2681429Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '649' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:36:44 GMT + - Tue, 15 Mar 2022 11:48:35 GMT expires: - '-1' pragma: @@ -1153,21 +1151,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Creating","startTime":"2021-10-19T12:33:11.1653985Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f58c9ed9-9efb-4185-a4df-766c26947ff1","name":"f58c9ed9-9efb-4185-a4df-766c26947ff1","status":"Succeeded","startTime":"2022-03-15T11:45:03.2681429Z","endTime":"2022-03-15T11:48:58.8372646Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '649' + - '587' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:37:14 GMT + - Tue, 15 Mar 2022 11:49:05 GMT expires: - '-1' pragma: @@ -1201,71 +1199,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993?api-version=2021-08-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-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","name":"f7f71fdb-24a9-43e7-a45e-4d5f18bbc993","status":"Succeeded","startTime":"2021-10-19T12:33:11.1653985Z","endTime":"2021-10-19T12:37:15.6961064Z","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-000003/volumes/cli-vol-000004"}}' + 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-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A48%3A58.8331406Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:45:00.9285808Z"},"properties":{"fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8b977cf6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"74dffa06-5719-00a8-e1be-225e15031fde","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"55190d59-0481-5da4-5ded-aed04f2c79a8","fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '660' + - '2084' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:37:44 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 --service-level --usage-threshold - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.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-000003/volumes/cli-vol-000004?api-version=2021-08-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-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-10-19T12%3A37%3A15.6900436Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8481b878","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '2139' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 12:37:45 GMT + - Tue, 15 Mar 2022 11:49:05 GMT etag: - - W/"datetime'2021-10-19T12%3A37%3A15.6900436Z'" + - W/"datetime'2022-03-15T11%3A48%3A58.8331406Z'" expires: - '-1' pragma: @@ -1299,31 +1249,31 @@ interactions: Connection: - keep-alive Content-Length: - - '190' + - '178' Content-Type: - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute --enabled User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000005?api-version=2021-08-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-000005?api-version=2021-10-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-000005","name":"cli-acc-000002/cli-sn-pol-000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-10-19T12%3A37%3A56.9990926Z''\"","location":"southcentralusstage","properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"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-000005","name":"cli-acc-000002/cli-sn-pol-000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2022-03-15T11%3A49%3A11.296801Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:49:07.5725114Z"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d8f7e314-5b22-4281-bf6f-09bb9f291e18?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/783597cf-7631-4494-b07b-d0a8c8a51600?api-version=2021-10-01 cache-control: - no-cache content-length: - - '624' + - '617' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:37:57 GMT + - Tue, 15 Mar 2022 11:49:12 GMT etag: - - W/"datetime'2021-10-19T12%3A37%3A56.9990926Z'" + - W/"datetime'2022-03-15T11%3A49%3A11.296801Z'" expires: - '-1' pragma: @@ -1335,7 +1285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1355,23 +1305,23 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000005?api-version=2021-08-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-000005?api-version=2021-10-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-000005","name":"cli-acc-000002/cli-sn-pol-000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2021-10-19T12%3A37%3A57.0361809Z''\"","location":"southcentralusstage","properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"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-000005","name":"cli-acc-000002/cli-sn-pol-000005","type":"Microsoft.NetApp/netAppAccounts/snapshotPolicies","etag":"W/\"datetime''2022-03-15T11%3A49%3A11.3521578Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:49:07.5725114Z"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '625' + - '619' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:37:58 GMT + - Tue, 15 Mar 2022 11:49:12 GMT etag: - - W/"datetime'2021-10-19T12%3A37%3A57.0361809Z'" + - W/"datetime'2022-03-15T11%3A49%3A11.3521578Z'" expires: - '-1' pragma: @@ -1405,23 +1355,23 @@ interactions: ParameterSetName: - -g -a -p -v --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000003/volumes/cli-vol-000004?api-version=2021-08-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-000003/volumes/cli-vol-000004?api-version=2021-10-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-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-10-19T12%3A37%3A15.6900436Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8481b878","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A48%3A58.8331406Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:45:00.9285808Z"},"properties":{"fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8b977cf6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"74dffa06-5719-00a8-e1be-225e15031fde","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"55190d59-0481-5da4-5ded-aed04f2c79a8","fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2139' + - '2084' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:38:00 GMT + - Tue, 15 Mar 2022 11:49:13 GMT etag: - - W/"datetime'2021-10-19T12%3A37%3A15.6900436Z'" + - W/"datetime'2022-03-15T11%3A48%3A58.8331406Z'" expires: - '-1' pragma: @@ -1442,9 +1392,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "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-000005"}}}}' + body: '{"tags": {"CreatedOnDate": "2022-03-15T11:45:00.9285808Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "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-000005"}}}}' headers: Accept: - application/json @@ -1455,35 +1405,35 @@ interactions: Connection: - keep-alive Content-Length: - - '400' + - '418' Content-Type: - application/json ParameterSetName: - -g -a -p -v --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-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-000003/volumes/cli-vol-000004?api-version=2021-10-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-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-10-19T12%3A38%3A02.6141105Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8481b878","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A49%3A16.2068362Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:45:00.9285808Z"},"properties":{"provisioningState":"Patching","fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8b977cf6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"74dffa06-5719-00a8-e1be-225e15031fde","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"55190d59-0481-5da4-5ded-aed04f2c79a8","fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb4415e0-a30e-42f7-b2e3-ed1bc40f5e87?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed61ef18-dd33-41fb-a98c-6a414905e99b?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2138' + - '2083' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:38:02 GMT + - Tue, 15 Mar 2022 11:49:15 GMT etag: - - W/"datetime'2021-10-19T12%3A38%3A02.6141105Z'" + - W/"datetime'2022-03-15T11%3A49%3A16.2068362Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb4415e0-a30e-42f7-b2e3-ed1bc40f5e87?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed61ef18-dd33-41fb-a98c-6a414905e99b?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1493,7 +1443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1513,65 +1463,21 @@ interactions: ParameterSetName: - -g -a -p -v --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb4415e0-a30e-42f7-b2e3-ed1bc40f5e87?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb4415e0-a30e-42f7-b2e3-ed1bc40f5e87","name":"cb4415e0-a30e-42f7-b2e3-ed1bc40f5e87","status":"Patching","startTime":"2021-10-19T12:38:02.6210425Z","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-000003/volumes/cli-vol-000004"}}' - headers: - cache-control: - - no-cache - content-length: - - '649' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 12:38:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - 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 --snapshot-policy-id - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb4415e0-a30e-42f7-b2e3-ed1bc40f5e87?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed61ef18-dd33-41fb-a98c-6a414905e99b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb4415e0-a30e-42f7-b2e3-ed1bc40f5e87","name":"cb4415e0-a30e-42f7-b2e3-ed1bc40f5e87","status":"Succeeded","startTime":"2021-10-19T12:38:02.6210425Z","endTime":"2021-10-19T12:39:02.1881016Z","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-000003/volumes/cli-vol-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed61ef18-dd33-41fb-a98c-6a414905e99b","name":"ed61ef18-dd33-41fb-a98c-6a414905e99b","status":"Succeeded","startTime":"2022-03-15T11:49:16.2137548Z","endTime":"2022-03-15T11:49:19.6528728Z","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-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '660' + - '587' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:39:03 GMT + - Tue, 15 Mar 2022 11:49:45 GMT expires: - '-1' pragma: @@ -1601,23 +1507,23 @@ interactions: ParameterSetName: - -g -a -p -v --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000003/volumes/cli-vol-000004?api-version=2021-08-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-000003/volumes/cli-vol-000004?api-version=2021-10-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-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-10-19T12%3A39%3A02.1820893Z''\"","location":"southcentralusstage","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-000005"}},"provisioningState":"Succeeded","fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8481b878","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A49%3A19.6477234Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:45:00.9285808Z"},"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-000005"}},"provisioningState":"Succeeded","fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8b977cf6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"74dffa06-5719-00a8-e1be-225e15031fde","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"55190d59-0481-5da4-5ded-aed04f2c79a8","fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2436' + - '2340' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:39:03 GMT + - Tue, 15 Mar 2022 11:49:45 GMT etag: - - W/"datetime'2021-10-19T12%3A39%3A02.1820893Z'" + - W/"datetime'2022-03-15T11%3A49%3A19.6477234Z'" expires: - '-1' pragma: @@ -1647,23 +1553,23 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000003/volumes/cli-vol-000004?api-version=2021-08-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-000003/volumes/cli-vol-000004?api-version=2021-10-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-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-10-19T12%3A39%3A02.1820893Z''\"","location":"southcentralusstage","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-000005"}},"provisioningState":"Succeeded","fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8481b878","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","fileSystemId":"17676de6-5972-6e2f-d0bb-8c0e1a146331","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A49%3A19.6477234Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:45:00.9285808Z"},"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-000005"}},"provisioningState":"Succeeded","fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8b977cf6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"74dffa06-5719-00a8-e1be-225e15031fde","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"55190d59-0481-5da4-5ded-aed04f2c79a8","fileSystemId":"55190d59-0481-5da4-5ded-aed04f2c79a8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2436' + - '2340' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:39:04 GMT + - Tue, 15 Mar 2022 11:49:47 GMT etag: - - W/"datetime'2021-10-19T12%3A39%3A02.1820893Z'" + - W/"datetime'2022-03-15T11%3A49%3A19.6477234Z'" 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 0d42bd4b4c3..019e191a19f 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": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"b1b5a180-4df7-4faf-92d3-0006c02c9a36\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cf436515-8e01-4916-94f3-0d1b2b521ddf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:18:12.2496364Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:09:31.4069161Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"62bfd920-0e54-4e4c-964d-03eea671edb4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"22a55688-34c9-4dae-b404-30e3bc98cb04\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/d09ebbe0-1806-4021-9455-1d0ec0b6a299?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/2635ce7b-a069-4f6d-b3db-7296e86b85fa?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '769' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:17 GMT + - Tue, 15 Mar 2022 15:09:37 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0895cdbc-0304-4277-a8d4-66b9c353efec + - b23eb7fe-c116-4a0b-8362-f293493592c8 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -78,9 +78,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/d09ebbe0-1806-4021-9455-1d0ec0b6a299?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/2635ce7b-a069-4f6d-b3db-7296e86b85fa?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:20 GMT + - Tue, 15 Mar 2022 15:09:40 GMT expires: - '-1' pragma: @@ -102,17 +102,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 89b2d9bf-02a9-4dd7-8154-77643827696a + - 088a6109-0b64-4e56-b7b0-ffbcda7b2402 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -127,9 +123,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/d09ebbe0-1806-4021-9455-1d0ec0b6a299?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/2635ce7b-a069-4f6d-b3db-7296e86b85fa?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -141,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:30 GMT + - Tue, 15 Mar 2022 15:09:50 GMT expires: - '-1' pragma: @@ -151,17 +147,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a51f0e40-42b5-40e9-9bf7-8d2eb754a971 + - 8ca84bbd-9341-47f1-a054-62a48fab1c4a status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -176,17 +168,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"e9b76ce9-367a-4c76-9c55-4296930fdf2f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"320fd722-58bb-4bc7-9e47-a53d475e5641\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:18:12.2496364Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:09:31.4069161Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"62bfd920-0e54-4e4c-964d-03eea671edb4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"22a55688-34c9-4dae-b404-30e3bc98cb04\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -195,13 +187,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:30 GMT + - Tue, 15 Mar 2022 15:09:50 GMT etag: - - W/"e9b76ce9-367a-4c76-9c55-4296930fdf2f" + - W/"320fd722-58bb-4bc7-9e47-a53d475e5641" expires: - '-1' pragma: @@ -211,17 +203,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ae86d58-d6c6-4c56-9561-534ff9b9961e + - 22a75bc8-96c7-443e-9ae1-596f1ce68816 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -236,17 +224,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"e9b76ce9-367a-4c76-9c55-4296930fdf2f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"320fd722-58bb-4bc7-9e47-a53d475e5641\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:18:12.2496364Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:09:31.4069161Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"62bfd920-0e54-4e4c-964d-03eea671edb4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"22a55688-34c9-4dae-b404-30e3bc98cb04\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -255,13 +243,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:31 GMT + - Tue, 15 Mar 2022 15:09:51 GMT etag: - - W/"e9b76ce9-367a-4c76-9c55-4296930fdf2f" + - W/"320fd722-58bb-4bc7-9e47-a53d475e5641" expires: - '-1' pragma: @@ -271,20 +259,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84ee3819-5964-4eb2-99a2-ebefe35f8dcb + - d1ee389f-3340-4f62-9b4a-1e69b0d2b686 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T11:18:12.2496364Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T15:09:31.4069161Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000007", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -301,33 +285,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"0e0386fa-4c58-4740-ab6a-3e27d314472b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"70d0f56f-c66a-4632-879e-efb54a9ea3be\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:18:12.2496364Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:09:31.4069161Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"62bfd920-0e54-4e4c-964d-03eea671edb4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"22a55688-34c9-4dae-b404-30e3bc98cb04\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"0e0386fa-4c58-4740-ab6a-3e27d314472b\\\"\",\r\n + \ \"etag\": \"W/\\\"70d0f56f-c66a-4632-879e-efb54a9ea3be\\\"\",\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/\\\"0e0386fa-4c58-4740-ab6a-3e27d314472b\\\"\",\r\n + \ \"etag\": \"W/\\\"70d0f56f-c66a-4632-879e-efb54a9ea3be\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -342,15 +326,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/e55691ac-a0e4-40f0-9d94-4d4e142c106e?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3b07781a-9395-445c-be1e-328d88ba0093?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2258' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:32 GMT + - Tue, 15 Mar 2022 15:09:53 GMT expires: - '-1' pragma: @@ -360,19 +344,60 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ca43fc44-c15c-4bdf-8f08-a47054fb0bc5 + - e1e8dd4b-d3e7-41da-92b5-b21cbbab1de3 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3b07781a-9395-445c-be1e-328d88ba0093?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 15:09:57 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: + - 16baf52a-bb0c-4435-a109-e6fea3545029 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -387,9 +412,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/e55691ac-a0e4-40f0-9d94-4d4e142c106e?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3b07781a-9395-445c-be1e-328d88ba0093?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -401,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:35 GMT + - Tue, 15 Mar 2022 15:10:07 GMT expires: - '-1' pragma: @@ -411,17 +436,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 981f95db-7e07-4790-895d-aabfe342fe16 + - 2493fc62-b88c-439d-a568-d2f5a1340b28 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -436,27 +457,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"fe7094f3-a0e9-42c6-80c7-1018ceeb8125\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2c5efb34-4035-442b-a3db-ab57e9e685fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:18:12.2496364Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:09:31.4069161Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"62bfd920-0e54-4e4c-964d-03eea671edb4\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"22a55688-34c9-4dae-b404-30e3bc98cb04\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"fe7094f3-a0e9-42c6-80c7-1018ceeb8125\\\"\",\r\n + \ \"etag\": \"W/\\\"2c5efb34-4035-442b-a3db-ab57e9e685fe\\\"\",\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/\\\"fe7094f3-a0e9-42c6-80c7-1018ceeb8125\\\"\",\r\n + \ \"etag\": \"W/\\\"2c5efb34-4035-442b-a3db-ab57e9e685fe\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -471,13 +492,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2260' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:36 GMT + - Tue, 15 Mar 2022 15:10:07 GMT etag: - - W/"fe7094f3-a0e9-42c6-80c7-1018ceeb8125" + - W/"2c5efb34-4035-442b-a3db-ab57e9e685fe" expires: - '-1' pragma: @@ -487,17 +508,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fe21f028-b68f-4e98-bef1-3850f818845b + - 360d0154-7987-4b33-9c9f-09f39ef4bef1 status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -510,31 +527,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T11%3A18%3A44.5566031Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:18:39.7969115Z"},"properties":{"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''2022-03-15T15%3A10%3A14.9119942Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:10:10.8098971Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e13a41-0236-445a-a76c-ef5061b37906?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b89d4e37-e560-41b3-85ed-4bfb68fbf28c?api-version=2021-10-01 cache-control: - no-cache content-length: - - '419' + - '413' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:18:45 GMT + - Tue, 15 Mar 2022 15:10:15 GMT etag: - - W/"datetime'2022-01-07T11%3A18%3A44.5566031Z'" + - W/"datetime'2022-03-15T15%3A10%3A14.9119942Z'" expires: - '-1' pragma: @@ -566,21 +583,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e13a41-0236-445a-a76c-ef5061b37906?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b89d4e37-e560-41b3-85ed-4bfb68fbf28c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e13a41-0236-445a-a76c-ef5061b37906","name":"d4e13a41-0236-445a-a76c-ef5061b37906","status":"Succeeded","startTime":"2022-01-07T11:18:44.5661476Z","endTime":"2022-01-07T11:18:44.5911566Z","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/southcentralusstage/operationResults/b89d4e37-e560-41b3-85ed-4bfb68fbf28c","name":"b89d4e37-e560-41b3-85ed-4bfb68fbf28c","status":"Succeeded","startTime":"2022-03-15T15:10:14.9189661Z","endTime":"2022-03-15T15:10:14.9539675Z","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: cache-control: - no-cache content-length: - - '531' + - '525' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:19:15 GMT + - Tue, 15 Mar 2022 15:10:46 GMT expires: - '-1' pragma: @@ -589,10 +606,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -614,23 +627,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T11%3A18%3A44.5882139Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:18:39.7969115Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T15%3A10%3A14.9464139Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:10:10.8098971Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:19:16 GMT + - Tue, 15 Mar 2022 15:10:46 GMT etag: - - W/"datetime'2022-01-07T11%3A18%3A44.5882139Z'" + - W/"datetime'2022-03-15T15%3A10%3A14.9464139Z'" expires: - '-1' pragma: @@ -639,10 +652,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -663,31 +672,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T11%3A19%3A21.1248461Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:19:16.9522950Z"},"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''2022-03-15T15%3A10%3A54.6613422Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:10:51.3039490Z"},"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/southcentralusstage/operationResults/28fecf07-2e71-42b7-bb66-19b5d555152d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/57f4aafc-78ba-4cfb-b9db-db6fe77f164e?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:19:21 GMT + - Tue, 15 Mar 2022 15:10:55 GMT etag: - - W/"datetime'2022-01-07T11%3A19%3A21.1248461Z'" + - W/"datetime'2022-03-15T15%3A10%3A54.6613422Z'" expires: - '-1' pragma: @@ -699,7 +708,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -719,21 +728,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28fecf07-2e71-42b7-bb66-19b5d555152d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/57f4aafc-78ba-4cfb-b9db-db6fe77f164e?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28fecf07-2e71-42b7-bb66-19b5d555152d","name":"28fecf07-2e71-42b7-bb66-19b5d555152d","status":"Succeeded","startTime":"2022-01-07T11:19:21.1336895Z","endTime":"2022-01-07T11:19:21.2287136Z","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/southcentralusstage/operationResults/57f4aafc-78ba-4cfb-b9db-db6fe77f164e","name":"57f4aafc-78ba-4cfb-b9db-db6fe77f164e","status":"Succeeded","startTime":"2022-03-15T15:10:54.6666806Z","endTime":"2022-03-15T15:10:55.1329016Z","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: cache-control: - no-cache content-length: - - '561' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:19:51 GMT + - Tue, 15 Mar 2022 15:11:25 GMT expires: - '-1' pragma: @@ -742,10 +751,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -767,23 +772,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T11%3A19%3A21.2163364Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:19:16.9522950Z"},"properties":{"poolId":"ea241f7d-665d-966d-86dc-2f8c7bb5c145","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T15%3A10%3A55.1260291Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:10:51.3039490Z"},"properties":{"poolId":"a4076a2e-ccb5-0435-acaf-2da0198763a7","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '697' + - '691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:19:52 GMT + - Tue, 15 Mar 2022 15:11:26 GMT etag: - - W/"datetime'2022-01-07T11%3A19%3A21.2163364Z'" + - W/"datetime'2022-03-15T15%3A10%3A55.1260291Z'" expires: - '-1' pragma: @@ -792,10 +797,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -805,7 +806,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -816,32 +818,32 @@ interactions: Connection: - keep-alive Content-Length: - - '342' + - '368' 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 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A19%3A59.5719366Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:19:53.6931808Z"},"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''2022-03-15T15%3A11%3A32.4921213Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:11:28.4645964Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 cache-control: - no-cache content-length: - - '814' + - '871' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:20:00 GMT + - Tue, 15 Mar 2022 15:11:33 GMT etag: - - W/"datetime'2022-01-07T11%3A19%3A59.5719366Z'" + - W/"datetime'2022-03-15T15%3A11%3A32.4921213Z'" expires: - '-1' pragma: @@ -853,7 +855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -874,21 +876,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Creating","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Creating","startTime":"2022-03-15T15:11:32.498094Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:20:30 GMT + - Tue, 15 Mar 2022 15:12:03 GMT expires: - '-1' pragma: @@ -923,21 +925,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Creating","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Creating","startTime":"2022-03-15T15:11:32.498094Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:21:00 GMT + - Tue, 15 Mar 2022 15:12:33 GMT expires: - '-1' pragma: @@ -972,21 +974,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Creating","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Creating","startTime":"2022-03-15T15:11:32.498094Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:21:31 GMT + - Tue, 15 Mar 2022 15:13:04 GMT expires: - '-1' pragma: @@ -1021,21 +1023,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Creating","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Creating","startTime":"2022-03-15T15:11:32.498094Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:22:01 GMT + - Tue, 15 Mar 2022 15:13:34 GMT expires: - '-1' pragma: @@ -1070,21 +1072,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Creating","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Creating","startTime":"2022-03-15T15:11:32.498094Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:22:32 GMT + - Tue, 15 Mar 2022 15:14:05 GMT expires: - '-1' pragma: @@ -1119,21 +1121,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Creating","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Creating","startTime":"2022-03-15T15:11:32.498094Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:23:02 GMT + - Tue, 15 Mar 2022 15:14:35 GMT expires: - '-1' pragma: @@ -1168,21 +1170,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Creating","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Creating","startTime":"2022-03-15T15:11:32.498094Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:23:32 GMT + - Tue, 15 Mar 2022 15:15:05 GMT expires: - '-1' pragma: @@ -1217,21 +1219,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Creating","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Creating","startTime":"2022-03-15T15:11:32.498094Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:24:02 GMT + - Tue, 15 Mar 2022 15:15:35 GMT expires: - '-1' pragma: @@ -1266,21 +1268,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3d044f57-17e8-4d9c-9ece-52421e565a40","name":"3d044f57-17e8-4d9c-9ece-52421e565a40","status":"Succeeded","startTime":"2022-01-07T11:19:59.5790124Z","endTime":"2022-01-07T11:24:03.6748539Z","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/southcentralusstage/operationResults/ba398ae6-336e-4d00-8591-d682a2946ca4","name":"ba398ae6-336e-4d00-8591-d682a2946ca4","status":"Succeeded","startTime":"2022-03-15T15:11:32.498094Z","endTime":"2022-03-15T15:15:37.7822759Z","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: cache-control: - no-cache content-length: - - '584' + - '577' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:24:32 GMT + - Tue, 15 Mar 2022 15:16:05 GMT expires: - '-1' pragma: @@ -1315,23 +1317,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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A24%3A03.6692379Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:19:53.6931808Z"},"properties":{"fileSystemId":"545ff32c-d600-72e6-a449-e4f38bd18df6","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_fa6d9fa8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"545ff32c-d600-72e6-a449-e4f38bd18df6","fileSystemId":"545ff32c-d600-72e6-a449-e4f38bd18df6","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T15%3A15%3A37.7747555Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:11:28.4645964Z"},"properties":{"fileSystemId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_df4318b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","fileSystemId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2048' + - '2075' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:24:33 GMT + - Tue, 15 Mar 2022 15:16:05 GMT etag: - - W/"datetime'2022-01-07T11%3A24%3A03.6692379Z'" + - W/"datetime'2022-03-15T15%3A15%3A37.7747555Z'" expires: - '-1' pragma: @@ -1364,31 +1366,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005","name":"cli-acc-000002/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T11%3A24%3A40.4434773Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:24:35.1825384Z"},"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''2022-03-15T15%3A16%3A12.2885484Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:16:07.6263564Z"},"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/southcentralusstage/operationResults/a252872f-d71d-4eee-bc9c-f58d74960ba7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9673c365-13a7-463e-875a-420e80ebd343?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:24:40 GMT + - Tue, 15 Mar 2022 15:16:13 GMT etag: - - W/"datetime'2022-01-07T11%3A24%3A40.4434773Z'" + - W/"datetime'2022-03-15T15%3A16%3A12.2885484Z'" expires: - '-1' pragma: @@ -1400,7 +1402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1420,21 +1422,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a252872f-d71d-4eee-bc9c-f58d74960ba7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9673c365-13a7-463e-875a-420e80ebd343?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a252872f-d71d-4eee-bc9c-f58d74960ba7","name":"a252872f-d71d-4eee-bc9c-f58d74960ba7","status":"Succeeded","startTime":"2022-01-07T11:24:40.4492781Z","endTime":"2022-01-07T11:24:40.8264121Z","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: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9673c365-13a7-463e-875a-420e80ebd343","name":"9673c365-13a7-463e-875a-420e80ebd343","status":"Succeeded","startTime":"2022-03-15T15:16:12.3009068Z","endTime":"2022-03-15T15:16:16.52168Z","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: cache-control: - no-cache content-length: - - '561' + - '553' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:25:11 GMT + - Tue, 15 Mar 2022 15:16:43 GMT expires: - '-1' pragma: @@ -1468,23 +1470,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005","name":"cli-acc-000002/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T11%3A24%3A40.8140432Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:24:35.1825384Z"},"properties":{"poolId":"68744f5d-cfe9-3ebd-1b06-d3ddf0b21158","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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-000005","name":"cli-acc-000002/cli-pool-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-15T15%3A16%3A16.5125952Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:16:07.6263564Z"},"properties":{"poolId":"ac3ff793-9aa0-9149-59d1-7a82c691fc61","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '697' + - '691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:25:12 GMT + - Tue, 15 Mar 2022 15:16:44 GMT etag: - - W/"datetime'2022-01-07T11%3A24%3A40.8140432Z'" + - W/"datetime'2022-03-15T15%3A16%3A16.5125952Z'" expires: - '-1' pragma: @@ -1522,25 +1524,25 @@ interactions: ParameterSetName: - -g -a -p -v -d User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/poolChange?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44a2e00a-3479-47ab-93b8-9cc15c68017f?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9ba89f18-064f-4a1d-bce3-4e0123d7e82f?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 11:25:13 GMT + - Tue, 15 Mar 2022 15:16:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44a2e00a-3479-47ab-93b8-9cc15c68017f?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9ba89f18-064f-4a1d-bce3-4e0123d7e82f?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1570,21 +1572,21 @@ interactions: ParameterSetName: - -g -a -p -v -d User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44a2e00a-3479-47ab-93b8-9cc15c68017f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9ba89f18-064f-4a1d-bce3-4e0123d7e82f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44a2e00a-3479-47ab-93b8-9cc15c68017f","name":"44a2e00a-3479-47ab-93b8-9cc15c68017f","status":"Succeeded","startTime":"2022-01-07T11:25:13.6127024Z","endTime":"2022-01-07T11:25:37.4256817Z","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/southcentralusstage/operationResults/9ba89f18-064f-4a1d-bce3-4e0123d7e82f","name":"9ba89f18-064f-4a1d-bce3-4e0123d7e82f","status":"Succeeded","startTime":"2022-03-15T15:16:45.6983471Z","endTime":"2022-03-15T15:16:56.008586Z","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: cache-control: - no-cache content-length: - - '584' + - '577' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:25:43 GMT + - Tue, 15 Mar 2022 15:17:15 GMT expires: - '-1' pragma: @@ -1593,10 +1595,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1618,21 +1616,21 @@ interactions: ParameterSetName: - -g -a -p -v -d User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44a2e00a-3479-47ab-93b8-9cc15c68017f?api-version=2021-08-01&operationResultResponseType=Location + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9ba89f18-064f-4a1d-bce3-4e0123d7e82f?api-version=2021-10-01&operationResultResponseType=Location 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''2022-01-07T11%3A25%3A37.416745Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:19:53.6931808Z"},"properties":{"fileSystemId":"545ff32c-d600-72e6-a449-e4f38bd18df6","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"8f672e56-f2b2-11ea-b140-b6c0e8ee56e4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_fa6d9fa8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","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":"68744f5d-cfe9-3ebd-1b06-d3ddf0b21158","mountTargets":[{"provisioningState":"","mountTargetId":"545ff32c-d600-72e6-a449-e4f38bd18df6","fileSystemId":"545ff32c-d600-72e6-a449-e4f38bd18df6","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","encryptionKeySource":"Microsoft.NetApp","volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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-000005/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000005/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T15%3A16%3A56.0021269Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:11:28.4645964Z"},"properties":{"fileSystemId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"1a1854d0-5b82-11e9-9e4a-3a8c013b5748","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_df4318b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","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":"ac3ff793-9aa0-9149-59d1-7a82c691fc61","mountTargets":[{"provisioningState":"","mountTargetId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","fileSystemId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","encryptionKeySource":"Microsoft.NetApp","volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2482' + - '2477' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:25:44 GMT + - Tue, 15 Mar 2022 15:17:16 GMT expires: - '-1' pragma: @@ -1641,10 +1639,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1666,23 +1660,23 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000005/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000005/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A25%3A37.416745Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:19:53.6931808Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"545ff32c-d600-72e6-a449-e4f38bd18df6","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_fa6d9fa8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"545ff32c-d600-72e6-a449-e4f38bd18df6","fileSystemId":"545ff32c-d600-72e6-a449-e4f38bd18df6","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-15T15%3A16%3A56.0021269Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:11:28.4645964Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_df4318b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","fileSystemId":"82e6a4a6-bd79-9c8e-7be1-4432d75a1581","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2047' + - '2075' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:25:45 GMT + - Tue, 15 Mar 2022 15:17:16 GMT etag: - - W/"datetime'2022-01-07T11%3A25%3A37.416745Z'" + - W/"datetime'2022-03-15T15%3A16%3A56.0021269Z'" 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 89d00aa6570..e4dde09bb2a 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_account.yaml @@ -18,15 +18,15 @@ interactions: ParameterSetName: - --resource-group --account-name --location --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T14%3A49%3A48.1958086Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-06T14:49:41.6096699Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T14:49:47.3525732Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T14:49:47.3525732Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A33%3A50.7455139Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:33:45.8055548Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:33:49.9778396Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:33:49.9778396Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d7c43f94-0c5e-4ced-aed9-6a52ab19afc3?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/521daaee-b04c-47ac-9674-b17320f1db11?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -34,9 +34,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:49:49 GMT + - Tue, 15 Mar 2022 10:33:51 GMT etag: - - W/"datetime'2022-01-06T14%3A49%3A48.1958086Z'" + - W/"datetime'2022-03-15T10%3A33%3A50.7455139Z'" expires: - '-1' pragma: @@ -68,12 +68,12 @@ interactions: ParameterSetName: - --resource-group --account-name --location --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d7c43f94-0c5e-4ced-aed9-6a52ab19afc3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/521daaee-b04c-47ac-9674-b17320f1db11?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d7c43f94-0c5e-4ced-aed9-6a52ab19afc3","name":"d7c43f94-0c5e-4ced-aed9-6a52ab19afc3","status":"Succeeded","startTime":"2022-01-06T14:49:48.1970668Z","endTime":"2022-01-06T14:49:48.2653134Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/521daaee-b04c-47ac-9674-b17320f1db11","name":"521daaee-b04c-47ac-9674-b17320f1db11","status":"Succeeded","startTime":"2022-03-15T10:33:50.7431978Z","endTime":"2022-03-15T10:33:50.8212878Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:50:19 GMT + - Tue, 15 Mar 2022 10:34:23 GMT expires: - '-1' pragma: @@ -116,23 +116,23 @@ interactions: ParameterSetName: - --resource-group --account-name --location --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T14%3A49%3A48.2542736Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-06T14:49:41.6096699Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T14:49:47.3525732Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T14:49:47.3525732Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A33%3A50.8275763Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:33:45.8055548Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:33:49.9778396Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:33:49.9778396Z"}}' headers: cache-control: - no-cache content-length: - - '1180' + - '1201' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:50:20 GMT + - Tue, 15 Mar 2022 10:34:23 GMT etag: - - W/"datetime'2022-01-06T14%3A49%3A48.2542736Z'" + - W/"datetime'2022-03-15T10%3A33%3A50.8275763Z'" expires: - '-1' pragma: @@ -166,21 +166,21 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T14%3A49%3A48.2542736Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-06T14:49:41.6096699Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T14:49:47.3525732Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T14:49:47.3525732Z","lastModifiedByType":"Application"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A33%3A50.8275763Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:33:45.8055548Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:33:49.9778396Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:33:49.9778396Z"}}]}' headers: cache-control: - no-cache content-length: - - '1192' + - '1213' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:50:20 GMT + - Tue, 15 Mar 2022 10:34:24 GMT expires: - '-1' pragma: @@ -216,25 +216,25 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0146e2f-cbaf-4386-9ccb-6d52b278cfed?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9975a8b-1f36-465f-872f-ce718a0c782a?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 06 Jan 2022 14:50:23 GMT + - Tue, 15 Mar 2022 10:34:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0146e2f-cbaf-4386-9ccb-6d52b278cfed?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9975a8b-1f36-465f-872f-ce718a0c782a?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -264,21 +264,21 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0146e2f-cbaf-4386-9ccb-6d52b278cfed?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9975a8b-1f36-465f-872f-ce718a0c782a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f0146e2f-cbaf-4386-9ccb-6d52b278cfed","name":"f0146e2f-cbaf-4386-9ccb-6d52b278cfed","status":"Succeeded","startTime":"2022-01-06T14:50:24.341181Z","endTime":"2022-01-06T14:50:24.456385Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a9975a8b-1f36-465f-872f-ce718a0c782a","name":"a9975a8b-1f36-465f-872f-ce718a0c782a","status":"Succeeded","startTime":"2022-03-15T10:34:28.6328924Z","endTime":"2022-03-15T10:34:28.6953784Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '536' + - '538' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:50:54 GMT + - Tue, 15 Mar 2022 10:34:58 GMT expires: - '-1' pragma: @@ -287,10 +287,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -312,9 +308,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2021-10-01 response: body: string: '{"value":[]}' @@ -326,7 +322,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:50:55 GMT + - Tue, 15 Mar 2022 10:34:59 GMT expires: - '-1' pragma: @@ -359,15 +355,15 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T14%3A51%3A01.9135048Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-06T14:50:55.9814541Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T14:51:01.1467189Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T14:51:01.1467189Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A35%3A06.6408521Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:35:01.2077360Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:35:05.8526525Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:35:05.8526525Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b3986286-4482-438c-9f37-e6209d80bed8?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/183086a0-3e4d-49e1-b957-5fd0e1a7f2f5?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -375,9 +371,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:51:02 GMT + - Tue, 15 Mar 2022 10:35:08 GMT etag: - - W/"datetime'2022-01-06T14%3A51%3A01.9135048Z'" + - W/"datetime'2022-03-15T10%3A35%3A06.6408521Z'" expires: - '-1' pragma: @@ -409,21 +405,21 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b3986286-4482-438c-9f37-e6209d80bed8?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/183086a0-3e4d-49e1-b957-5fd0e1a7f2f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b3986286-4482-438c-9f37-e6209d80bed8","name":"b3986286-4482-438c-9f37-e6209d80bed8","status":"Succeeded","startTime":"2022-01-06T14:51:01.91422Z","endTime":"2022-01-06T14:51:01.9491878Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/183086a0-3e4d-49e1-b957-5fd0e1a7f2f5","name":"183086a0-3e4d-49e1-b957-5fd0e1a7f2f5","status":"Succeeded","startTime":"2022-03-15T10:35:06.6406485Z","endTime":"2022-03-15T10:35:06.6886276Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '536' + - '538' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:51:32 GMT + - Tue, 15 Mar 2022 10:35:38 GMT expires: - '-1' pragma: @@ -432,10 +428,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -457,23 +449,23 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T14%3A51%3A01.9409403Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-06T14:50:55.9814541Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T14:51:01.1467189Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T14:51:01.1467189Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A35%3A06.6925833Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:35:01.2077360Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:35:05.8526525Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:35:05.8526525Z"}}' headers: cache-control: - no-cache content-length: - - '1180' + - '1201' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:51:33 GMT + - Tue, 15 Mar 2022 10:35:38 GMT etag: - - W/"datetime'2022-01-06T14%3A51%3A01.9409403Z'" + - W/"datetime'2022-03-15T10%3A35%3A06.6925833Z'" expires: - '-1' pragma: @@ -482,10 +474,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -507,21 +495,21 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T14%3A51%3A01.9409403Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-06T14:50:55.9814541Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T14:51:01.1467189Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T14:51:01.1467189Z","lastModifiedByType":"Application"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A35%3A06.6925833Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:35:01.2077360Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:35:05.8526525Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:35:05.8526525Z"}}]}' headers: cache-control: - no-cache content-length: - - '1192' + - '1213' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:51:34 GMT + - Tue, 15 Mar 2022 10:35:40 GMT expires: - '-1' pragma: @@ -557,25 +545,25 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55a8cab5-d915-49a4-a57f-b75e7d5238cd?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5187df0a-7653-4d1b-8fd3-0c277df3f60e?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 06 Jan 2022 14:51:37 GMT + - Tue, 15 Mar 2022 10:35:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55a8cab5-d915-49a4-a57f-b75e7d5238cd?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5187df0a-7653-4d1b-8fd3-0c277df3f60e?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -605,12 +593,12 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55a8cab5-d915-49a4-a57f-b75e7d5238cd?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5187df0a-7653-4d1b-8fd3-0c277df3f60e?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55a8cab5-d915-49a4-a57f-b75e7d5238cd","name":"55a8cab5-d915-49a4-a57f-b75e7d5238cd","status":"Succeeded","startTime":"2022-01-06T14:51:37.8150113Z","endTime":"2022-01-06T14:51:37.8700128Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5187df0a-7653-4d1b-8fd3-0c277df3f60e","name":"5187df0a-7653-4d1b-8fd3-0c277df3f60e","status":"Succeeded","startTime":"2022-03-15T10:35:43.9109343Z","endTime":"2022-03-15T10:35:43.9421982Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache @@ -619,7 +607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:52:08 GMT + - Tue, 15 Mar 2022 10:36:14 GMT expires: - '-1' pragma: @@ -649,9 +637,9 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2021-10-01 response: body: string: '{"value":[]}' @@ -663,7 +651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 14:52:08 GMT + - Tue, 15 Mar 2022 10:36:14 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 a4e8dbff3af..2691f836143 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,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"da65136a-14d3-477f-859d-2d8af3eff78b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"385d671e-5fdd-4c1e-b1ce-49575d05a363\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"be93b467-222d-45ff-8054-d60dba7ba7c7\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:43:50.9482417Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"15331059-5c2e-4068-a010-9d4539ae271a\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6f245ede-4508-4234-8fdd-5acee8f36791?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/05e6c4ba-4858-452a-952d-32a574822333?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '781' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:04 GMT + - Wed, 16 Mar 2022 08:43:55 GMT expires: - '-1' pragma: @@ -57,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7fa49cdc-0604-418a-9db6-0b294c0ba29c + - 77bfa4da-7899-4342-915e-11d24a38ab33 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6f245ede-4508-4234-8fdd-5acee8f36791?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/05e6c4ba-4858-452a-952d-32a574822333?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:08 GMT + - Wed, 16 Mar 2022 08:43:58 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7499b429-18ba-4b44-b66f-f87aa28ed908 + - 67d283e5-b3ba-4f5f-a2a8-717d4e95bdd1 status: code: 200 message: OK @@ -126,16 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"64b5fedb-b4fa-46a1-997a-f9d21b21aae3\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"385d671e-5fdd-4c1e-b1ce-49575d05a363\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"cc0b28b1-5c2d-40d6-966a-dc99d902e817\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:43:50.9482417Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"15331059-5c2e-4068-a010-9d4539ae271a\",\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\": @@ -144,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:08 GMT + - Wed, 16 Mar 2022 08:43:59 GMT etag: - - W/"64b5fedb-b4fa-46a1-997a-f9d21b21aae3" + - W/"cc0b28b1-5c2d-40d6-966a-dc99d902e817" expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f222ede-684d-464d-859b-c89ba38582da + - 577e6267-50fb-4c4a-aa0b-65c372906768 status: code: 200 message: OK @@ -185,16 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"64b5fedb-b4fa-46a1-997a-f9d21b21aae3\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"385d671e-5fdd-4c1e-b1ce-49575d05a363\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"cc0b28b1-5c2d-40d6-966a-dc99d902e817\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:43:50.9482417Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"15331059-5c2e-4068-a010-9d4539ae271a\",\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\": @@ -203,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:09 GMT + - Wed, 16 Mar 2022 08:43:59 GMT etag: - - W/"64b5fedb-b4fa-46a1-997a-f9d21b21aae3" + - W/"cc0b28b1-5c2d-40d6-966a-dc99d902e817" expires: - '-1' pragma: @@ -226,18 +229,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4dc3c401-b48f-463b-9917-f5f045bb8d38 + - 6bb6359c-92cb-4723-aa34-497f28f11975 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": "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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-16T08:43:50.9482417Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +251,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '691' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"5fa914ef-257b-4efd-91b8-75ced706744e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"385d671e-5fdd-4c1e-b1ce-49575d05a363\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"97262a87-4267-444a-abcc-89c7f6d5d233\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:43:50.9482417Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"15331059-5c2e-4068-a010-9d4539ae271a\",\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/\\\"5fa914ef-257b-4efd-91b8-75ced706744e\\\"\",\r\n + \ \"etag\": \"W/\\\"97262a87-4267-444a-abcc-89c7f6d5d233\\\"\",\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/\\\"5fa914ef-257b-4efd-91b8-75ced706744e\\\"\",\r\n + \ \"etag\": \"W/\\\"97262a87-4267-444a-abcc-89c7f6d5d233\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +292,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/5adef8c2-29fe-47d7-ad54-14fcef125b43?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/cbba38e2-a061-4bca-80a6-fff321b4bc6b?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2252' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:10 GMT + - Wed, 16 Mar 2022 08:44:01 GMT expires: - '-1' pragma: @@ -313,7 +317,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 66e402ff-99f9-4d7d-8fac-164d5b60472b + - 7338f8b3-4bc1-48e4-8d54-667f7ac9eaad x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -333,9 +337,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/5adef8c2-29fe-47d7-ad54-14fcef125b43?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/cbba38e2-a061-4bca-80a6-fff321b4bc6b?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:13 GMT + - Wed, 16 Mar 2022 08:44:04 GMT expires: - '-1' pragma: @@ -364,7 +368,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d78f6959-e9ed-4c14-8012-999534a919c6 + - 50955b1f-ef95-431b-8b87-7c0da694044a status: code: 200 message: OK @@ -382,26 +386,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"1e70307a-4d16-4440-b048-d2ec5462c23d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"385d671e-5fdd-4c1e-b1ce-49575d05a363\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"a2f15a3b-e573-48ca-bc7c-4ee1c5f6e5c9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:43:50.9482417Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"15331059-5c2e-4068-a010-9d4539ae271a\",\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/\\\"1e70307a-4d16-4440-b048-d2ec5462c23d\\\"\",\r\n + \ \"etag\": \"W/\\\"a2f15a3b-e573-48ca-bc7c-4ee1c5f6e5c9\\\"\",\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/\\\"1e70307a-4d16-4440-b048-d2ec5462c23d\\\"\",\r\n + \ \"etag\": \"W/\\\"a2f15a3b-e573-48ca-bc7c-4ee1c5f6e5c9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +421,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2254' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:13 GMT + - Wed, 16 Mar 2022 08:44:05 GMT etag: - - W/"1e70307a-4d16-4440-b048-d2ec5462c23d" + - W/"a2f15a3b-e573-48ca-bc7c-4ee1c5f6e5c9" expires: - '-1' pragma: @@ -439,7 +444,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12f9b2c3-e5c3-4ab8-a5f9-61c14747c0a3 + - 54d620c0-f319-4458-8663-264973343bad status: code: 200 message: OK @@ -455,31 +460,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A33%3A20.4400181Z''\"","location":"southcentralusstage","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''2022-03-16T08%3A44%3A13.4160701Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:44:08.6718779Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5cbdbb6b-6e72-4139-9826-a04ee63338a7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb8ea4f2-8536-4606-a71c-82da5b7fadbf?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '413' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:20 GMT + - Wed, 16 Mar 2022 08:44:14 GMT etag: - - W/"datetime'2021-10-19T13%3A33%3A20.4400181Z'" + - W/"datetime'2022-03-16T08%3A44%3A13.4160701Z'" expires: - '-1' pragma: @@ -511,21 +516,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5cbdbb6b-6e72-4139-9826-a04ee63338a7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb8ea4f2-8536-4606-a71c-82da5b7fadbf?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5cbdbb6b-6e72-4139-9826-a04ee63338a7","name":"5cbdbb6b-6e72-4139-9826-a04ee63338a7","status":"Succeeded","startTime":"2021-10-19T13:33:20.4455546Z","endTime":"2021-10-19T13:33:20.4815166Z","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/eb8ea4f2-8536-4606-a71c-82da5b7fadbf","name":"eb8ea4f2-8536-4606-a71c-82da5b7fadbf","status":"Succeeded","startTime":"2022-03-16T08:44:13.4222399Z","endTime":"2022-03-16T08:44:13.4522039Z","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: cache-control: - no-cache content-length: - - '588' + - '525' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:50 GMT + - Wed, 16 Mar 2022 08:44:45 GMT expires: - '-1' pragma: @@ -559,23 +564,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A33%3A20.4737314Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"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''2022-03-16T08%3A44%3A13.4413613Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:44:08.6718779Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '460' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:51 GMT + - Wed, 16 Mar 2022 08:44:45 GMT etag: - - W/"datetime'2021-10-19T13%3A33%3A20.4737314Z'" + - W/"datetime'2022-03-16T08%3A44%3A13.4413613Z'" expires: - '-1' pragma: @@ -596,8 +601,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +613,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A33%3A58.1665535Z''\"","location":"southcentralusstage","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''2022-03-16T08%3A44%3A51.69313Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:44:47.1908189Z"},"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/southcentralusstage/operationResults/98173594-38d1-4b24-8822-df96946cedab?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a311660-2e8c-4097-92d0-70845953b6e9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '574' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:33:58 GMT + - Wed, 16 Mar 2022 08:44:52 GMT etag: - - W/"datetime'2021-10-19T13%3A33%3A58.1665535Z'" + - W/"datetime'2022-03-16T08%3A44%3A51.69313Z'" expires: - '-1' pragma: @@ -644,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -664,21 +669,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98173594-38d1-4b24-8822-df96946cedab?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a311660-2e8c-4097-92d0-70845953b6e9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98173594-38d1-4b24-8822-df96946cedab","name":"98173594-38d1-4b24-8822-df96946cedab","status":"Succeeded","startTime":"2021-10-19T13:33:58.1714626Z","endTime":"2021-10-19T13:33:58.3512467Z","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/9a311660-2e8c-4097-92d0-70845953b6e9","name":"9a311660-2e8c-4097-92d0-70845953b6e9","status":"Succeeded","startTime":"2022-03-16T08:44:51.7011938Z","endTime":"2022-03-16T08:44:51.8161899Z","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: cache-control: - no-cache content-length: - - '627' + - '555' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:34:28 GMT + - Wed, 16 Mar 2022 08:45:22 GMT expires: - '-1' pragma: @@ -687,10 +692,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -712,23 +713,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A33%3A58.3424193Z''\"","location":"southcentralusstage","properties":{"poolId":"922deb01-69ef-de14-a12a-aef8eceb72cb","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-16T08%3A44%3A51.8051051Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:44:47.1908189Z"},"properties":{"poolId":"9852e559-4959-e6dc-3d74-626a2f8c8db5","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '691' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:34:29 GMT + - Wed, 16 Mar 2022 08:45:23 GMT etag: - - W/"datetime'2021-10-19T13%3A33%3A58.3424193Z'" + - W/"datetime'2022-03-16T08%3A44%3A51.8051051Z'" expires: - '-1' pragma: @@ -737,10 +738,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -750,7 +747,8 @@ interactions: message: OK - request: 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"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +759,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '337' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A34%3A38.9070124Z''\"","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"}}' + 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''2022-03-16T08%3A45%3A27.9232866Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:45:24.3754712Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:34:39 GMT + - Wed, 16 Mar 2022 08:45:28 GMT etag: - - W/"datetime'2021-10-19T13%3A34%3A38.9070124Z'" + - W/"datetime'2022-03-16T08%3A45%3A27.9232866Z'" expires: - '-1' pragma: @@ -797,7 +795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -817,21 +815,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Creating","startTime":"2021-10-19T13:34:38.9099579Z","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/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","name":"6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","status":"Creating","startTime":"2022-03-16T08:45:27.9276407Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:35:10 GMT + - Wed, 16 Mar 2022 08:45:58 GMT expires: - '-1' pragma: @@ -840,10 +838,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -865,21 +859,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Creating","startTime":"2021-10-19T13:34:38.9099579Z","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/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","name":"6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","status":"Creating","startTime":"2022-03-16T08:45:27.9276407Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:35:39 GMT + - Wed, 16 Mar 2022 08:46:29 GMT expires: - '-1' pragma: @@ -888,10 +882,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -913,21 +903,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Creating","startTime":"2021-10-19T13:34:38.9099579Z","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/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","name":"6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","status":"Creating","startTime":"2022-03-16T08:45:27.9276407Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:36:10 GMT + - Wed, 16 Mar 2022 08:46:59 GMT expires: - '-1' pragma: @@ -936,10 +926,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -961,21 +947,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Creating","startTime":"2021-10-19T13:34:38.9099579Z","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/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","name":"6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","status":"Creating","startTime":"2022-03-16T08:45:27.9276407Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:36:40 GMT + - Wed, 16 Mar 2022 08:47:29 GMT expires: - '-1' pragma: @@ -984,10 +970,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1009,21 +991,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Creating","startTime":"2021-10-19T13:34:38.9099579Z","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/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","name":"6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","status":"Creating","startTime":"2022-03-16T08:45:27.9276407Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:37:11 GMT + - Wed, 16 Mar 2022 08:48:00 GMT expires: - '-1' pragma: @@ -1032,10 +1014,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1057,21 +1035,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Creating","startTime":"2021-10-19T13:34:38.9099579Z","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/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","name":"6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","status":"Creating","startTime":"2022-03-16T08:45:27.9276407Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:37:41 GMT + - Wed, 16 Mar 2022 08:48:31 GMT expires: - '-1' pragma: @@ -1080,10 +1058,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1105,21 +1079,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Creating","startTime":"2021-10-19T13:34:38.9099579Z","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/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","name":"6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","status":"Creating","startTime":"2022-03-16T08:45:27.9276407Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:38:11 GMT + - Wed, 16 Mar 2022 08:49:01 GMT expires: - '-1' pragma: @@ -1128,10 +1102,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1153,21 +1123,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Creating","startTime":"2021-10-19T13:34:38.9099579Z","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/6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","name":"6ecb6415-23ec-4d9c-bf91-ff0b31cd9900","status":"Succeeded","startTime":"2022-03-16T08:45:27.9276407Z","endTime":"2022-03-16T08:49:26.9138834Z","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: - - '649' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:38:42 GMT + - Wed, 16 Mar 2022 08:49:31 GMT expires: - '-1' pragma: @@ -1176,10 +1146,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1201,71 +1167,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05?api-version=2021-08-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=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e913366-a7a3-47ae-9e79-e4ee75125c05","name":"8e913366-a7a3-47ae-9e79-e4ee75125c05","status":"Succeeded","startTime":"2021-10-19T13:34:38.9099579Z","endTime":"2021-10-19T13:38:42.8215957Z","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/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''2022-03-16T08%3A49%3A26.8990893Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:45:24.3754712Z"},"properties":{"fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6eb3c617","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"08393230-86db-afcc-261f-8b994c7d46e9","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '660' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:39: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 volume create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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=2021-08-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-10-19T13%3A38%3A42.8160418Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a876b762","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '2147' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 13:39:12 GMT + - Wed, 16 Mar 2022 08:49:31 GMT etag: - - W/"datetime'2021-10-19T13%3A38%3A42.8160418Z'" + - W/"datetime'2022-03-16T08%3A49%3A26.8990893Z'" expires: - '-1' pragma: @@ -1274,10 +1192,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1299,21 +1213,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:39:14 GMT + - Wed, 16 Mar 2022 08:49:33 GMT expires: - '-1' pragma: @@ -1347,23 +1261,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A38%3A42.8160418Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a876b762","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T08%3A49%3A26.8990893Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:45:24.3754712Z"},"properties":{"fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6eb3c617","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"08393230-86db-afcc-261f-8b994c7d46e9","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:39:15 GMT + - Wed, 16 Mar 2022 08:49:34 GMT etag: - - W/"datetime'2021-10-19T13%3A38%3A42.8160418Z'" + - W/"datetime'2022-03-16T08%3A49%3A26.8990893Z'" expires: - '-1' pragma: @@ -1384,9 +1298,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T08:45:24.3754712Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "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: @@ -1398,35 +1312,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '427' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A39%3A18.5572303Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a876b762","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T08%3A49%3A37.9983124Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:45:24.3754712Z"},"properties":{"provisioningState":"Patching","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6eb3c617","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"08393230-86db-afcc-261f-8b994c7d46e9","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ec0f7ef-643f-4002-a42d-fcc720ed21d5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/721105fe-1fc6-405a-9952-718766b61154?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2146' + - '2070' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:39:18 GMT + - Wed, 16 Mar 2022 08:49:37 GMT etag: - - W/"datetime'2021-10-19T13%3A39%3A18.5572303Z'" + - W/"datetime'2022-03-16T08%3A49%3A37.9983124Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ec0f7ef-643f-4002-a42d-fcc720ed21d5?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/721105fe-1fc6-405a-9952-718766b61154?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1456,21 +1370,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ec0f7ef-643f-4002-a42d-fcc720ed21d5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/721105fe-1fc6-405a-9952-718766b61154?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ec0f7ef-643f-4002-a42d-fcc720ed21d5","name":"4ec0f7ef-643f-4002-a42d-fcc720ed21d5","status":"Succeeded","startTime":"2021-10-19T13:39:18.5610877Z","endTime":"2021-10-19T13:39:24.8290904Z","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/721105fe-1fc6-405a-9952-718766b61154","name":"721105fe-1fc6-405a-9952-718766b61154","status":"Succeeded","startTime":"2022-03-16T08:49:38.0046305Z","endTime":"2022-03-16T08:49:41.9768725Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:39:48 GMT + - Wed, 16 Mar 2022 08:50:08 GMT expires: - '-1' pragma: @@ -1504,23 +1418,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A39%3A24.8236454Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a876b762","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T08%3A49%3A41.965877Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:45:24.3754712Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"08393230-86db-afcc-261f-8b994c7d46e9","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6eb3c617","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"08393230-86db-afcc-261f-8b994c7d46e9","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2331' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:39:48 GMT + - Wed, 16 Mar 2022 08:50:08 GMT etag: - - W/"datetime'2021-10-19T13%3A39%3A24.8236454Z'" + - W/"datetime'2022-03-16T08%3A49%3A41.965877Z'" expires: - '-1' pragma: @@ -1552,33 +1466,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3370f703-2130-45ec-acd6-576942bd258b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e97616f-c03b-41c5-8318-8ef298f320b6?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '457' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:39:50 GMT + - Wed, 16 Mar 2022 08:50:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3370f703-2130-45ec-acd6-576942bd258b?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e97616f-c03b-41c5-8318-8ef298f320b6?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1588,7 +1502,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -1608,21 +1522,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3370f703-2130-45ec-acd6-576942bd258b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2e97616f-c03b-41c5-8318-8ef298f320b6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3370f703-2130-45ec-acd6-576942bd258b","name":"3370f703-2130-45ec-acd6-576942bd258b","status":"Succeeded","startTime":"2021-10-19T13:39:50.9025836Z","endTime":"2021-10-19T13:39:51.3653272Z","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/2e97616f-c03b-41c5-8318-8ef298f320b6","name":"2e97616f-c03b-41c5-8318-8ef298f320b6","status":"Succeeded","startTime":"2022-03-16T08:50:09.0316585Z","endTime":"2022-03-16T08:50:10.4178167Z","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"}}' headers: cache-control: - no-cache content-length: - - '693' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:40:20 GMT + - Wed, 16 Mar 2022 08:50:38 GMT expires: - '-1' pragma: @@ -1631,10 +1545,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1656,21 +1566,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:51Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:50:10Z","backupId":"04669933-8248-d4c2-059b-441886d9598e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:40:21 GMT + - Wed, 16 Mar 2022 08:50:39 GMT expires: - '-1' pragma: @@ -1679,10 +1589,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1704,21 +1610,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:51Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:50:10Z","backupId":"04669933-8248-d4c2-059b-441886d9598e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:40:23 GMT + - Wed, 16 Mar 2022 08:50:41 GMT expires: - '-1' pragma: @@ -1752,21 +1658,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:51Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:50:10Z","backupId":"04669933-8248-d4c2-059b-441886d9598e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:41:24 GMT + - Wed, 16 Mar 2022 08:51:42 GMT expires: - '-1' pragma: @@ -1800,21 +1706,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:51Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:50:10Z","backupId":"04669933-8248-d4c2-059b-441886d9598e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:42:26 GMT + - Wed, 16 Mar 2022 08:52:43 GMT expires: - '-1' pragma: @@ -1848,21 +1754,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:51Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:50:10Z","backupId":"04669933-8248-d4c2-059b-441886d9598e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:43:28 GMT + - Wed, 16 Mar 2022 08:53:44 GMT expires: - '-1' pragma: @@ -1896,21 +1802,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:51Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:50:13Z","backupId":"04669933-8248-d4c2-059b-441886d9598e","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:44:30 GMT + - Wed, 16 Mar 2022 08:54:45 GMT expires: - '-1' pragma: @@ -1938,27 +1844,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup show + - netappfiles volume backup list Connection: - keep-alive ParameterSetName: - - -g -a -p -v -b + - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:56Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + 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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:50:13Z","backupId":"04669933-8248-d4c2-059b-441886d9598e","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' headers: cache-control: - no-cache content-length: - - '798' + - '675' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:45:31 GMT + - Wed, 16 Mar 2022 08:54:47 GMT expires: - '-1' pragma: @@ -1979,107 +1885,107 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "southcentralusstage"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup list + - netappfiles volume backup create Connection: - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json ParameterSetName: - - -g -a -p -v + - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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=2021-08-01 + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:56Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e584f23-ed4e-495c-b111-7d8edd7481ad?api-version=2021-10-01 cache-control: - no-cache content-length: - - '810' + - '457' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:45:33 GMT + - Wed, 16 Mar 2022 08:54:48 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e584f23-ed4e-495c-b111-7d8edd7481ad?api-version=2021-10-01&operationResultResponseType=Location 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-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"location": "southcentralusstage"}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - netappfiles volume backup create Connection: - keep-alive - Content-Length: - - '35' - Content-Type: - - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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-000007?api-version=2021-08-01 + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e584f23-ed4e-495c-b111-7d8edd7481ad?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8e584f23-ed4e-495c-b111-7d8edd7481ad","name":"8e584f23-ed4e-495c-b111-7d8edd7481ad","status":"Succeeded","startTime":"2022-03-16T08:54:49.2676601Z","endTime":"2022-03-16T08:54:49.5265309Z","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-000007"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bff43e97-f8ef-449a-8c05-d777dbf6ae33?api-version=2021-08-01 cache-control: - no-cache content-length: - - '582' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:45:35 GMT + - Wed, 16 Mar 2022 08:55:18 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bff43e97-f8ef-449a-8c05-d777dbf6ae33?api-version=2021-08-01&operationResultResponseType=Location 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-ms-ratelimit-remaining-subscription-writes: - - '1198' x-powered-by: - ASP.NET status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2094,21 +2000,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bff43e97-f8ef-449a-8c05-d777dbf6ae33?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bff43e97-f8ef-449a-8c05-d777dbf6ae33","name":"bff43e97-f8ef-449a-8c05-d777dbf6ae33","status":"Succeeded","startTime":"2021-10-19T13:45:35.8153361Z","endTime":"2021-10-19T13:45:36.2119365Z","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-000007"}}' + 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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:54:49Z","backupId":"0388253c-dc40-d446-5c11-ff16d5cac820","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '693' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:46:05 GMT + - Wed, 16 Mar 2022 08:55:19 GMT expires: - '-1' pragma: @@ -2132,31 +2038,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup create + - netappfiles volume backup show Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --backup-name + - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:36Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:54:49Z","backupId":"0388253c-dc40-d446-5c11-ff16d5cac820","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:46:06 GMT + - Wed, 16 Mar 2022 08:55:20 GMT expires: - '-1' pragma: @@ -2190,21 +2096,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:36Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:54:49Z","backupId":"0388253c-dc40-d446-5c11-ff16d5cac820","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:46:07 GMT + - Wed, 16 Mar 2022 08:56:21 GMT expires: - '-1' pragma: @@ -2213,10 +2119,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2238,21 +2140,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:36Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:54:49Z","backupId":"0388253c-dc40-d446-5c11-ff16d5cac820","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:47:09 GMT + - Wed, 16 Mar 2022 08:57:23 GMT expires: - '-1' pragma: @@ -2286,21 +2188,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:36Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:54:49Z","backupId":"0388253c-dc40-d446-5c11-ff16d5cac820","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:48:09 GMT + - Wed, 16 Mar 2022 08:58:28 GMT expires: - '-1' pragma: @@ -2334,21 +2236,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:36Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:54:52Z","backupId":"0388253c-dc40-d446-5c11-ff16d5cac820","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:49:11 GMT + - Wed, 16 Mar 2022 08:59:30 GMT expires: - '-1' pragma: @@ -2376,27 +2278,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup show + - netappfiles volume backup list Connection: - keep-alive ParameterSetName: - - -g -a -p -v -b + - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:36Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + 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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:50:13Z","backupId":"04669933-8248-d4c2-059b-441886d9598e","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}},{"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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:54:52Z","backupId":"0388253c-dc40-d446-5c11-ff16d5cac820","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' headers: cache-control: - no-cache content-length: - - '792' + - '1339' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:50:13 GMT + - Wed, 16 Mar 2022 08:59:30 GMT expires: - '-1' pragma: @@ -2420,79 +2322,81 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup show + - netappfiles volume backup delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -a -p -v -b + - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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-000007?api-version=2021-08-01 + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: DELETE + 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=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:40Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01 cache-control: - no-cache content-length: - - '798' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 19 Oct 2021 13:51:15 GMT + - Wed, 16 Mar 2022 08:59:33 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01&operationResultResponseType=Location 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-ms-ratelimit-remaining-subscription-deletes: + - '14999' 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 backup list + - netappfiles volume backup delete Connection: - keep-alive ParameterSetName: - - -g -a -p -v + - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:39:56Z","backupId":"5cc89307-163f-4a07-5e0e-3ed6fc3d02bd","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}},{"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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:40Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","name":"4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","status":"Deleting","startTime":"2022-03-16T08:59:33.3637993Z","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/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '1609' + - '593' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:51:16 GMT + - Wed, 16 Mar 2022 09:00:03 GMT expires: - '-1' pragma: @@ -2523,45 +2427,43 @@ interactions: - netappfiles volume backup delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: DELETE - 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=2021-08-01 + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01 response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","name":"4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","status":"Deleting","startTime":"2022-03-16T08:59:33.3637993Z","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/backups/cli-backup-000005"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4?api-version=2021-08-01 cache-control: - no-cache content-length: - - '0' + - '593' + content-type: + - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:51:19 GMT + - Wed, 16 Mar 2022 09:00:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4?api-version=2021-08-01&operationResultResponseType=Location 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-ms-ratelimit-remaining-subscription-deletes: - - '14999' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2576,21 +2478,21 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4","name":"91d200db-f460-4584-9f82-d9e2d8a2efb4","status":"Deleting","startTime":"2021-10-19T13:51:20.1015667Z","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/backups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","name":"4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","status":"Deleting","startTime":"2022-03-16T08:59:33.3637993Z","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/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '682' + - '593' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:51:50 GMT + - Wed, 16 Mar 2022 09:01:04 GMT expires: - '-1' pragma: @@ -2624,21 +2526,21 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4","name":"91d200db-f460-4584-9f82-d9e2d8a2efb4","status":"Deleting","startTime":"2021-10-19T13:51:20.1015667Z","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/backups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","name":"4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","status":"Deleting","startTime":"2022-03-16T08:59:33.3637993Z","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/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '682' + - '593' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:52:20 GMT + - Wed, 16 Mar 2022 09:01:34 GMT expires: - '-1' pragma: @@ -2672,21 +2574,21 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4","name":"91d200db-f460-4584-9f82-d9e2d8a2efb4","status":"Deleting","startTime":"2021-10-19T13:51:20.1015667Z","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/backups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","name":"4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","status":"Deleting","startTime":"2022-03-16T08:59:33.3637993Z","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/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '682' + - '593' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:52:51 GMT + - Wed, 16 Mar 2022 09:02:04 GMT expires: - '-1' pragma: @@ -2720,21 +2622,21 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4","name":"91d200db-f460-4584-9f82-d9e2d8a2efb4","status":"Deleting","startTime":"2021-10-19T13:51:20.1015667Z","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/backups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","name":"4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","status":"Deleting","startTime":"2022-03-16T08:59:33.3637993Z","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/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '682' + - '593' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:53:21 GMT + - Wed, 16 Mar 2022 09:02:34 GMT expires: - '-1' pragma: @@ -2768,21 +2670,21 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4","name":"91d200db-f460-4584-9f82-d9e2d8a2efb4","status":"Deleting","startTime":"2021-10-19T13:51:20.1015667Z","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/backups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","name":"4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","status":"Deleting","startTime":"2022-03-16T08:59:33.3637993Z","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/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '682' + - '593' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:53:50 GMT + - Wed, 16 Mar 2022 09:03:04 GMT expires: - '-1' pragma: @@ -2816,21 +2718,21 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91d200db-f460-4584-9f82-d9e2d8a2efb4","name":"91d200db-f460-4584-9f82-d9e2d8a2efb4","status":"Succeeded","startTime":"2021-10-19T13:51:20.1015667Z","endTime":"2021-10-19T13:54:17.4270059Z","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/4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","name":"4b2a0541-f4d2-4f17-91f7-dae9b5cf5391","status":"Succeeded","startTime":"2022-03-16T08:59:33.3637993Z","endTime":"2022-03-16T09:03:33.8046248Z","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"}}' headers: cache-control: - no-cache content-length: - - '693' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:54:21 GMT + - Wed, 16 Mar 2022 09:03:35 GMT expires: - '-1' pragma: @@ -2864,21 +2766,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:45:40Z","backupId":"76a0f310-c78c-38bd-ca34-d5a167bb86c5","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' + 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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:54:52Z","backupId":"0388253c-dc40-d446-5c11-ff16d5cac820","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' headers: cache-control: - no-cache content-length: - - '810' + - '675' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:54:23 GMT + - Wed, 16 Mar 2022 09:03:36 GMT expires: - '-1' pragma: @@ -2912,21 +2814,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:54:25 GMT + - Wed, 16 Mar 2022 09:03:36 GMT expires: - '-1' pragma: @@ -2935,10 +2837,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2960,23 +2858,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A39%3A24.8236454Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a876b762","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T08%3A49%3A41.965877Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:45:24.3754712Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"08393230-86db-afcc-261f-8b994c7d46e9","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6eb3c617","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"08393230-86db-afcc-261f-8b994c7d46e9","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2331' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:54:27 GMT + - Wed, 16 Mar 2022 09:03:37 GMT etag: - - W/"datetime'2021-10-19T13%3A39%3A24.8236454Z'" + - W/"datetime'2022-03-16T08%3A49%3A41.965877Z'" expires: - '-1' pragma: @@ -2985,10 +2883,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2997,9 +2891,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T08:45:24.3754712Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": false}}}}' headers: Accept: @@ -3011,35 +2905,35 @@ interactions: Connection: - keep-alive Content-Length: - - '420' + - '428' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A54%3A33.9134238Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a876b762","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A03%3A40.5067183Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:45:24.3754712Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6eb3c617","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"08393230-86db-afcc-261f-8b994c7d46e9","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b57a5e8-6785-49ab-81c3-a29b10877355?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1df2b121-8399-400d-9873-a35f31cae9c1?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2458' + - '2331' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:54:33 GMT + - Wed, 16 Mar 2022 09:03:40 GMT etag: - - W/"datetime'2021-10-19T13%3A54%3A33.9134238Z'" + - W/"datetime'2022-03-16T09%3A03%3A40.5067183Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b57a5e8-6785-49ab-81c3-a29b10877355?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1df2b121-8399-400d-9873-a35f31cae9c1?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -3049,7 +2943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' x-powered-by: - ASP.NET status: @@ -3069,21 +2963,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b57a5e8-6785-49ab-81c3-a29b10877355?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1df2b121-8399-400d-9873-a35f31cae9c1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b57a5e8-6785-49ab-81c3-a29b10877355","name":"0b57a5e8-6785-49ab-81c3-a29b10877355","status":"Succeeded","startTime":"2021-10-19T13:54:33.9163211Z","endTime":"2021-10-19T13:54:46.0215794Z","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/1df2b121-8399-400d-9873-a35f31cae9c1","name":"1df2b121-8399-400d-9873-a35f31cae9c1","status":"Succeeded","startTime":"2022-03-16T09:03:40.5165031Z","endTime":"2022-03-16T09:03:45.5399151Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:55:03 GMT + - Wed, 16 Mar 2022 09:04:10 GMT expires: - '-1' pragma: @@ -3092,10 +2986,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -3117,23 +3007,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T13%3A54%3A46.0169581Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a876b762","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","fileSystemId":"83324e88-8fa1-9f59-a2fb-89e49bfe5036","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A03%3A45.5306588Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:45:24.3754712Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"08393230-86db-afcc-261f-8b994c7d46e9","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6eb3c617","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"08393230-86db-afcc-261f-8b994c7d46e9","fileSystemId":"08393230-86db-afcc-261f-8b994c7d46e9","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2460' + - '2333' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:55:04 GMT + - Wed, 16 Mar 2022 09:04:11 GMT etag: - - W/"datetime'2021-10-19T13%3A54%3A46.0169581Z'" + - W/"datetime'2022-03-16T09%3A03%3A45.5306588Z'" expires: - '-1' pragma: @@ -3142,10 +3032,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 9894028507e..73d30d91e94 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 @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A35%3A35.1235996Z''\"","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A31%3A43.9248664Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:31:39.9339787Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:31:43.1901188Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:31:43.1901188Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78b57e7d-2e18-41aa-b6ae-1ce19695a445?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c8dab740-44bb-4b80-a065-e200853e62f0?api-version=2021-10-01 cache-control: - no-cache content-length: - - '422' + - '702' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:35:35 GMT + - Tue, 15 Mar 2022 11:31:45 GMT etag: - - W/"datetime'2021-10-20T08%3A35%3A35.1235996Z'" + - W/"datetime'2022-03-15T11%3A31%3A43.9248664Z'" expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78b57e7d-2e18-41aa-b6ae-1ce19695a445?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c8dab740-44bb-4b80-a065-e200853e62f0?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/78b57e7d-2e18-41aa-b6ae-1ce19695a445","name":"78b57e7d-2e18-41aa-b6ae-1ce19695a445","status":"Succeeded","startTime":"2021-10-20T08:35:35.1295126Z","endTime":"2021-10-20T08:35:35.1706684Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c8dab740-44bb-4b80-a065-e200853e62f0","name":"c8dab740-44bb-4b80-a065-e200853e62f0","status":"Succeeded","startTime":"2022-03-15T11:31:43.9219057Z","endTime":"2022-03-15T11:31:43.9844794Z","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' + - '536' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:36:05 GMT + - Tue, 15 Mar 2022 11:32:15 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A35%3A35.1672412Z''\"","location":"eastus2euap","properties":{"activeDirectories":[{"activeDirectoryId":"07f0c290-65d4-f42b-f996-3adf389c0b0e","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.12.3.4","status":"Created","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A31%3A43.9896602Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:31:39.9339787Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"ce84edd3-4475-9dc9-1818-763d9c54b8cc","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.34.0.4","status":"InUse","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","kdcIP":"10.34.0.4","adName":"ANFReg.netapp.com","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:31:43.1901188Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:31:43.1901188Z"}}' headers: cache-control: - no-cache content-length: - - '852' + - '1200' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:36:06 GMT + - Tue, 15 Mar 2022 11:32:15 GMT etag: - - W/"datetime'2021-10-20T08%3A35%3A35.1672412Z'" + - W/"datetime'2022-03-15T11%3A31%3A43.9896602Z'" expires: - '-1' pragma: @@ -172,25 +172,25 @@ interactions: - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups --enabled --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A36%3A18.3569171Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A32%3A22.3769194Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T11:32:16.9303640Z"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:21.7553033Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:21.7553033Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4c2269b3-00f7-4ec3-a0bc-072b6755af63?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6b64a574-a4fc-4360-85d2-eac1ec8dfbb9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '614' + - '887' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:36:19 GMT + - Tue, 15 Mar 2022 11:32:23 GMT etag: - - W/"datetime'2021-10-20T08%3A36%3A18.3569171Z'" + - W/"datetime'2022-03-15T11%3A32%3A22.3769194Z'" expires: - '-1' pragma: @@ -223,21 +223,21 @@ interactions: - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups --enabled --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4c2269b3-00f7-4ec3-a0bc-072b6755af63?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6b64a574-a4fc-4360-85d2-eac1ec8dfbb9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4c2269b3-00f7-4ec3-a0bc-072b6755af63","name":"4c2269b3-00f7-4ec3-a0bc-072b6755af63","status":"Succeeded","startTime":"2021-10-20T08:36:18.3735563Z","endTime":"2021-10-20T08:36:18.592229Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6b64a574-a4fc-4360-85d2-eac1ec8dfbb9","name":"6b64a574-a4fc-4360-85d2-eac1ec8dfbb9","status":"Succeeded","startTime":"2022-03-15T11:32:22.3710702Z","endTime":"2022-03-15T11:32:22.8241263Z","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: - - '611' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:36:50 GMT + - Tue, 15 Mar 2022 11:32:53 GMT expires: - '-1' pragma: @@ -272,23 +272,23 @@ interactions: - -g -a --backup-policy-name --location --daily-backups --weekly-backups --monthly-backups --enabled --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A36%3A18.5868919Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"cbc15ea6-3180-11ec-834a-dae65d27892c","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A32%3A22.8222696Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T11:32:16.9303640Z"},"properties":{"enabled":true,"backupPolicyId":"94d84a28-a453-11ec-9f49-02322dfd4404","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:21.7553033Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:21.7553033Z"}}' headers: cache-control: - no-cache content-length: - - '671' + - '964' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:36:50 GMT + - Tue, 15 Mar 2022 11:32:54 GMT etag: - - W/"datetime'2021-10-20T08%3A36%3A18.5868919Z'" + - W/"datetime'2022-03-15T11%3A32%3A22.8222696Z'" expires: - '-1' pragma: @@ -322,21 +322,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A36%3A18.5868919Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"cbc15ea6-3180-11ec-834a-dae65d27892c","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Succeeded"}}]}' + 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''2022-03-15T11%3A32%3A22.8222696Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T11:32:16.9303640Z"},"properties":{"enabled":true,"backupPolicyId":"94d84a28-a453-11ec-9f49-02322dfd4404","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:21.7553033Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:21.7553033Z"}}]}' headers: cache-control: - no-cache content-length: - - '683' + - '976' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:36:51 GMT + - Tue, 15 Mar 2022 11:32:55 GMT expires: - '-1' pragma: @@ -345,10 +345,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -372,25 +368,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/150d2528-cf18-48be-affa-94a3a1037f64?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 08:36:54 GMT + - Tue, 15 Mar 2022 11:32:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/150d2528-cf18-48be-affa-94a3a1037f64?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -400,7 +396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -420,213 +416,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118","name":"cc621b9c-42ec-4c7c-931d-c9a29658b118","status":"Deleting","startTime":"2021-10-20T08:36:54.3322343Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.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: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 08:37:24 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 - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/150d2528-cf18-48be-affa-94a3a1037f64?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118","name":"cc621b9c-42ec-4c7c-931d-c9a29658b118","status":"Deleting","startTime":"2021-10-20T08:36:54.3322343Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/150d2528-cf18-48be-affa-94a3a1037f64","name":"150d2528-cf18-48be-affa-94a3a1037f64","status":"Succeeded","startTime":"2022-03-15T11:32:57.5580623Z","endTime":"2022-03-15T11:32:57.9018141Z","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: - - '601' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:37:54 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 - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118","name":"cc621b9c-42ec-4c7c-931d-c9a29658b118","status":"Deleting","startTime":"2021-10-20T08:36:54.3322343Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.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: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 08:38:24 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 - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118","name":"cc621b9c-42ec-4c7c-931d-c9a29658b118","status":"Deleting","startTime":"2021-10-20T08:36:54.3322343Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.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: - - '601' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 08:38:54 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 - ParameterSetName: - - -g -a --backup-policy-name - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/cc621b9c-42ec-4c7c-931d-c9a29658b118","name":"cc621b9c-42ec-4c7c-931d-c9a29658b118","status":"Succeeded","startTime":"2021-10-20T08:36:54.3322343Z","endTime":"2021-10-20T08:39:18.1732319Z","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: - - Wed, 20 Oct 2021 08:39:24 GMT + - Tue, 15 Mar 2022 11:33:27 GMT expires: - '-1' pragma: @@ -666,25 +470,25 @@ interactions: ParameterSetName: - -g -a -b -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A39%3A33.8320179Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A33%3A32.4449242Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T11:33:29.5387890Z"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:33:31.8432306Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:31.8432306Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4ff4bc96-0083-4a2b-8b95-64dc31de2a63?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/d3590c36-2e29-46d8-a6ef-9dece33f9304?api-version=2021-10-01 cache-control: - no-cache content-length: - - '614' + - '887' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:39:35 GMT + - Tue, 15 Mar 2022 11:33:33 GMT etag: - - W/"datetime'2021-10-20T08%3A39%3A33.8320179Z'" + - W/"datetime'2022-03-15T11%3A33%3A32.4449242Z'" expires: - '-1' pragma: @@ -696,7 +500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -716,21 +520,21 @@ interactions: ParameterSetName: - -g -a -b -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4ff4bc96-0083-4a2b-8b95-64dc31de2a63?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/d3590c36-2e29-46d8-a6ef-9dece33f9304?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4ff4bc96-0083-4a2b-8b95-64dc31de2a63","name":"4ff4bc96-0083-4a2b-8b95-64dc31de2a63","status":"Succeeded","startTime":"2021-10-20T08:39:33.8414673Z","endTime":"2021-10-20T08:39:33.8964661Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/d3590c36-2e29-46d8-a6ef-9dece33f9304","name":"d3590c36-2e29-46d8-a6ef-9dece33f9304","status":"Succeeded","startTime":"2022-03-15T11:33:32.4456317Z","endTime":"2022-03-15T11:33:32.5549991Z","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' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:40:05 GMT + - Tue, 15 Mar 2022 11:34:03 GMT expires: - '-1' pragma: @@ -739,10 +543,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -764,23 +564,23 @@ interactions: ParameterSetName: - -g -a -b -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A39%3A33.8878482Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2"},"properties":{"enabled":true,"backupPolicyId":"3dfebe27-3181-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A33%3A32.535101Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T11:33:29.5387890Z"},"properties":{"enabled":true,"backupPolicyId":"be65811a-a453-11ec-9f49-02322dfd4404","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:33:31.8432306Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:31.8432306Z"}}' headers: cache-control: - no-cache content-length: - - '671' + - '963' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:40:05 GMT + - Tue, 15 Mar 2022 11:34:03 GMT etag: - - W/"datetime'2021-10-20T08%3A39%3A33.8878482Z'" + - W/"datetime'2022-03-15T11%3A33%3A32.535101Z'" expires: - '-1' pragma: @@ -789,10 +589,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -816,25 +612,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8e61cb16-501b-4edf-8a53-9bb85a09ad6b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3fed9a3c-ae5f-4f7d-9966-1cf969d10442?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 08:40:08 GMT + - Tue, 15 Mar 2022 11:34:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8e61cb16-501b-4edf-8a53-9bb85a09ad6b?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3fed9a3c-ae5f-4f7d-9966-1cf969d10442?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -864,21 +660,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8e61cb16-501b-4edf-8a53-9bb85a09ad6b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3fed9a3c-ae5f-4f7d-9966-1cf969d10442?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/8e61cb16-501b-4edf-8a53-9bb85a09ad6b","name":"8e61cb16-501b-4edf-8a53-9bb85a09ad6b","status":"Succeeded","startTime":"2021-10-20T08:40:09.559194Z","endTime":"2021-10-20T08:40:09.9658579Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/3fed9a3c-ae5f-4f7d-9966-1cf969d10442","name":"3fed9a3c-ae5f-4f7d-9966-1cf969d10442","status":"Succeeded","startTime":"2022-03-15T11:34:09.6465229Z","endTime":"2022-03-15T11:34:09.9121427Z","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: - - '611' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:40:39 GMT + - Tue, 15 Mar 2022 11:34:45 GMT expires: - '-1' pragma: @@ -887,10 +683,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -912,9 +704,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-01 response: body: string: '{"value":[]}' @@ -926,7 +718,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:40:41 GMT + - Tue, 15 Mar 2022 11:34:47 GMT expires: - '-1' pragma: @@ -935,10 +727,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 b1b64a3c856..3ac993b66d9 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_pool.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A29%3A33.3221225Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:29:28.6030807Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:29:32.4878349Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:29:32.4878349Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A55%3A58.4745093Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:55:52.8725440Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:55:57.6329536Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:55:57.6329536Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/be07a04c-f707-41b3-881a-39b14007a431?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f14414b8-7bc3-4534-bb4b-06282fe7bbec?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:29:34 GMT + - Tue, 15 Mar 2022 10:55:59 GMT etag: - - W/"datetime'2022-01-07T08%3A29%3A33.3221225Z'" + - W/"datetime'2022-03-15T10%3A55%3A58.4745093Z'" expires: - '-1' pragma: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/be07a04c-f707-41b3-881a-39b14007a431?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f14414b8-7bc3-4534-bb4b-06282fe7bbec?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/be07a04c-f707-41b3-881a-39b14007a431","name":"be07a04c-f707-41b3-881a-39b14007a431","status":"Succeeded","startTime":"2022-01-07T08:29:33.328402Z","endTime":"2022-01-07T08:29:33.3633996Z","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/southcentralusstage/operationResults/f14414b8-7bc3-4534-bb4b-06282fe7bbec","name":"f14414b8-7bc3-4534-bb4b-06282fe7bbec","status":"Succeeded","startTime":"2022-03-15T10:55:58.4656491Z","endTime":"2022-03-15T10:55:58.4969021Z","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: cache-control: - no-cache content-length: - - '534' + - '535' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:30:05 GMT + - Tue, 15 Mar 2022 10:56:29 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A29%3A33.3542443Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:29:28.6030807Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:29:32.4878349Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:29:32.4878349Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A55%3A58.4986182Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:55:52.8725440Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:55:57.6329536Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:55:57.6329536Z"}}' headers: cache-control: - no-cache content-length: - - '1145' + - '1166' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:30:05 GMT + - Tue, 15 Mar 2022 10:56:29 GMT etag: - - W/"datetime'2022-01-07T08%3A29%3A33.3542443Z'" + - W/"datetime'2022-03-15T10%3A55%3A58.4986182Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -170,25 +162,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A30%3A13.2433783Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T08:30:06.3151639Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:30:12.283057Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:30:12.283057Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A34.4238502Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:56:30.9531443Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:33.4393098Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:33.4393098Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/691e78cf-a41e-40e2-b8f3-08c685ae7dd4?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/46e4fe24-b317-4955-acd9-c4327d37abe9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '894' + - '896' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:30:14 GMT + - Tue, 15 Mar 2022 10:56:35 GMT etag: - - W/"datetime'2022-01-07T08%3A30%3A13.2433783Z'" + - W/"datetime'2022-03-15T10%3A56%3A34.4238502Z'" expires: - '-1' pragma: @@ -200,7 +192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -220,12 +212,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/691e78cf-a41e-40e2-b8f3-08c685ae7dd4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/46e4fe24-b317-4955-acd9-c4327d37abe9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/691e78cf-a41e-40e2-b8f3-08c685ae7dd4","name":"691e78cf-a41e-40e2-b8f3-08c685ae7dd4","status":"Succeeded","startTime":"2022-01-07T08:30:13.2829234Z","endTime":"2022-01-07T08:30:13.5824882Z","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/southcentralusstage/operationResults/46e4fe24-b317-4955-acd9-c4327d37abe9","name":"46e4fe24-b317-4955-acd9-c4327d37abe9","status":"Succeeded","startTime":"2022-03-15T10:56:34.4231162Z","endTime":"2022-03-15T10:56:34.8293816Z","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: cache-control: - no-cache @@ -234,7 +226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:30:44 GMT + - Tue, 15 Mar 2022 10:57:05 GMT expires: - '-1' pragma: @@ -268,23 +260,23 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A30%3A13.5745245Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T08:30:06.3151639Z"},"properties":{"poolId":"98c30e68-a71b-6386-06f8-753cbb564994","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A56%3A34.8255873Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:56:30.9531443Z"},"properties":{"poolId":"8fea8258-e21c-2d14-bd35-7d324324bc0e","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '733' + - '731' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:30:44 GMT + - Tue, 15 Mar 2022 10:57:06 GMT etag: - - W/"datetime'2022-01-07T08%3A30%3A13.5745245Z'" + - W/"datetime'2022-03-15T10%3A56%3A34.8255873Z'" expires: - '-1' pragma: @@ -318,21 +310,21 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A30%3A13.5745245Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T08:30:06.3151639Z"},"properties":{"poolId":"98c30e68-a71b-6386-06f8-753cbb564994","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A56%3A34.8255873Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:56:30.9531443Z"},"properties":{"poolId":"8fea8258-e21c-2d14-bd35-7d324324bc0e","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '745' + - '743' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:30:45 GMT + - Tue, 15 Mar 2022 10:57:07 GMT expires: - '-1' pragma: @@ -341,10 +333,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -368,25 +356,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/19c682fb-63e1-473d-a285-3f1bda31ea89?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e3d0be6d-0ee8-4646-8e66-1440906b33be?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 08:30:48 GMT + - Tue, 15 Mar 2022 10:57:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/19c682fb-63e1-473d-a285-3f1bda31ea89?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e3d0be6d-0ee8-4646-8e66-1440906b33be?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -396,7 +384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -416,12 +404,12 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/19c682fb-63e1-473d-a285-3f1bda31ea89?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e3d0be6d-0ee8-4646-8e66-1440906b33be?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/19c682fb-63e1-473d-a285-3f1bda31ea89","name":"19c682fb-63e1-473d-a285-3f1bda31ea89","status":"Succeeded","startTime":"2022-01-07T08:30:49.3140855Z","endTime":"2022-01-07T08:30:51.0844144Z","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/southcentralusstage/operationResults/e3d0be6d-0ee8-4646-8e66-1440906b33be","name":"e3d0be6d-0ee8-4646-8e66-1440906b33be","status":"Succeeded","startTime":"2022-03-15T10:57:09.3532192Z","endTime":"2022-03-15T10:57:11.0785697Z","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: cache-control: - no-cache @@ -430,7 +418,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:31:19 GMT + - Tue, 15 Mar 2022 10:57:39 GMT expires: - '-1' pragma: @@ -464,9 +452,9 @@ interactions: ParameterSetName: - --resource-group --account-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2021-10-01 response: body: string: '{"value":[]}' @@ -478,7 +466,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:31:21 GMT + - Tue, 15 Mar 2022 10:57:40 GMT expires: - '-1' pragma: @@ -517,15 +505,15 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A31%3A26.8219057Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T08:31:21.8732215Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:31:26.4718713Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:31:26.4718713Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A57%3A56.6444227Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:57:43.2370646Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:57:54.9491995Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:57:54.9491995Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6aae864b-f647-4dee-ad9f-10a68064782c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a97b37b6-419e-4acf-8f4f-43b552585ab7?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -533,9 +521,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:31:27 GMT + - Tue, 15 Mar 2022 10:57:59 GMT etag: - - W/"datetime'2022-01-07T08%3A31%3A26.8219057Z'" + - W/"datetime'2022-03-15T10%3A57%3A56.6444227Z'" expires: - '-1' pragma: @@ -547,7 +535,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -567,12 +555,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6aae864b-f647-4dee-ad9f-10a68064782c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a97b37b6-419e-4acf-8f4f-43b552585ab7?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6aae864b-f647-4dee-ad9f-10a68064782c","name":"6aae864b-f647-4dee-ad9f-10a68064782c","status":"Succeeded","startTime":"2022-01-07T08:31:26.8261223Z","endTime":"2022-01-07T08:31:26.9791071Z","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/southcentralusstage/operationResults/a97b37b6-419e-4acf-8f4f-43b552585ab7","name":"a97b37b6-419e-4acf-8f4f-43b552585ab7","status":"Succeeded","startTime":"2022-03-15T10:57:56.6363835Z","endTime":"2022-03-15T10:57:56.8238588Z","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: cache-control: - no-cache @@ -581,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:31:57 GMT + - Tue, 15 Mar 2022 10:58:32 GMT expires: - '-1' pragma: @@ -590,10 +578,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -615,23 +599,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A31%3A26.9700326Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T08:31:21.8732215Z"},"properties":{"poolId":"bb2ebcb0-5a67-3dc2-0ba8-15f3d343039f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A57%3A56.8181378Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:57:43.2370646Z"},"properties":{"poolId":"1f9f2c3f-5e29-9261-aa1b-b7db6aac009a","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '733' + - '731' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:31:57 GMT + - Tue, 15 Mar 2022 10:58:32 GMT etag: - - W/"datetime'2022-01-07T08%3A31%3A26.9700326Z'" + - W/"datetime'2022-03-15T10%3A57%3A56.8181378Z'" expires: - '-1' pragma: @@ -640,10 +624,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -667,25 +647,25 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61b02a6b-bb7a-4443-a238-1b2a2963d05e?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1be6dd74-e346-4be0-8ec2-304b7c4ca74e?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 08:32:00 GMT + - Tue, 15 Mar 2022 10:58:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61b02a6b-bb7a-4443-a238-1b2a2963d05e?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1be6dd74-e346-4be0-8ec2-304b7c4ca74e?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -695,7 +675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -715,21 +695,21 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61b02a6b-bb7a-4443-a238-1b2a2963d05e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1be6dd74-e346-4be0-8ec2-304b7c4ca74e?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61b02a6b-bb7a-4443-a238-1b2a2963d05e","name":"61b02a6b-bb7a-4443-a238-1b2a2963d05e","status":"Succeeded","startTime":"2022-01-07T08:32:00.5858863Z","endTime":"2022-01-07T08:32:02.2823136Z","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/southcentralusstage/operationResults/1be6dd74-e346-4be0-8ec2-304b7c4ca74e","name":"1be6dd74-e346-4be0-8ec2-304b7c4ca74e","status":"Succeeded","startTime":"2022-03-15T10:58:34.024101Z","endTime":"2022-03-15T10:58:35.8679363Z","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: cache-control: - no-cache content-length: - - '565' + - '564' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:32:30 GMT + - Tue, 15 Mar 2022 10:59:03 GMT expires: - '-1' pragma: @@ -738,10 +718,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -763,9 +739,9 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools?api-version=2021-10-01 response: body: string: '{"value":[]}' @@ -777,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:32:31 GMT + - Tue, 15 Mar 2022 10:59:05 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 2d71f92939f..c4f930dd767 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 @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T08%3A57%3A10.7224689Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:57:04.7938819Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:57:09.9768576Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:57:09.9768576Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A20%3A41.7203821Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:20:24.1708551Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:20:39.7741876Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:20:39.7741876Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db2b8a78-ec17-4e70-93f6-82f4fd5f2c53?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/85aaaade-ba54-4aa9-9daf-725efad817d8?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:57:11 GMT + - Tue, 15 Mar 2022 11:20:50 GMT etag: - - W/"datetime'2022-01-07T08%3A57%3A10.7224689Z'" + - W/"datetime'2022-03-15T11%3A20%3A41.7203821Z'" expires: - '-1' pragma: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db2b8a78-ec17-4e70-93f6-82f4fd5f2c53?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/85aaaade-ba54-4aa9-9daf-725efad817d8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db2b8a78-ec17-4e70-93f6-82f4fd5f2c53","name":"db2b8a78-ec17-4e70-93f6-82f4fd5f2c53","status":"Succeeded","startTime":"2022-01-07T08:57:10.7235946Z","endTime":"2022-01-07T08:57:10.7835973Z","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/southcentralusstage/operationResults/85aaaade-ba54-4aa9-9daf-725efad817d8","name":"85aaaade-ba54-4aa9-9daf-725efad817d8","status":"Succeeded","startTime":"2022-03-15T11:20:41.7191982Z","endTime":"2022-03-15T11:20:41.7504543Z","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: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:57:41 GMT + - Tue, 15 Mar 2022 11:21:21 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T08%3A57%3A10.7775433Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:57:04.7938819Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:57:09.9768576Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:57:09.9768576Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A20%3A41.7540018Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:20:24.1708551Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:20:39.7741876Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:20:39.7741876Z"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1177' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:57:42 GMT + - Tue, 15 Mar 2022 11:21:22 GMT etag: - - W/"datetime'2022-01-07T08%3A57%3A10.7775433Z'" + - W/"datetime'2022-03-15T11%3A20%3A41.7540018Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -176,15 +168,15 @@ interactions: --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T08%3A57%3A48.9733553Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:57:43.1703182Z"},"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"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:57:48.1294464Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:57:48.1294464Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A25.7467582Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:21:23.0091527Z"},"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"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:24.9798051Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:24.9798051Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44f652b0-3a58-4f4d-8a8a-a36acfb79871?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/925cef4c-d418-4607-9b7a-33943552d26c?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -192,9 +184,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:57:49 GMT + - Tue, 15 Mar 2022 11:21:26 GMT etag: - - W/"datetime'2022-01-07T08%3A57%3A48.9733553Z'" + - W/"datetime'2022-03-15T11%3A21%3A25.7467582Z'" expires: - '-1' pragma: @@ -206,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,12 +218,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T08%3A57%3A49.0298662Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:57:43.1703182Z"},"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":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:57:48.1294464Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:57:48.1294464Z","lastModifiedByType":"Application"}}]}' + 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''2022-03-15T11%3A21%3A25.7875467Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:21:23.0091527Z"},"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":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:24.9798051Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:24.9798051Z"}}]}' headers: cache-control: - no-cache @@ -240,7 +232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:57:51 GMT + - Tue, 15 Mar 2022 11:21:33 GMT expires: - '-1' pragma: @@ -249,10 +241,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -276,25 +264,25 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2f397595-dbdc-4448-b1df-da2506c54053?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/be219f06-01bc-4c4f-ab5d-ae05b9a6d4f3?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 08:57:54 GMT + - Tue, 15 Mar 2022 11:21:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2f397595-dbdc-4448-b1df-da2506c54053?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/be219f06-01bc-4c4f-ab5d-ae05b9a6d4f3?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -324,12 +312,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2f397595-dbdc-4448-b1df-da2506c54053?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/be219f06-01bc-4c4f-ab5d-ae05b9a6d4f3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2f397595-dbdc-4448-b1df-da2506c54053","name":"2f397595-dbdc-4448-b1df-da2506c54053","status":"Succeeded","startTime":"2022-01-07T08:57:55.2974344Z","endTime":"2022-01-07T08:57:55.3629241Z","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/southcentralusstage/operationResults/be219f06-01bc-4c4f-ab5d-ae05b9a6d4f3","name":"be219f06-01bc-4c4f-ab5d-ae05b9a6d4f3","status":"Succeeded","startTime":"2022-03-15T11:21:37.5724433Z","endTime":"2022-03-15T11:21:37.5880202Z","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: cache-control: - no-cache @@ -338,7 +326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:58:25 GMT + - Tue, 15 Mar 2022 11:22:07 GMT expires: - '-1' pragma: @@ -347,10 +335,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -382,15 +366,15 @@ interactions: --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T08%3A58%3A32.4692323Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:58:26.6768026Z"},"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"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:58:31.7231664Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:58:31.7231664Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A22%3A13.6505462Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:22:08.7185808Z"},"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"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:22:12.8930897Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:22:12.8930897Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d2efd02d-720b-4c38-9d9b-e4675591b0dc?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/af6e29c3-b0be-4b7a-96b6-0adf4fd7d2bc?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -398,9 +382,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:58:33 GMT + - Tue, 15 Mar 2022 11:22:14 GMT etag: - - W/"datetime'2022-01-07T08%3A58%3A32.4692323Z'" + - W/"datetime'2022-03-15T11%3A22%3A13.6505462Z'" expires: - '-1' pragma: @@ -412,7 +396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -434,25 +418,25 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/414ef76d-1d81-4f66-8a8d-20a8fae83ec3?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1febe62b-708f-4fa7-a5f2-a8eb6d4f6551?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 08:58:36 GMT + - Tue, 15 Mar 2022 11:22:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/414ef76d-1d81-4f66-8a8d-20a8fae83ec3?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1febe62b-708f-4fa7-a5f2-a8eb6d4f6551?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -482,21 +466,21 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/414ef76d-1d81-4f66-8a8d-20a8fae83ec3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1febe62b-708f-4fa7-a5f2-a8eb6d4f6551?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/414ef76d-1d81-4f66-8a8d-20a8fae83ec3","name":"414ef76d-1d81-4f66-8a8d-20a8fae83ec3","status":"Succeeded","startTime":"2022-01-07T08:58:36.7281316Z","endTime":"2022-01-07T08:58:36.763109Z","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/southcentralusstage/operationResults/1febe62b-708f-4fa7-a5f2-a8eb6d4f6551","name":"1febe62b-708f-4fa7-a5f2-a8eb6d4f6551","status":"Succeeded","startTime":"2022-03-15T11:22:18.4450612Z","endTime":"2022-03-15T11:22:18.4450612Z","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: cache-control: - no-cache content-length: - - '580' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:59:07 GMT + - Tue, 15 Mar 2022 11:22:48 GMT expires: - '-1' pragma: @@ -530,9 +514,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '{"value":[]}' @@ -544,7 +528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:59:08 GMT + - Tue, 15 Mar 2022 11:22: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 ff3d46e18ba..35891f467f6 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_snapshots.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"f0ecabdc-9d22-4b7c-8e5a-351b882b02ce\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"441cc6f2-cd9a-4067-932e-4e45fa9c30d9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:12:28.0576273Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:57:13.1346242Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"b24d149a-e9ff-4c67-adba-fbe1f23b6088\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78a541c4-53be-414b-9521-b0cec6a8003e\",\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9afff2ee-eb43-4862-b52e-5ab77d9e680b?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/363ef7d1-6437-43ce-808d-c1c82ea66c0d?api-version=2021-05-01 cache-control: - no-cache content-length: - - '779' + - '773' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:12:34 GMT + - Tue, 15 Mar 2022 11:57:19 GMT expires: - '-1' pragma: @@ -58,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 236da2bb-22c7-47db-b50d-fec7fca27564 + - ca73902d-80cc-48a5-bd28-7328dd290ba3 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -78,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9afff2ee-eb43-4862-b52e-5ab77d9e680b?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/363ef7d1-6437-43ce-808d-c1c82ea66c0d?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:12:37 GMT + - Tue, 15 Mar 2022 11:57:22 GMT expires: - '-1' pragma: @@ -109,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 180956f3-aa2f-4154-931f-acbac16092c0 + - 9178342c-a2ef-4e0d-8940-f19595def12b status: code: 200 message: OK @@ -127,17 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"4368b824-62ca-4215-8565-6f0c367ccbea\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d0e419a6-535e-4845-a357-d1867d854817\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:12:28.0576273Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:57:13.1346242Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b24d149a-e9ff-4c67-adba-fbe1f23b6088\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78a541c4-53be-414b-9521-b0cec6a8003e\",\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\": @@ -146,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:12:37 GMT + - Tue, 15 Mar 2022 11:57:22 GMT etag: - - W/"4368b824-62ca-4215-8565-6f0c367ccbea" + - W/"d0e419a6-535e-4845-a357-d1867d854817" expires: - '-1' pragma: @@ -169,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 958ee663-2751-45f1-a397-3bd199d608f1 + - c9043444-64f8-45db-ae50-d264932cc7c3 status: code: 200 message: OK @@ -187,17 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"4368b824-62ca-4215-8565-6f0c367ccbea\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d0e419a6-535e-4845-a357-d1867d854817\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:12:28.0576273Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:57:13.1346242Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b24d149a-e9ff-4c67-adba-fbe1f23b6088\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78a541c4-53be-414b-9521-b0cec6a8003e\",\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\": @@ -206,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:12:37 GMT + - Tue, 15 Mar 2022 11:57:22 GMT etag: - - W/"4368b824-62ca-4215-8565-6f0c367ccbea" + - W/"d0e419a6-535e-4845-a357-d1867d854817" expires: - '-1' pragma: @@ -222,20 +222,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4e74c8ff-a3fc-446b-9f55-db9dc2e836b9 + - f9ff7fd4-e916-49fe-af95-65ca3775b183 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T13:12:28.0576273Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T11:57:13.1346242Z"}, "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": @@ -252,33 +248,33 @@ interactions: Connection: - keep-alive Content-Length: - - '705' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"117cd93c-6b34-4f52-a6c3-6b26befc8bd7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8c901c9d-a443-4c81-82e7-5dbd281375da\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:12:28.0576273Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:57:13.1346242Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"b24d149a-e9ff-4c67-adba-fbe1f23b6088\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78a541c4-53be-414b-9521-b0cec6a8003e\",\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/\\\"117cd93c-6b34-4f52-a6c3-6b26befc8bd7\\\"\",\r\n + \ \"etag\": \"W/\\\"8c901c9d-a443-4c81-82e7-5dbd281375da\\\"\",\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/\\\"117cd93c-6b34-4f52-a6c3-6b26befc8bd7\\\"\",\r\n + \ \"etag\": \"W/\\\"8c901c9d-a443-4c81-82e7-5dbd281375da\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -293,15 +289,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4d8e7591-27cb-4db8-8650-1afbb2a21785?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/190ed86c-a48c-49c1-be1e-3292bed86452?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2277' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:12:38 GMT + - Tue, 15 Mar 2022 11:57:24 GMT expires: - '-1' pragma: @@ -311,16 +307,12 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92f25906-d30a-4303-b7fa-b0e4c932c68e + - 14b8144a-6a10-4eb9-b6a2-c8f47454aa22 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -338,9 +330,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4d8e7591-27cb-4db8-8650-1afbb2a21785?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/190ed86c-a48c-49c1-be1e-3292bed86452?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -352,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:12:42 GMT + - Tue, 15 Mar 2022 11:57:27 GMT expires: - '-1' pragma: @@ -362,14 +354,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - af20fcc3-2c80-43e9-b31d-241eeed273b4 + - 75333714-8693-43e9-9f43-720f23be1ec3 status: code: 200 message: OK @@ -387,27 +375,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"3f87fd1f-48f7-461b-bed2-b43b9db70d05\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d68e1e71-f2bb-4316-b54f-132b4537c32f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:12:28.0576273Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:57:13.1346242Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b24d149a-e9ff-4c67-adba-fbe1f23b6088\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78a541c4-53be-414b-9521-b0cec6a8003e\",\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/\\\"3f87fd1f-48f7-461b-bed2-b43b9db70d05\\\"\",\r\n + \ \"etag\": \"W/\\\"d68e1e71-f2bb-4316-b54f-132b4537c32f\\\"\",\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/\\\"3f87fd1f-48f7-461b-bed2-b43b9db70d05\\\"\",\r\n + \ \"etag\": \"W/\\\"d68e1e71-f2bb-4316-b54f-132b4537c32f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -422,13 +410,13 @@ interactions: cache-control: - no-cache content-length: - - '2279' + - '2273' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:12:42 GMT + - Tue, 15 Mar 2022 11:57:28 GMT etag: - - W/"3f87fd1f-48f7-461b-bed2-b43b9db70d05" + - W/"d68e1e71-f2bb-4316-b54f-132b4537c32f" expires: - '-1' pragma: @@ -438,14 +426,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2d4ad2b7-3ab8-4840-a50c-948bebf938bc + - 785aaaa8-2eb6-40be-a2b9-5705ad771259 status: code: 200 message: OK @@ -461,31 +445,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A12%3A50.014603Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:12:44.7636877Z"},"properties":{"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''2022-03-15T11%3A57%3A33.6127039Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:57:29.6726455Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e64c55a7-cdf3-480f-a613-1f20522ef36b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0947c4c-b512-4f97-a460-a1fb79cfa250?api-version=2021-10-01 cache-control: - no-cache content-length: - - '420' + - '415' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:12:50 GMT + - Tue, 15 Mar 2022 11:57:34 GMT etag: - - W/"datetime'2022-01-07T13%3A12%3A50.014603Z'" + - W/"datetime'2022-03-15T11%3A57%3A33.6127039Z'" expires: - '-1' pragma: @@ -497,7 +481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -517,21 +501,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e64c55a7-cdf3-480f-a613-1f20522ef36b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0947c4c-b512-4f97-a460-a1fb79cfa250?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e64c55a7-cdf3-480f-a613-1f20522ef36b","name":"e64c55a7-cdf3-480f-a613-1f20522ef36b","status":"Succeeded","startTime":"2022-01-07T13:12:50.0186984Z","endTime":"2022-01-07T13:12:50.0587311Z","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/southcentralusstage/operationResults/d0947c4c-b512-4f97-a460-a1fb79cfa250","name":"d0947c4c-b512-4f97-a460-a1fb79cfa250","status":"Succeeded","startTime":"2022-03-15T11:57:33.6192847Z","endTime":"2022-03-15T11:57:33.6642521Z","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: cache-control: - no-cache content-length: - - '533' + - '527' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:13:20 GMT + - Tue, 15 Mar 2022 11:58:05 GMT expires: - '-1' pragma: @@ -540,10 +524,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -565,23 +545,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A12%3A50.0516569Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:12:44.7636877Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T11%3A57%3A33.6514876Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:57:29.6726455Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '468' + - '462' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:13:20 GMT + - Tue, 15 Mar 2022 11:58:05 GMT etag: - - W/"datetime'2022-01-07T13%3A12%3A50.0516569Z'" + - W/"datetime'2022-03-15T11%3A57%3A33.6514876Z'" expires: - '-1' pragma: @@ -590,10 +570,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -614,31 +590,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A13%3A29.0242796Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:13:23.2016015Z"},"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''2022-03-15T11%3A58%3A12.7989517Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:58:08.0078974Z"},"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/southcentralusstage/operationResults/65813f82-b7f7-4466-8840-b46617422da0?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7db93b7b-4c26-4377-8fa9-9ae1767a9409?api-version=2021-10-01 cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:13:29 GMT + - Tue, 15 Mar 2022 11:58:13 GMT etag: - - W/"datetime'2022-01-07T13%3A13%3A29.0242796Z'" + - W/"datetime'2022-03-15T11%3A58%3A12.7989517Z'" expires: - '-1' pragma: @@ -670,21 +646,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/65813f82-b7f7-4466-8840-b46617422da0?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7db93b7b-4c26-4377-8fa9-9ae1767a9409?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/65813f82-b7f7-4466-8840-b46617422da0","name":"65813f82-b7f7-4466-8840-b46617422da0","status":"Succeeded","startTime":"2022-01-07T13:13:29.0313494Z","endTime":"2022-01-07T13:13:29.5170022Z","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/southcentralusstage/operationResults/7db93b7b-4c26-4377-8fa9-9ae1767a9409","name":"7db93b7b-4c26-4377-8fa9-9ae1767a9409","status":"Succeeded","startTime":"2022-03-15T11:58:12.8054532Z","endTime":"2022-03-15T11:58:12.9400595Z","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: cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:13:59 GMT + - Tue, 15 Mar 2022 11:58:44 GMT expires: - '-1' pragma: @@ -718,23 +694,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A13%3A29.5121584Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:13:23.2016015Z"},"properties":{"poolId":"59ab3880-bc8c-a966-a690-3f4dce6dee21","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T11%3A58%3A12.9259234Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:58:08.0078974Z"},"properties":{"poolId":"fcb1674a-e7cb-3e20-1fd6-4905d3f24876","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '699' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:14:00 GMT + - Tue, 15 Mar 2022 11:58:44 GMT etag: - - W/"datetime'2022-01-07T13%3A13%3A29.5121584Z'" + - W/"datetime'2022-03-15T11%3A58%3A12.9259234Z'" expires: - '-1' pragma: @@ -756,7 +732,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -767,31 +744,31 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '372' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A14%3A07.7784452Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:14:02.3603472Z"},"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''2022-03-15T11%3A58%3A48.9294668Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:58:45.4097175Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 cache-control: - no-cache content-length: - - '820' + - '877' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:14:09 GMT + - Tue, 15 Mar 2022 11:58:50 GMT etag: - - W/"datetime'2022-01-07T13%3A14%3A07.7784452Z'" + - W/"datetime'2022-03-15T11%3A58%3A48.9294668Z'" expires: - '-1' pragma: @@ -803,7 +780,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -823,21 +800,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7","name":"752d8973-e239-4f71-b9b3-4ef96f93bdc7","status":"Creating","startTime":"2022-01-07T13:14:07.7839006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b","name":"98b78c92-0384-4732-b1f3-f6a9ff5dd24b","status":"Creating","startTime":"2022-03-15T11:58:48.936568Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:14:39 GMT + - Tue, 15 Mar 2022 11:59:20 GMT expires: - '-1' pragma: @@ -871,21 +848,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7","name":"752d8973-e239-4f71-b9b3-4ef96f93bdc7","status":"Creating","startTime":"2022-01-07T13:14:07.7839006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b","name":"98b78c92-0384-4732-b1f3-f6a9ff5dd24b","status":"Creating","startTime":"2022-03-15T11:58:48.936568Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:15:09 GMT + - Tue, 15 Mar 2022 11:59:50 GMT expires: - '-1' pragma: @@ -919,21 +896,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7","name":"752d8973-e239-4f71-b9b3-4ef96f93bdc7","status":"Creating","startTime":"2022-01-07T13:14:07.7839006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b","name":"98b78c92-0384-4732-b1f3-f6a9ff5dd24b","status":"Creating","startTime":"2022-03-15T11:58:48.936568Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:15:39 GMT + - Tue, 15 Mar 2022 12:00:20 GMT expires: - '-1' pragma: @@ -967,21 +944,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7","name":"752d8973-e239-4f71-b9b3-4ef96f93bdc7","status":"Creating","startTime":"2022-01-07T13:14:07.7839006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b","name":"98b78c92-0384-4732-b1f3-f6a9ff5dd24b","status":"Creating","startTime":"2022-03-15T11:58:48.936568Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:16:09 GMT + - Tue, 15 Mar 2022 12:00:50 GMT expires: - '-1' pragma: @@ -990,10 +967,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1015,21 +988,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7","name":"752d8973-e239-4f71-b9b3-4ef96f93bdc7","status":"Creating","startTime":"2022-01-07T13:14:07.7839006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b","name":"98b78c92-0384-4732-b1f3-f6a9ff5dd24b","status":"Creating","startTime":"2022-03-15T11:58:48.936568Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:16:39 GMT + - Tue, 15 Mar 2022 12:01:20 GMT expires: - '-1' pragma: @@ -1038,10 +1011,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1063,21 +1032,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7","name":"752d8973-e239-4f71-b9b3-4ef96f93bdc7","status":"Creating","startTime":"2022-01-07T13:14:07.7839006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b","name":"98b78c92-0384-4732-b1f3-f6a9ff5dd24b","status":"Creating","startTime":"2022-03-15T11:58:48.936568Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:17:09 GMT + - Tue, 15 Mar 2022 12:01:51 GMT expires: - '-1' pragma: @@ -1086,10 +1055,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1111,21 +1076,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7","name":"752d8973-e239-4f71-b9b3-4ef96f93bdc7","status":"Creating","startTime":"2022-01-07T13:14:07.7839006Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b","name":"98b78c92-0384-4732-b1f3-f6a9ff5dd24b","status":"Creating","startTime":"2022-03-15T11:58:48.936568Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:17:40 GMT + - Tue, 15 Mar 2022 12:02:22 GMT expires: - '-1' pragma: @@ -1134,10 +1099,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1159,21 +1120,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/752d8973-e239-4f71-b9b3-4ef96f93bdc7","name":"752d8973-e239-4f71-b9b3-4ef96f93bdc7","status":"Succeeded","startTime":"2022-01-07T13:14:07.7839006Z","endTime":"2022-01-07T13:17:41.2777258Z","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/southcentralusstage/operationResults/98b78c92-0384-4732-b1f3-f6a9ff5dd24b","name":"98b78c92-0384-4732-b1f3-f6a9ff5dd24b","status":"Succeeded","startTime":"2022-03-15T11:58:48.936568Z","endTime":"2022-03-15T12:02:44.8502201Z","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: cache-control: - no-cache content-length: - - '586' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:18:11 GMT + - Tue, 15 Mar 2022 12:02:52 GMT expires: - '-1' pragma: @@ -1182,10 +1143,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1207,23 +1164,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A17%3A41.2757851Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:14:02.3603472Z"},"properties":{"fileSystemId":"6b977702-a26c-d473-467e-9db8a0d2e4a3","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_9479cecb","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","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"6b977702-a26c-d473-467e-9db8a0d2e4a3","fileSystemId":"6b977702-a26c-d473-467e-9db8a0d2e4a3","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T12%3A02%3A44.8411525Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:58:45.4097175Z"},"properties":{"fileSystemId":"28f71522-f461-4ff2-de6c-1beb2e35ae8d","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_bddc9629","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","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"28f71522-f461-4ff2-de6c-1beb2e35ae8d","fileSystemId":"28f71522-f461-4ff2-de6c-1beb2e35ae8d","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2054' + - '2081' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:18:11 GMT + - Tue, 15 Mar 2022 12:02:52 GMT etag: - - W/"datetime'2022-01-07T13%3A17%3A41.2757851Z'" + - W/"datetime'2022-03-15T12%3A02%3A44.8411525Z'" expires: - '-1' pragma: @@ -1232,10 +1189,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1255,33 +1208,33 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7a181702-d61f-4f05-80f6-85017807c412?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db259909-1714-497a-a765-3eb9fb1905a6?api-version=2021-10-01 cache-control: - no-cache content-length: - - '461' + - '455' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:18:11 GMT + - Tue, 15 Mar 2022 12:02:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7a181702-d61f-4f05-80f6-85017807c412?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db259909-1714-497a-a765-3eb9fb1905a6?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1291,7 +1244,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1311,21 +1264,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7a181702-d61f-4f05-80f6-85017807c412?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db259909-1714-497a-a765-3eb9fb1905a6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7a181702-d61f-4f05-80f6-85017807c412","name":"7a181702-d61f-4f05-80f6-85017807c412","status":"Succeeded","startTime":"2022-01-07T13:18:12.6678665Z","endTime":"2022-01-07T13:18:14.6728094Z","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/southcentralusstage/operationResults/db259909-1714-497a-a765-3eb9fb1905a6","name":"db259909-1714-497a-a765-3eb9fb1905a6","status":"Succeeded","startTime":"2022-03-15T12:02:54.5337327Z","endTime":"2022-03-15T12:02:56.5556895Z","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: cache-control: - no-cache content-length: - - '610' + - '604' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:18:43 GMT + - Tue, 15 Mar 2022 12:03:24 GMT expires: - '-1' pragma: @@ -1359,21 +1312,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"5ee2ee22-896a-29bf-b93b-edc8f0157f01","created":"2022-01-07T13:18:13Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"500bab6c-4330-ce02-b183-d6f856aa05ab","created":"2022-03-15T12:02:54Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:18:43 GMT + - Tue, 15 Mar 2022 12:03:24 GMT expires: - '-1' pragma: @@ -1407,21 +1360,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"5ee2ee22-896a-29bf-b93b-edc8f0157f01","created":"2022-01-07T13:18:13Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"500bab6c-4330-ce02-b183-d6f856aa05ab","created":"2022-03-15T12:02:54Z"}}]}' headers: cache-control: - no-cache content-length: - - '559' + - '553' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:18:44 GMT + - Tue, 15 Mar 2022 12:03:26 GMT expires: - '-1' pragma: @@ -1457,25 +1410,25 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7316334a-f3da-40d0-be42-b67cb7a78c55?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49d227f3-1205-4120-8413-77550ef1442b?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 13:18:45 GMT + - Tue, 15 Mar 2022 12:03:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7316334a-f3da-40d0-be42-b67cb7a78c55?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49d227f3-1205-4120-8413-77550ef1442b?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1505,21 +1458,21 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7316334a-f3da-40d0-be42-b67cb7a78c55?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49d227f3-1205-4120-8413-77550ef1442b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7316334a-f3da-40d0-be42-b67cb7a78c55","name":"7316334a-f3da-40d0-be42-b67cb7a78c55","status":"Succeeded","startTime":"2022-01-07T13:18:45.8548036Z","endTime":"2022-01-07T13:18:47.8119995Z","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/southcentralusstage/operationResults/49d227f3-1205-4120-8413-77550ef1442b","name":"49d227f3-1205-4120-8413-77550ef1442b","status":"Succeeded","startTime":"2022-03-15T12:03:28.8442564Z","endTime":"2022-03-15T12:03:31.821243Z","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: cache-control: - no-cache content-length: - - '610' + - '603' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:19:15 GMT + - Tue, 15 Mar 2022 12:03:59 GMT expires: - '-1' pragma: @@ -1528,10 +1481,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1553,9 +1502,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2021-10-01 response: body: string: '{"value":[]}' @@ -1567,7 +1516,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:19:17 GMT + - Tue, 15 Mar 2022 12:04:00 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 b9780568aa9..e0f465f1593 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_delete_volumes.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": + body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '131' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"5f9f7a5d-2502-4f24-ae34-1ceddca6ed6a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:43:05.0703729Z\"\r\n + \ \"etag\": \"W/\\\"b0332fc6-d4e3-4904-be12-9dae8bfb1d83\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T13:58:56.7447709Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"793de883-d569-49e7-a57b-085d3d6b3168\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c3d99431-b7e5-4b6c-a71d-90a6ecf203e7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/abb3aee6-f4b4-499f-9275-10e04c272844?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f280c0b2-38fe-466b-811c-f6fd8565663a?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '776' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:10 GMT + - Fri, 18 Mar 2022 13:59:04 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2975dfff-d6fe-4462-b59d-4ffb72f6df8b + - feb687b4-55c5-46ab-99ec-f3de538b59bb x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -78,9 +78,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/abb3aee6-f4b4-499f-9275-10e04c272844?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f280c0b2-38fe-466b-811c-f6fd8565663a?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:13 GMT + - Fri, 18 Mar 2022 13:59:07 GMT expires: - '-1' pragma: @@ -109,10 +109,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e3770885-357f-437a-9e30-3e5e303d412e + - b623b58b-33dd-4ab7-ac19-8810f6f69d56 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -127,17 +127,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"0708ddac-62d0-49a0-b56e-c0d4c0eaf081\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:43:05.0703729Z\"\r\n + \ \"etag\": \"W/\\\"a1836cb2-fb4f-4f28-b59c-568107749ee9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T13:58:56.7447709Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"793de883-d569-49e7-a57b-085d3d6b3168\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c3d99431-b7e5-4b6c-a71d-90a6ecf203e7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -146,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '777' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:13 GMT + - Fri, 18 Mar 2022 13:59:07 GMT etag: - - W/"0708ddac-62d0-49a0-b56e-c0d4c0eaf081" + - W/"a1836cb2-fb4f-4f28-b59c-568107749ee9" expires: - '-1' pragma: @@ -169,10 +169,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 87005d90-f663-4069-985f-7902680a7407 + - b1d42349-e22b-4df7-ae34-11f14408374a status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -187,17 +187,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"0708ddac-62d0-49a0-b56e-c0d4c0eaf081\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:43:05.0703729Z\"\r\n + \ \"etag\": \"W/\\\"a1836cb2-fb4f-4f28-b59c-568107749ee9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T13:58:56.7447709Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"793de883-d569-49e7-a57b-085d3d6b3168\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c3d99431-b7e5-4b6c-a71d-90a6ecf203e7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -206,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '777' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:13 GMT + - Fri, 18 Mar 2022 13:59:07 GMT etag: - - W/"0708ddac-62d0-49a0-b56e-c0d4c0eaf081" + - W/"a1836cb2-fb4f-4f28-b59c-568107749ee9" expires: - '-1' pragma: @@ -229,13 +229,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ae3e1bac-47ff-4640-a70d-d10bd633a962 + - 3280af13-ce86-4949-ab5d-8c70b018e350 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T09:43:05.0703729Z"}, + "location": "southcentralus", "tags": {"CreatedOnDate": "2022-03-18T13:58:56.7447709Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -252,33 +252,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '702' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"63e13b1a-cfa8-4d45-a878-5b884b94780e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:43:05.0703729Z\"\r\n + \ \"etag\": \"W/\\\"3a51e95e-077d-4224-86de-c514302e3128\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T13:58:56.7447709Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"793de883-d569-49e7-a57b-085d3d6b3168\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c3d99431-b7e5-4b6c-a71d-90a6ecf203e7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"63e13b1a-cfa8-4d45-a878-5b884b94780e\\\"\",\r\n + \ \"etag\": \"W/\\\"3a51e95e-077d-4224-86de-c514302e3128\\\"\",\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/\\\"63e13b1a-cfa8-4d45-a878-5b884b94780e\\\"\",\r\n + \ \"etag\": \"W/\\\"3a51e95e-077d-4224-86de-c514302e3128\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -293,15 +293,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/c61b4232-2794-4988-824e-b31c17267a7c?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e687c32b-7baa-4a2d-a85d-a43d69283023?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2265' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:14 GMT + - Fri, 18 Mar 2022 13:59:09 GMT expires: - '-1' pragma: @@ -318,12 +318,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 251f9e34-7e68-4cb7-be21-953a87f1a0f6 + - 7516fb63-ff44-42dc-bfb0-f2d3cb53019b x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -338,9 +338,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/c61b4232-2794-4988-824e-b31c17267a7c?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e687c32b-7baa-4a2d-a85d-a43d69283023?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -352,7 +352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:18 GMT + - Fri, 18 Mar 2022 13:59:12 GMT expires: - '-1' pragma: @@ -369,10 +369,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 496ba53f-9545-4011-8ce2-2006c993f65e + - aa730a15-0d8c-4b3e-a89d-b5e523a068ec status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -387,27 +387,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"ac6e2e69-421f-4165-b4dc-42e0f10f1344\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:43:05.0703729Z\"\r\n + \ \"etag\": \"W/\\\"f53ee08f-d0ed-4b9e-9c87-605ef67cad70\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T13:58:56.7447709Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"793de883-d569-49e7-a57b-085d3d6b3168\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"c3d99431-b7e5-4b6c-a71d-90a6ecf203e7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"ac6e2e69-421f-4165-b4dc-42e0f10f1344\\\"\",\r\n + \ \"etag\": \"W/\\\"f53ee08f-d0ed-4b9e-9c87-605ef67cad70\\\"\",\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/\\\"ac6e2e69-421f-4165-b4dc-42e0f10f1344\\\"\",\r\n + \ \"etag\": \"W/\\\"f53ee08f-d0ed-4b9e-9c87-605ef67cad70\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -422,13 +422,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2267' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:18 GMT + - Fri, 18 Mar 2022 13:59:12 GMT etag: - - W/"ac6e2e69-421f-4165-b4dc-42e0f10f1344" + - W/"f53ee08f-d0ed-4b9e-9c87-605ef67cad70" expires: - '-1' pragma: @@ -445,10 +445,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a5b30d14-7488-4e39-add2-714c6dd6f563 + - 69712a92-fcf1-4ff8-b551-634a9e415377 status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -461,31 +461,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '35' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T09%3A43%3A24.225503Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:43:19.7661505Z"},"properties":{"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''2022-03-18T13%3A59%3A20.7765126Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-18T13:59:15.4598902Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-18T13:59:19.8579515Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-18T13:59:19.8579515Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cadbfc65-99cb-415c-95e4-5ddaa9e5b85e?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d1876439-430a-42b3-8ca2-310585df00ff?api-version=2021-10-01 cache-control: - no-cache content-length: - - '418' + - '703' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:25 GMT + - Fri, 18 Mar 2022 13:59:21 GMT etag: - - W/"datetime'2022-01-07T09%3A43%3A24.225503Z'" + - W/"datetime'2022-03-18T13%3A59%3A20.7765126Z'" expires: - '-1' pragma: @@ -497,7 +497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -517,21 +517,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cadbfc65-99cb-415c-95e4-5ddaa9e5b85e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d1876439-430a-42b3-8ca2-310585df00ff?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cadbfc65-99cb-415c-95e4-5ddaa9e5b85e","name":"cadbfc65-99cb-415c-95e4-5ddaa9e5b85e","status":"Succeeded","startTime":"2022-01-07T09:43:24.2268237Z","endTime":"2022-01-07T09:43:24.2568311Z","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/southcentralusstage/operationResults/d1876439-430a-42b3-8ca2-310585df00ff","name":"d1876439-430a-42b3-8ca2-310585df00ff","status":"Succeeded","startTime":"2022-03-18T13:59:20.7695825Z","endTime":"2022-03-18T13:59:20.8008557Z","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: cache-control: - no-cache content-length: - - '531' + - '537' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:55 GMT + - Fri, 18 Mar 2022 13:59:51 GMT expires: - '-1' pragma: @@ -565,23 +565,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T09%3A43%3A24.253107Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:43:19.7661505Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T13%3A59%3A20.8057813Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-18T13:59:15.4598902Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-18T13:59:19.8579515Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-18T13:59:19.8579515Z"}}' headers: cache-control: - no-cache content-length: - - '465' + - '1168' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:55 GMT + - Fri, 18 Mar 2022 13:59:51 GMT etag: - - W/"datetime'2022-01-07T09%3A43%3A24.253107Z'" + - W/"datetime'2022-03-18T13%3A59%3A20.8057813Z'" expires: - '-1' pragma: @@ -602,8 +602,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, - "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1", "Tag2": + "Value2"}, "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -614,31 +614,31 @@ interactions: Connection: - keep-alive Content-Length: - - '141' + - '147' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T09%3A43%3A58.5767011Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T09:43:56.6914664Z"},"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''2022-03-18T13%3A59%3A57.4328118Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-18T13:59:53.1671649Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-18T13:59:56.2690552Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-18T13:59:56.2690552Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f3ab0136-9820-4890-9b21-499ede3cb53f?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c11e9fd7-93e3-46ef-860a-67c679804a53?api-version=2021-10-01 cache-control: - no-cache content-length: - - '614' + - '898' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:43:59 GMT + - Fri, 18 Mar 2022 13:59:58 GMT etag: - - W/"datetime'2022-01-07T09%3A43%3A58.5767011Z'" + - W/"datetime'2022-03-18T13%3A59%3A57.4328118Z'" expires: - '-1' pragma: @@ -650,7 +650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -670,21 +670,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f3ab0136-9820-4890-9b21-499ede3cb53f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c11e9fd7-93e3-46ef-860a-67c679804a53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f3ab0136-9820-4890-9b21-499ede3cb53f","name":"f3ab0136-9820-4890-9b21-499ede3cb53f","status":"Succeeded","startTime":"2022-01-07T09:43:58.5804309Z","endTime":"2022-01-07T09:43:58.6888854Z","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/southcentralusstage/operationResults/c11e9fd7-93e3-46ef-860a-67c679804a53","name":"c11e9fd7-93e3-46ef-860a-67c679804a53","status":"Succeeded","startTime":"2022-03-18T13:59:57.4319752Z","endTime":"2022-03-18T13:59:57.7132605Z","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: cache-control: - no-cache content-length: - - '561' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:44:29 GMT + - Fri, 18 Mar 2022 14:00:29 GMT expires: - '-1' pragma: @@ -718,23 +718,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T09%3A43%3A58.6794592Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T09:43:56.6914664Z"},"properties":{"poolId":"790e818d-1c65-0b2b-0441-23834c47802f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-18T13%3A59%3A57.7126224Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-18T13:59:53.1671649Z"},"properties":{"poolId":"95a8f14a-c926-b201-511a-45e7a014276f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '729' + - '733' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:44:30 GMT + - Fri, 18 Mar 2022 14:00:29 GMT etag: - - W/"datetime'2022-01-07T09%3A43%3A58.6794592Z'" + - W/"datetime'2022-03-18T13%3A59%3A57.7126224Z'" expires: - '-1' pragma: @@ -755,10 +755,10 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1", "Tag2": "Value2"}, - "properties": {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", - "usageThreshold": 107374182400, "exportPolicy": {"rules": [{"ruleIndex": 1, - "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}, "protocolTypes": + body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1", "Tag2": + "Value2"}, "properties": {"creationToken": "cli-vol-000004", "serviceLevel": + "Premium", "usageThreshold": 107374182400, "exportPolicy": {"rules": [{"ruleIndex": + 1, "nfsv3": true, "nfsv41": false, "allowedClients": "0.0.0.0/0"}]}, "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' headers: Accept: @@ -770,7 +770,7 @@ interactions: Connection: - keep-alive Content-Length: - - '526' + - '532' Content-Type: - application/json ParameterSetName: @@ -778,25 +778,25 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T09%3A44%3A36.7256904Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T09:44:31.1167820Z"},"properties":{"serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false}]},"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''2022-03-18T14%3A00%3A34.6503392Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-18T14:00:30.4696201Z"},"properties":{"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}]},"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","maximumNumberOfFiles":100000000,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-18T14:00:32.2166032Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-18T14:00:32.2166032Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1178' + - '1507' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:44:37 GMT + - Fri, 18 Mar 2022 14:00:35 GMT etag: - - W/"datetime'2022-01-07T09%3A44%3A36.7256904Z'" + - W/"datetime'2022-03-18T14%3A00%3A34.6503392Z'" expires: - '-1' pragma: @@ -808,7 +808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -830,21 +830,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487","name":"47ca1ea3-9ce6-451e-a914-b91eee87a487","status":"Creating","startTime":"2022-01-07T09:44:36.7351991Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/64a3b0ff-465a-4aa3-b868-e33b25b48f48","name":"64a3b0ff-465a-4aa3-b868-e33b25b48f48","status":"Creating","startTime":"2022-03-18T14:00:34.6169785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:45:07 GMT + - Fri, 18 Mar 2022 14:01:05 GMT expires: - '-1' pragma: @@ -853,10 +853,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -880,21 +876,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487","name":"47ca1ea3-9ce6-451e-a914-b91eee87a487","status":"Creating","startTime":"2022-01-07T09:44:36.7351991Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/64a3b0ff-465a-4aa3-b868-e33b25b48f48","name":"64a3b0ff-465a-4aa3-b868-e33b25b48f48","status":"Creating","startTime":"2022-03-18T14:00:34.6169785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:45:38 GMT + - Fri, 18 Mar 2022 14:01:35 GMT expires: - '-1' pragma: @@ -903,10 +899,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -930,21 +922,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487","name":"47ca1ea3-9ce6-451e-a914-b91eee87a487","status":"Creating","startTime":"2022-01-07T09:44:36.7351991Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/64a3b0ff-465a-4aa3-b868-e33b25b48f48","name":"64a3b0ff-465a-4aa3-b868-e33b25b48f48","status":"Creating","startTime":"2022-03-18T14:00:34.6169785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:46:08 GMT + - Fri, 18 Mar 2022 14:02:07 GMT expires: - '-1' pragma: @@ -953,10 +945,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -980,21 +968,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487","name":"47ca1ea3-9ce6-451e-a914-b91eee87a487","status":"Creating","startTime":"2022-01-07T09:44:36.7351991Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/64a3b0ff-465a-4aa3-b868-e33b25b48f48","name":"64a3b0ff-465a-4aa3-b868-e33b25b48f48","status":"Creating","startTime":"2022-03-18T14:00:34.6169785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:46:38 GMT + - Fri, 18 Mar 2022 14:02:37 GMT expires: - '-1' pragma: @@ -1003,10 +991,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1030,21 +1014,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487","name":"47ca1ea3-9ce6-451e-a914-b91eee87a487","status":"Creating","startTime":"2022-01-07T09:44:36.7351991Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/64a3b0ff-465a-4aa3-b868-e33b25b48f48","name":"64a3b0ff-465a-4aa3-b868-e33b25b48f48","status":"Creating","startTime":"2022-03-18T14:00:34.6169785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:47:08 GMT + - Fri, 18 Mar 2022 14:03:07 GMT expires: - '-1' pragma: @@ -1053,10 +1037,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1080,21 +1060,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487","name":"47ca1ea3-9ce6-451e-a914-b91eee87a487","status":"Creating","startTime":"2022-01-07T09:44:36.7351991Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/64a3b0ff-465a-4aa3-b868-e33b25b48f48","name":"64a3b0ff-465a-4aa3-b868-e33b25b48f48","status":"Creating","startTime":"2022-03-18T14:00:34.6169785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:47:38 GMT + - Fri, 18 Mar 2022 14:03:37 GMT expires: - '-1' pragma: @@ -1103,10 +1083,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1130,21 +1106,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487","name":"47ca1ea3-9ce6-451e-a914-b91eee87a487","status":"Creating","startTime":"2022-01-07T09:44:36.7351991Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/64a3b0ff-465a-4aa3-b868-e33b25b48f48","name":"64a3b0ff-465a-4aa3-b868-e33b25b48f48","status":"Creating","startTime":"2022-03-18T14:00:34.6169785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:48:09 GMT + - Fri, 18 Mar 2022 14:04:07 GMT expires: - '-1' pragma: @@ -1153,10 +1129,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1180,21 +1152,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47ca1ea3-9ce6-451e-a914-b91eee87a487","name":"47ca1ea3-9ce6-451e-a914-b91eee87a487","status":"Succeeded","startTime":"2022-01-07T09:44:36.7351991Z","endTime":"2022-01-07T09:48:36.4302196Z","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/southcentralusstage/operationResults/64a3b0ff-465a-4aa3-b868-e33b25b48f48","name":"64a3b0ff-465a-4aa3-b868-e33b25b48f48","status":"Succeeded","startTime":"2022-03-18T14:00:34.6169785Z","endTime":"2022-03-18T14:04:34.5122399Z","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: cache-control: - no-cache content-length: - - '584' + - '590' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:48:40 GMT + - Fri, 18 Mar 2022 14:04:37 GMT expires: - '-1' pragma: @@ -1203,10 +1175,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1230,23 +1198,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T09%3A48%3A36.4219908Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T09:44:31.1167820Z"},"properties":{"fileSystemId":"c76c04db-dad2-e6f2-eba3-757a264dc191","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_ed94678b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c76c04db-dad2-e6f2-eba3-757a264dc191","fileSystemId":"c76c04db-dad2-e6f2-eba3-757a264dc191","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-18T14%3A04%3A34.5134071Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-18T14:00:30.4696201Z"},"properties":{"fileSystemId":"e72b4ba7-dd9f-303f-ed2e-d4a35c8c97f6","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_cbd98e12","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"e72b4ba7-dd9f-303f-ed2e-d4a35c8c97f6","fileSystemId":"e72b4ba7-dd9f-303f-ed2e-d4a35c8c97f6","ipAddress":"10.0.0.4"}],"throughputMibps":6.25,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2081' + - '2120' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:48:40 GMT + - Fri, 18 Mar 2022 14:04:38 GMT etag: - - W/"datetime'2022-01-07T09%3A48%3A36.4219908Z'" + - W/"datetime'2022-03-18T14%3A04%3A34.5134071Z'" expires: - '-1' pragma: @@ -1255,10 +1223,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1280,21 +1244,21 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T09%3A48%3A36.4219908Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T09:44:31.1167820Z"},"properties":{"fileSystemId":"c76c04db-dad2-e6f2-eba3-757a264dc191","serviceLevel":"Premium","creationToken":"cli-vol-000004","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":false,"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_ed94678b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c76c04db-dad2-e6f2-eba3-757a264dc191","fileSystemId":"c76c04db-dad2-e6f2-eba3-757a264dc191","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}]}' + 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''2022-03-18T14%3A04%3A34.5134071Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-18T14:00:30.4696201Z"},"properties":{"fileSystemId":"e72b4ba7-dd9f-303f-ed2e-d4a35c8c97f6","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_cbd98e12","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"e72b4ba7-dd9f-303f-ed2e-d4a35c8c97f6","fileSystemId":"e72b4ba7-dd9f-303f-ed2e-d4a35c8c97f6","ipAddress":"10.0.0.4"}],"throughputMibps":6.25,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '2093' + - '2132' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:48:41 GMT + - Fri, 18 Mar 2022 14:04:40 GMT expires: - '-1' pragma: @@ -1328,27 +1292,27 @@ interactions: Content-Length: - '0' ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name --force User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?forceDelete=true&api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 09:48:44 GMT + - Fri, 18 Mar 2022 14:04:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1376,71 +1340,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a","name":"ae6d2c3e-2816-4a17-a283-0da098ec4f3a","status":"Deleting","startTime":"2022-01-07T09:48:44.3173786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - cache-control: - - no-cache - content-length: - - '573' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 09:49:14 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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name --force User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a","name":"ae6d2c3e-2816-4a17-a283-0da098ec4f3a","status":"Deleting","startTime":"2022-01-07T09:48:44.3173786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890","name":"d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890","status":"Deleting","startTime":"2022-03-18T14:04:43.4612589Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:49:44 GMT + - Fri, 18 Mar 2022 14:05:13 GMT expires: - '-1' pragma: @@ -1472,23 +1388,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name --force User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a","name":"ae6d2c3e-2816-4a17-a283-0da098ec4f3a","status":"Deleting","startTime":"2022-01-07T09:48:44.3173786Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890","name":"d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890","status":"Deleting","startTime":"2022-03-18T14:04:43.4612589Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:50:14 GMT + - Fri, 18 Mar 2022 14:05:43 GMT expires: - '-1' pragma: @@ -1520,23 +1436,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --account-name --pool-name --volume-name + - --resource-group --account-name --pool-name --volume-name --force User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ae6d2c3e-2816-4a17-a283-0da098ec4f3a","name":"ae6d2c3e-2816-4a17-a283-0da098ec4f3a","status":"Succeeded","startTime":"2022-01-07T09:48:44.3173786Z","endTime":"2022-01-07T09:50:23.0857467Z","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/southcentralusstage/operationResults/d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890","name":"d4e8f9f7-8840-4c9f-bfc3-7089c0bc8890","status":"Succeeded","startTime":"2022-03-18T14:04:43.4612589Z","endTime":"2022-03-18T14:06:02.0160182Z","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: cache-control: - no-cache content-length: - - '584' + - '590' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:50:44 GMT + - Fri, 18 Mar 2022 14:06:14 GMT expires: - '-1' pragma: @@ -1570,9 +1486,9 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2021-10-01 response: body: string: '{"value":[]}' @@ -1584,7 +1500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:50:46 GMT + - Fri, 18 Mar 2022 14:06:15 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 a415021c42f..a336d4d5018 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_string_size.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A44%3A13.3480051Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:44:08.0102840Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:44:12.5938902Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:44:12.5938902Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A04.7619432Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:55:58.6144308Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:03.9518901Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:03.9518901Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60a6409e-c974-4f58-b58b-807a9476d0d0?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/787bea1f-5945-48e2-9a8e-3a4796ba7f30?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:44:14 GMT + - Tue, 15 Mar 2022 10:56:05 GMT etag: - - W/"datetime'2022-01-07T08%3A44%3A13.3480051Z'" + - W/"datetime'2022-03-15T10%3A56%3A04.7619432Z'" expires: - '-1' pragma: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60a6409e-c974-4f58-b58b-807a9476d0d0?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/787bea1f-5945-48e2-9a8e-3a4796ba7f30?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60a6409e-c974-4f58-b58b-807a9476d0d0","name":"60a6409e-c974-4f58-b58b-807a9476d0d0","status":"Succeeded","startTime":"2022-01-07T08:44:13.3461586Z","endTime":"2022-01-07T08:44:13.3811272Z","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/southcentralusstage/operationResults/787bea1f-5945-48e2-9a8e-3a4796ba7f30","name":"787bea1f-5945-48e2-9a8e-3a4796ba7f30","status":"Succeeded","startTime":"2022-03-15T10:56:04.7654466Z","endTime":"2022-03-15T10:56:04.7812071Z","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: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:44:44 GMT + - Tue, 15 Mar 2022 10:56:36 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A44%3A13.3738032Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:44:08.0102840Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:44:12.5938902Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:44:12.5938902Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A04.7869766Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:55:58.6144308Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:03.9518901Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:03.9518901Z"}}' headers: cache-control: - no-cache content-length: - - '1145' + - '1166' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:44:44 GMT + - Tue, 15 Mar 2022 10:56:36 GMT etag: - - W/"datetime'2022-01-07T08%3A44%3A13.3738032Z'" + - W/"datetime'2022-03-15T10%3A56%3A04.7869766Z'" 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 6f503ef0ca3..1b3b34c7e80 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_pool_too_small.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A41%3A19.7451908Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:41:14.3800596Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:41:18.9588411Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:41:18.9588411Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A55%3A58.8803512Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:55:54.7178552Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:55:58.1368776Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:55:58.1368776Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/219810e9-c4df-4538-bf8a-14305b77f5d2?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a320ccc7-f758-42c1-8e37-7193ee572c98?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:41:21 GMT + - Tue, 15 Mar 2022 10:55:59 GMT etag: - - W/"datetime'2022-01-07T08%3A41%3A19.7451908Z'" + - W/"datetime'2022-03-15T10%3A55%3A58.8803512Z'" expires: - '-1' pragma: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/219810e9-c4df-4538-bf8a-14305b77f5d2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a320ccc7-f758-42c1-8e37-7193ee572c98?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/219810e9-c4df-4538-bf8a-14305b77f5d2","name":"219810e9-c4df-4538-bf8a-14305b77f5d2","status":"Succeeded","startTime":"2022-01-07T08:41:19.7512993Z","endTime":"2022-01-07T08:41:19.7912867Z","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/southcentralusstage/operationResults/a320ccc7-f758-42c1-8e37-7193ee572c98","name":"a320ccc7-f758-42c1-8e37-7193ee572c98","status":"Succeeded","startTime":"2022-03-15T10:55:58.8740933Z","endTime":"2022-03-15T10:55:58.9210093Z","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: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:41:51 GMT + - Tue, 15 Mar 2022 10:56:29 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - --resource-group --account-name -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A41%3A19.7832287Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:41:14.3800596Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:41:18.9588411Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:41:18.9588411Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A55%3A58.9263697Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:55:54.7178552Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:55:58.1368776Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:55:58.1368776Z"}}' headers: cache-control: - no-cache content-length: - - '1145' + - '1166' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:41:51 GMT + - Tue, 15 Mar 2022 10:56:30 GMT etag: - - W/"datetime'2022-01-07T08%3A41%3A19.7832287Z'" + - W/"datetime'2022-03-15T10%3A55%3A58.9263697Z'" expires: - '-1' pragma: @@ -170,9 +170,9 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: string: '{"error":{"code":"InvalidValueReceived","message":"An invalid value @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:42:02 GMT + - Tue, 15 Mar 2022 10:56:36 GMT expires: - '-1' pragma: @@ -198,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: 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 1f06a3d5d20..9427924c9bd 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"77026bcb-8d07-411d-90d8-b97140465f40\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"94eb1288-0ff4-4045-b5e8-83140ff90519\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:20:19.7196846Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:04:15.1890637Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"b8a0a367-076b-4622-a34b-2130ec4b8968\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"278edd37-36ce-4b30-9636-5234d502937a\",\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fa3b5e86-7538-4b5c-8e3e-015e5c663e93?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4af3395c-e25e-46f2-a8a0-0b767ed20929?api-version=2021-05-01 cache-control: - no-cache content-length: - - '779' + - '773' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:20:25 GMT + - Tue, 15 Mar 2022 12:04:20 GMT expires: - '-1' pragma: @@ -58,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 434786ff-1bce-4c4f-90d7-ae7545fac520 + - 24391d60-94a0-4ac0-965c-f9adb30b61f6 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -78,58 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fa3b5e86-7538-4b5c-8e3e-015e5c663e93?api-version=2021-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 13:20:28 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: - - 5038a4b3-debe-4c09-9633-e85c6971b48d - 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.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fa3b5e86-7538-4b5c-8e3e-015e5c663e93?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4af3395c-e25e-46f2-a8a0-0b767ed20929?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -141,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:20:38 GMT + - Tue, 15 Mar 2022 12:04:24 GMT expires: - '-1' pragma: @@ -151,14 +102,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3cf74b1a-a938-40c3-a524-8ca06b91e29e + - a5401677-b423-4292-8673-7d292c86fed3 status: code: 200 message: OK @@ -176,17 +123,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"fa4f7abc-1e96-4402-825d-1ee0a9ef8565\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f8354473-ecc1-4e9b-b41b-d728d6c6cb70\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:20:19.7196846Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:04:15.1890637Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b8a0a367-076b-4622-a34b-2130ec4b8968\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"278edd37-36ce-4b30-9636-5234d502937a\",\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\": @@ -195,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:20:38 GMT + - Tue, 15 Mar 2022 12:04:24 GMT etag: - - W/"fa4f7abc-1e96-4402-825d-1ee0a9ef8565" + - W/"f8354473-ecc1-4e9b-b41b-d728d6c6cb70" expires: - '-1' pragma: @@ -211,14 +158,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8973c950-578f-4c30-ab0b-f5107373820b + - 12179f7a-282e-4ccf-b852-a990321e3e6d status: code: 200 message: OK @@ -236,17 +179,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"fa4f7abc-1e96-4402-825d-1ee0a9ef8565\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f8354473-ecc1-4e9b-b41b-d728d6c6cb70\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:20:19.7196846Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:04:15.1890637Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b8a0a367-076b-4622-a34b-2130ec4b8968\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"278edd37-36ce-4b30-9636-5234d502937a\",\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\": @@ -255,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:20:39 GMT + - Tue, 15 Mar 2022 12:04:24 GMT etag: - - W/"fa4f7abc-1e96-4402-825d-1ee0a9ef8565" + - W/"f8354473-ecc1-4e9b-b41b-d728d6c6cb70" expires: - '-1' pragma: @@ -278,13 +221,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f43c2075-ff95-4dd3-93a1-524b3b1dbe88 + - 9a8309c6-4098-40e5-b45d-4a90daeb5065 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T13:20:19.7196846Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T12:04:15.1890637Z"}, "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": @@ -301,33 +244,33 @@ interactions: Connection: - keep-alive Content-Length: - - '705' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"2c74785f-fa33-4daf-9bde-e3b3aa6b5f2b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"26e47731-3cc2-4706-b34d-df9bd4fd9617\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:20:19.7196846Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:04:15.1890637Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"b8a0a367-076b-4622-a34b-2130ec4b8968\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"278edd37-36ce-4b30-9636-5234d502937a\",\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/\\\"2c74785f-fa33-4daf-9bde-e3b3aa6b5f2b\\\"\",\r\n + \ \"etag\": \"W/\\\"26e47731-3cc2-4706-b34d-df9bd4fd9617\\\"\",\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/\\\"2c74785f-fa33-4daf-9bde-e3b3aa6b5f2b\\\"\",\r\n + \ \"etag\": \"W/\\\"26e47731-3cc2-4706-b34d-df9bd4fd9617\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -342,15 +285,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fcf86afb-8e4f-447c-885c-e0761d0b0104?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/5ac1db10-c7e0-471b-8e24-d77b10b38a74?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2277' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:20:40 GMT + - Tue, 15 Mar 2022 12:04:26 GMT expires: - '-1' pragma: @@ -367,9 +310,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 048c43e3-8e13-47ce-b9e2-59698b46c018 + - c4f02eb6-143c-40ca-a6be-e1c15f518355 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -387,9 +330,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fcf86afb-8e4f-447c-885c-e0761d0b0104?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/5ac1db10-c7e0-471b-8e24-d77b10b38a74?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -401,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:20:43 GMT + - Tue, 15 Mar 2022 12:04:29 GMT expires: - '-1' pragma: @@ -418,7 +361,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1e78bf6-b477-4e33-85bb-227f88c91174 + - 49cf1193-4ba1-4b13-9490-a2ca5481ff81 status: code: 200 message: OK @@ -436,27 +379,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"e00532b8-9058-4108-804d-b1864c79a1f6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d6727cfe-2d7c-4354-b0fb-3ff479b91559\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:20:19.7196846Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:04:15.1890637Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b8a0a367-076b-4622-a34b-2130ec4b8968\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"278edd37-36ce-4b30-9636-5234d502937a\",\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/\\\"e00532b8-9058-4108-804d-b1864c79a1f6\\\"\",\r\n + \ \"etag\": \"W/\\\"d6727cfe-2d7c-4354-b0fb-3ff479b91559\\\"\",\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/\\\"e00532b8-9058-4108-804d-b1864c79a1f6\\\"\",\r\n + \ \"etag\": \"W/\\\"d6727cfe-2d7c-4354-b0fb-3ff479b91559\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -471,13 +414,13 @@ interactions: cache-control: - no-cache content-length: - - '2279' + - '2273' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:20:43 GMT + - Tue, 15 Mar 2022 12:04:29 GMT etag: - - W/"e00532b8-9058-4108-804d-b1864c79a1f6" + - W/"d6727cfe-2d7c-4354-b0fb-3ff479b91559" expires: - '-1' pragma: @@ -494,7 +437,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5c1ec91c-ffa5-4dbe-878f-140939966f18 + - 622ac890-cc85-4e6d-bbba-3767c19a525f status: code: 200 message: OK @@ -510,31 +453,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A20%3A50.3354913Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:20:45.5372089Z"},"properties":{"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''2022-03-15T12%3A04%3A33.9856753Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:04:31.2172912Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d55b4b6b-5d42-4ed4-a42c-24595feaf1fa?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d330f1a-7e28-4ea8-a8cc-bfb21c8dcc6e?api-version=2021-10-01 cache-control: - no-cache content-length: - - '421' + - '415' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:20:51 GMT + - Tue, 15 Mar 2022 12:04:35 GMT etag: - - W/"datetime'2022-01-07T13%3A20%3A50.3354913Z'" + - W/"datetime'2022-03-15T12%3A04%3A33.9856753Z'" expires: - '-1' pragma: @@ -546,7 +489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-powered-by: - ASP.NET status: @@ -566,21 +509,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d55b4b6b-5d42-4ed4-a42c-24595feaf1fa?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d330f1a-7e28-4ea8-a8cc-bfb21c8dcc6e?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d55b4b6b-5d42-4ed4-a42c-24595feaf1fa","name":"d55b4b6b-5d42-4ed4-a42c-24595feaf1fa","status":"Succeeded","startTime":"2022-01-07T13:20:50.3436911Z","endTime":"2022-01-07T13:20:50.3786817Z","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/southcentralusstage/operationResults/0d330f1a-7e28-4ea8-a8cc-bfb21c8dcc6e","name":"0d330f1a-7e28-4ea8-a8cc-bfb21c8dcc6e","status":"Succeeded","startTime":"2022-03-15T12:04:33.9923743Z","endTime":"2022-03-15T12:04:34.0223844Z","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: cache-control: - no-cache content-length: - - '533' + - '527' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:21:21 GMT + - Tue, 15 Mar 2022 12:05:05 GMT expires: - '-1' pragma: @@ -589,10 +532,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -614,23 +553,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A20%3A50.3749631Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:20:45.5372089Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T12%3A04%3A34.0148611Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:04:31.2172912Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '468' + - '462' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:21:21 GMT + - Tue, 15 Mar 2022 12:05:05 GMT etag: - - W/"datetime'2022-01-07T13%3A20%3A50.3749631Z'" + - W/"datetime'2022-03-15T12%3A04%3A34.0148611Z'" expires: - '-1' pragma: @@ -639,10 +578,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -663,31 +598,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A21%3A28.6564815Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:21:23.8288189Z"},"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''2022-03-15T12%3A05%3A13.1656345Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:05:07.1756368Z"},"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/southcentralusstage/operationResults/75486df6-5e87-4141-8bf9-4b4e9aa151e1?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a384ea27-e145-46c8-af7b-30cde7b846f7?api-version=2021-10-01 cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:21:29 GMT + - Tue, 15 Mar 2022 12:05:13 GMT etag: - - W/"datetime'2022-01-07T13%3A21%3A28.6564815Z'" + - W/"datetime'2022-03-15T12%3A05%3A13.1656345Z'" expires: - '-1' pragma: @@ -699,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -719,21 +654,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/75486df6-5e87-4141-8bf9-4b4e9aa151e1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a384ea27-e145-46c8-af7b-30cde7b846f7?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/75486df6-5e87-4141-8bf9-4b4e9aa151e1","name":"75486df6-5e87-4141-8bf9-4b4e9aa151e1","status":"Succeeded","startTime":"2022-01-07T13:21:28.6612845Z","endTime":"2022-01-07T13:21:28.7712875Z","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/southcentralusstage/operationResults/a384ea27-e145-46c8-af7b-30cde7b846f7","name":"a384ea27-e145-46c8-af7b-30cde7b846f7","status":"Succeeded","startTime":"2022-03-15T12:05:13.1740286Z","endTime":"2022-03-15T12:05:13.2840439Z","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: cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:21:59 GMT + - Tue, 15 Mar 2022 12:05:44 GMT expires: - '-1' pragma: @@ -767,23 +702,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A21%3A28.7570693Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:21:23.8288189Z"},"properties":{"poolId":"04f62997-7289-d3bd-9a1b-d12990547440","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T12%3A05%3A13.2734697Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:05:07.1756368Z"},"properties":{"poolId":"910a5864-4fd3-4886-e8ba-38bbbdcb4a9b","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '699' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:22:00 GMT + - Tue, 15 Mar 2022 12:05:44 GMT etag: - - W/"datetime'2022-01-07T13%3A21%3A28.7570693Z'" + - W/"datetime'2022-03-15T12%3A05%3A13.2734697Z'" expires: - '-1' pragma: @@ -805,7 +740,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -816,31 +752,31 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '372' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A22%3A04.2809098Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:22:01.1869723Z"},"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''2022-03-15T12%3A05%3A52.5885209Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:05:47.0514943Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 cache-control: - no-cache content-length: - - '820' + - '877' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:22:05 GMT + - Tue, 15 Mar 2022 12:05:53 GMT etag: - - W/"datetime'2022-01-07T13%3A22%3A04.2809098Z'" + - W/"datetime'2022-03-15T12%3A05%3A52.5885209Z'" expires: - '-1' pragma: @@ -872,21 +808,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7","name":"618440bc-69f3-49e4-a6f6-d6ab2d4937b7","status":"Creating","startTime":"2022-01-07T13:22:04.2887543Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef","name":"79a5bfcf-b5e9-4980-8af9-b2be79d376ef","status":"Creating","startTime":"2022-03-15T12:05:52.5965361Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:22:35 GMT + - Tue, 15 Mar 2022 12:06:23 GMT expires: - '-1' pragma: @@ -920,21 +856,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7","name":"618440bc-69f3-49e4-a6f6-d6ab2d4937b7","status":"Creating","startTime":"2022-01-07T13:22:04.2887543Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef","name":"79a5bfcf-b5e9-4980-8af9-b2be79d376ef","status":"Creating","startTime":"2022-03-15T12:05:52.5965361Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:23:05 GMT + - Tue, 15 Mar 2022 12:06:54 GMT expires: - '-1' pragma: @@ -968,21 +904,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7","name":"618440bc-69f3-49e4-a6f6-d6ab2d4937b7","status":"Creating","startTime":"2022-01-07T13:22:04.2887543Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef","name":"79a5bfcf-b5e9-4980-8af9-b2be79d376ef","status":"Creating","startTime":"2022-03-15T12:05:52.5965361Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:23:35 GMT + - Tue, 15 Mar 2022 12:07:24 GMT expires: - '-1' pragma: @@ -1016,21 +952,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7","name":"618440bc-69f3-49e4-a6f6-d6ab2d4937b7","status":"Creating","startTime":"2022-01-07T13:22:04.2887543Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef","name":"79a5bfcf-b5e9-4980-8af9-b2be79d376ef","status":"Creating","startTime":"2022-03-15T12:05:52.5965361Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:24:05 GMT + - Tue, 15 Mar 2022 12:07:54 GMT expires: - '-1' pragma: @@ -1064,21 +1000,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7","name":"618440bc-69f3-49e4-a6f6-d6ab2d4937b7","status":"Creating","startTime":"2022-01-07T13:22:04.2887543Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef","name":"79a5bfcf-b5e9-4980-8af9-b2be79d376ef","status":"Creating","startTime":"2022-03-15T12:05:52.5965361Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:24:35 GMT + - Tue, 15 Mar 2022 12:08:24 GMT expires: - '-1' pragma: @@ -1112,21 +1048,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7","name":"618440bc-69f3-49e4-a6f6-d6ab2d4937b7","status":"Creating","startTime":"2022-01-07T13:22:04.2887543Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef","name":"79a5bfcf-b5e9-4980-8af9-b2be79d376ef","status":"Creating","startTime":"2022-03-15T12:05:52.5965361Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:25:06 GMT + - Tue, 15 Mar 2022 12:08:55 GMT expires: - '-1' pragma: @@ -1160,21 +1096,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7","name":"618440bc-69f3-49e4-a6f6-d6ab2d4937b7","status":"Creating","startTime":"2022-01-07T13:22:04.2887543Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef","name":"79a5bfcf-b5e9-4980-8af9-b2be79d376ef","status":"Creating","startTime":"2022-03-15T12:05:52.5965361Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:25:36 GMT + - Tue, 15 Mar 2022 12:09:25 GMT expires: - '-1' pragma: @@ -1208,21 +1144,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/618440bc-69f3-49e4-a6f6-d6ab2d4937b7","name":"618440bc-69f3-49e4-a6f6-d6ab2d4937b7","status":"Succeeded","startTime":"2022-01-07T13:22:04.2887543Z","endTime":"2022-01-07T13:25:40.7191445Z","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/southcentralusstage/operationResults/79a5bfcf-b5e9-4980-8af9-b2be79d376ef","name":"79a5bfcf-b5e9-4980-8af9-b2be79d376ef","status":"Succeeded","startTime":"2022-03-15T12:05:52.5965361Z","endTime":"2022-03-15T12:09:43.6421626Z","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: cache-control: - no-cache content-length: - - '586' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:26:07 GMT + - Tue, 15 Mar 2022 12:09:55 GMT expires: - '-1' pragma: @@ -1256,23 +1192,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A25%3A40.7163105Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:22:01.1869723Z"},"properties":{"fileSystemId":"bcdf6991-0d0a-62f0-1188-dfe37998f312","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_8d5290d6","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","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"bcdf6991-0d0a-62f0-1188-dfe37998f312","fileSystemId":"bcdf6991-0d0a-62f0-1188-dfe37998f312","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T12%3A09%3A43.6259734Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:05:47.0514943Z"},"properties":{"fileSystemId":"e88cd097-f90e-ab73-b536-de2e27410fd5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_019c3bcf","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","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"e88cd097-f90e-ab73-b536-de2e27410fd5","fileSystemId":"e88cd097-f90e-ab73-b536-de2e27410fd5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2054' + - '2081' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:26:07 GMT + - Tue, 15 Mar 2022 12:09:55 GMT etag: - - W/"datetime'2022-01-07T13%3A25%3A40.7163105Z'" + - W/"datetime'2022-03-15T12%3A09%3A43.6259734Z'" expires: - '-1' pragma: @@ -1304,33 +1240,33 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12f0ebfd-49c7-42c4-9966-4a67c23e5939?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/453baf0c-fa26-4c0c-9d2f-acd12475c9b5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '461' + - '455' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:26:09 GMT + - Tue, 15 Mar 2022 12:09:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12f0ebfd-49c7-42c4-9966-4a67c23e5939?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/453baf0c-fa26-4c0c-9d2f-acd12475c9b5?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1340,7 +1276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1360,21 +1296,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12f0ebfd-49c7-42c4-9966-4a67c23e5939?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/453baf0c-fa26-4c0c-9d2f-acd12475c9b5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12f0ebfd-49c7-42c4-9966-4a67c23e5939","name":"12f0ebfd-49c7-42c4-9966-4a67c23e5939","status":"Succeeded","startTime":"2022-01-07T13:26:08.9907621Z","endTime":"2022-01-07T13:26:11.6746907Z","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/southcentralusstage/operationResults/453baf0c-fa26-4c0c-9d2f-acd12475c9b5","name":"453baf0c-fa26-4c0c-9d2f-acd12475c9b5","status":"Succeeded","startTime":"2022-03-15T12:09:57.9798309Z","endTime":"2022-03-15T12:10:05.2228125Z","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: cache-control: - no-cache content-length: - - '610' + - '604' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:26:39 GMT + - Tue, 15 Mar 2022 12:10:27 GMT expires: - '-1' pragma: @@ -1408,21 +1344,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"e2de3940-2737-8d8c-1a05-9d267e662ec2","created":"2022-01-07T13:26:09Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"38e42501-e5c9-5537-0a3e-be55526e1d89","created":"2022-03-15T12:09:58Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:26:39 GMT + - Tue, 15 Mar 2022 12:10:27 GMT expires: - '-1' pragma: @@ -1456,21 +1392,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"e2de3940-2737-8d8c-1a05-9d267e662ec2","created":"2022-01-07T13:26:09Z"}}]}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"38e42501-e5c9-5537-0a3e-be55526e1d89","created":"2022-03-15T12:09:58Z"}}]}' headers: cache-control: - no-cache content-length: - - '559' + - '553' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:26:40 GMT + - Tue, 15 Mar 2022 12:10:28 GMT expires: - '-1' pragma: @@ -1479,10 +1415,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1504,21 +1436,21 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"e2de3940-2737-8d8c-1a05-9d267e662ec2","created":"2022-01-07T13:26:09Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"38e42501-e5c9-5537-0a3e-be55526e1d89","created":"2022-03-15T12:09:58Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:26:41 GMT + - Tue, 15 Mar 2022 12:10:29 GMT expires: - '-1' pragma: @@ -1540,8 +1472,9 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-sn-2000006", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "snapshotId": "e2de3940-2737-8d8c-1a05-9d267e662ec2", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "snapshotId": "38e42501-e5c9-5537-0a3e-be55526e1d89", + "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -1552,32 +1485,32 @@ interactions: Connection: - keep-alive Content-Length: - - '400' + - '426' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --snapshot-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-2000006?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000006?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000006","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A26%3A49.5988527Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:26:44.2448827Z"},"properties":{"serviceLevel":"Premium","creationToken":"cli-sn-2000006","usageThreshold":107374182400,"snapshotId":"e2de3940-2737-8d8c-1a05-9d267e662ec2","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-sn-2000006","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T12%3A10%3A36.0948448Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:10:32.0115344Z"},"properties":{"serviceLevel":"Premium","creationToken":"cli-sn-2000006","usageThreshold":107374182400,"snapshotId":"38e42501-e5c9-5537-0a3e-be55526e1d89","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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50ca08c9-da25-43a1-b298-39c807d9995d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dad9ec35-3afa-405f-9e89-7d3d380f1785?api-version=2021-10-01 cache-control: - no-cache content-length: - - '872' + - '929' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:26:50 GMT + - Tue, 15 Mar 2022 12:10:36 GMT etag: - - W/"datetime'2022-01-07T13%3A26%3A49.5988527Z'" + - W/"datetime'2022-03-15T12%3A10%3A36.0948448Z'" expires: - '-1' pragma: @@ -1610,21 +1543,21 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --snapshot-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50ca08c9-da25-43a1-b298-39c807d9995d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dad9ec35-3afa-405f-9e89-7d3d380f1785?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/50ca08c9-da25-43a1-b298-39c807d9995d","name":"50ca08c9-da25-43a1-b298-39c807d9995d","status":"Succeeded","startTime":"2022-01-07T13:26:49.6100503Z","endTime":"2022-01-07T13:26:58.8288158Z","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-2000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dad9ec35-3afa-405f-9e89-7d3d380f1785","name":"dad9ec35-3afa-405f-9e89-7d3d380f1785","status":"Succeeded","startTime":"2022-03-15T12:10:36.101669Z","endTime":"2022-03-15T12:10:49.4258693Z","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-2000006"}}' headers: cache-control: - no-cache content-length: - - '586' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:27:20 GMT + - Tue, 15 Mar 2022 12:11:06 GMT expires: - '-1' pragma: @@ -1659,23 +1592,23 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --snapshot-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-sn-2000006?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000006?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-sn-2000006","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A26%3A58.8247339Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:26:44.2448827Z"},"properties":{"fileSystemId":"791846a3-fb5e-de56-ff7d-1e1f8c7a1f63","serviceLevel":"Premium","creationToken":"cli-sn-2000006","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_8d5290d6","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","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"791846a3-fb5e-de56-ff7d-1e1f8c7a1f63","fileSystemId":"791846a3-fb5e-de56-ff7d-1e1f8c7a1f63","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"cloneProgress":0,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-sn-2000006","name":"cli-acc-000002/cli-pool-000003/cli-sn-2000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T12%3A10%3A49.4159445Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:10:32.0115344Z"},"properties":{"fileSystemId":"038b79c5-50dd-1623-dea0-32bbcc922fa2","serviceLevel":"Premium","creationToken":"cli-sn-2000006","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_019c3bcf","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","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"038b79c5-50dd-1623-dea0-32bbcc922fa2","fileSystemId":"038b79c5-50dd-1623-dea0-32bbcc922fa2","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"cloneProgress":0,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2072' + - '2099' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:27:21 GMT + - Tue, 15 Mar 2022 12:11:07 GMT etag: - - W/"datetime'2022-01-07T13%3A26%3A58.8247339Z'" + - W/"datetime'2022-03-15T12%3A10%3A49.4159445Z'" 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 78026296318..f086dddac56 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": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"5c2fbcb5-59de-436e-9fa1-9aca4911d6bb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7e10c314-1b9b-4d96-a187-298d4004b638\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:12:01.2315806Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:01:35.2879577Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"81218bc0-0fb0-4d2a-8571-9396ce42422c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"055ac609-940e-4106-8f1d-e8abe7dd3773\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/456b6d6b-850b-407f-bc44-a9a4126d3f8f?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/6cdc92d5-dcf6-40fc-bdf2-485ccb076452?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '769' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:05 GMT + - Tue, 15 Mar 2022 15:01:41 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a32222b-6f1f-46e4-8b77-f08ca2c39195 + - e5198255-192a-4f6b-b7bd-ce7b16d371af x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -78,9 +78,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/456b6d6b-850b-407f-bc44-a9a4126d3f8f?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/6cdc92d5-dcf6-40fc-bdf2-485ccb076452?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:09 GMT + - Tue, 15 Mar 2022 15:01:44 GMT expires: - '-1' pragma: @@ -102,17 +102,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e611c806-d189-45a9-85ee-e1a5564b1fec + - 18e46ef1-f59f-47f3-9769-4f8039ae2cf7 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -127,17 +123,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"01777c61-2d4d-461f-b3ef-dff304c9de2e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9b7ed5af-5469-479f-965b-101fdb97c8a5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:12:01.2315806Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:01:35.2879577Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"81218bc0-0fb0-4d2a-8571-9396ce42422c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"055ac609-940e-4106-8f1d-e8abe7dd3773\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -146,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:09 GMT + - Tue, 15 Mar 2022 15:01:45 GMT etag: - - W/"01777c61-2d4d-461f-b3ef-dff304c9de2e" + - W/"9b7ed5af-5469-479f-965b-101fdb97c8a5" expires: - '-1' pragma: @@ -162,17 +158,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f07a1600-8163-421c-89cf-b8052e49921d + - 5aaec11a-f348-4a08-ae46-bf29aa9d281f status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -187,17 +179,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"01777c61-2d4d-461f-b3ef-dff304c9de2e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9b7ed5af-5469-479f-965b-101fdb97c8a5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:12:01.2315806Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:01:35.2879577Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"81218bc0-0fb0-4d2a-8571-9396ce42422c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"055ac609-940e-4106-8f1d-e8abe7dd3773\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -206,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:10 GMT + - Tue, 15 Mar 2022 15:01:45 GMT etag: - - W/"01777c61-2d4d-461f-b3ef-dff304c9de2e" + - W/"9b7ed5af-5469-479f-965b-101fdb97c8a5" expires: - '-1' pragma: @@ -222,20 +214,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57931fd7-cb1a-42ff-8d15-ae769281b8bf + - ba1f8084-7f29-4ed4-bba4-d20dbec6d24f status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T11:12:01.2315806Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T15:01:35.2879577Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -252,33 +240,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"71d6c196-8d79-49de-b70a-2bff9501626c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6bd3b50a-4ad9-400e-b3e6-47487745b096\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:12:01.2315806Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:01:35.2879577Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"81218bc0-0fb0-4d2a-8571-9396ce42422c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"055ac609-940e-4106-8f1d-e8abe7dd3773\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"71d6c196-8d79-49de-b70a-2bff9501626c\\\"\",\r\n + \ \"etag\": \"W/\\\"6bd3b50a-4ad9-400e-b3e6-47487745b096\\\"\",\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/\\\"71d6c196-8d79-49de-b70a-2bff9501626c\\\"\",\r\n + \ \"etag\": \"W/\\\"6bd3b50a-4ad9-400e-b3e6-47487745b096\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -293,15 +281,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3469f7f9-a41d-4714-961a-883c53ad0249?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/cc3291fd-ab2f-409c-877a-c97525904a71?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2258' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:11 GMT + - Tue, 15 Mar 2022 15:01:47 GMT expires: - '-1' pragma: @@ -311,19 +299,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d8ac0a51-1554-462d-86f2-956d27d2c46b + - a8df4431-a8ea-4748-9483-63047a30368b x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -338,9 +322,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3469f7f9-a41d-4714-961a-883c53ad0249?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/cc3291fd-ab2f-409c-877a-c97525904a71?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -352,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:14 GMT + - Tue, 15 Mar 2022 15:01:51 GMT expires: - '-1' pragma: @@ -362,17 +346,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 892b8481-fddf-4b75-99ee-34f5c83126a9 + - 7a13de4c-ae40-4f10-804f-3f88a264febd status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -387,27 +367,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"d62c0126-60b6-46df-bd91-062a88636b11\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a768a09c-befd-4fcb-b1df-aa2d15162086\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:12:01.2315806Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:01:35.2879577Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"81218bc0-0fb0-4d2a-8571-9396ce42422c\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"055ac609-940e-4106-8f1d-e8abe7dd3773\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"d62c0126-60b6-46df-bd91-062a88636b11\\\"\",\r\n + \ \"etag\": \"W/\\\"a768a09c-befd-4fcb-b1df-aa2d15162086\\\"\",\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/\\\"d62c0126-60b6-46df-bd91-062a88636b11\\\"\",\r\n + \ \"etag\": \"W/\\\"a768a09c-befd-4fcb-b1df-aa2d15162086\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -422,13 +402,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2260' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:14 GMT + - Tue, 15 Mar 2022 15:01:51 GMT etag: - - W/"d62c0126-60b6-46df-bd91-062a88636b11" + - W/"a768a09c-befd-4fcb-b1df-aa2d15162086" expires: - '-1' pragma: @@ -438,17 +418,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a5912336-7247-45e9-9cdf-3a0d6b68d9d9 + - f4e0ff4c-3367-422c-bf58-f0415e7230ab status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -461,31 +437,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T11%3A12%3A22.3064736Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:12:17.2581746Z"},"properties":{"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''2022-03-15T15%3A01%3A58.3079372Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:01:53.7591453Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/291e1bad-59a2-4f9b-8cd7-be8dbc01259d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8eff3024-8cd9-4738-bd07-0cb2223eedec?api-version=2021-10-01 cache-control: - no-cache content-length: - - '419' + - '413' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:23 GMT + - Tue, 15 Mar 2022 15:01:59 GMT etag: - - W/"datetime'2022-01-07T11%3A12%3A22.3064736Z'" + - W/"datetime'2022-03-15T15%3A01%3A58.3079372Z'" expires: - '-1' pragma: @@ -497,7 +473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -517,21 +493,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/291e1bad-59a2-4f9b-8cd7-be8dbc01259d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8eff3024-8cd9-4738-bd07-0cb2223eedec?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/291e1bad-59a2-4f9b-8cd7-be8dbc01259d","name":"291e1bad-59a2-4f9b-8cd7-be8dbc01259d","status":"Succeeded","startTime":"2022-01-07T11:12:22.3145158Z","endTime":"2022-01-07T11:12:22.3444528Z","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/southcentralusstage/operationResults/8eff3024-8cd9-4738-bd07-0cb2223eedec","name":"8eff3024-8cd9-4738-bd07-0cb2223eedec","status":"Succeeded","startTime":"2022-03-15T15:01:58.317835Z","endTime":"2022-03-15T15:01:58.3879012Z","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: cache-control: - no-cache content-length: - - '531' + - '524' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:53 GMT + - Tue, 15 Mar 2022 15:02:29 GMT expires: - '-1' pragma: @@ -540,10 +516,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -565,23 +537,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T11%3A12%3A22.3370318Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:12:17.2581746Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T15%3A01%3A58.3763395Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:01:53.7591453Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:12:53 GMT + - Tue, 15 Mar 2022 15:02:29 GMT etag: - - W/"datetime'2022-01-07T11%3A12%3A22.3370318Z'" + - W/"datetime'2022-03-15T15%3A01%3A58.3763395Z'" expires: - '-1' pragma: @@ -590,10 +562,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -614,31 +582,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T11%3A12%3A59.5482643Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:12:54.7709694Z"},"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''2022-03-15T15%3A02%3A38.5859039Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:02:34.1645594Z"},"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/southcentralusstage/operationResults/bba89351-8bba-4fc2-aef0-33b76685a16a?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/594da873-ec54-4e32-8066-4fb3b9f81320?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:13:00 GMT + - Tue, 15 Mar 2022 15:02:39 GMT etag: - - W/"datetime'2022-01-07T11%3A12%3A59.5482643Z'" + - W/"datetime'2022-03-15T15%3A02%3A38.5859039Z'" expires: - '-1' pragma: @@ -650,7 +618,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -670,21 +638,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bba89351-8bba-4fc2-aef0-33b76685a16a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/594da873-ec54-4e32-8066-4fb3b9f81320?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bba89351-8bba-4fc2-aef0-33b76685a16a","name":"bba89351-8bba-4fc2-aef0-33b76685a16a","status":"Succeeded","startTime":"2022-01-07T11:12:59.5565953Z","endTime":"2022-01-07T11:12:59.863786Z","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/southcentralusstage/operationResults/594da873-ec54-4e32-8066-4fb3b9f81320","name":"594da873-ec54-4e32-8066-4fb3b9f81320","status":"Succeeded","startTime":"2022-03-15T15:02:38.5889317Z","endTime":"2022-03-15T15:02:38.7139074Z","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: cache-control: - no-cache content-length: - - '560' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:13:30 GMT + - Tue, 15 Mar 2022 15:03:10 GMT expires: - '-1' pragma: @@ -693,10 +661,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -718,23 +682,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T11%3A12%3A59.8526208Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:12:54.7709694Z"},"properties":{"poolId":"7028b35c-a100-0aae-3ca5-03fd5e218e44","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T15%3A02%3A38.7021777Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:02:34.1645594Z"},"properties":{"poolId":"2e4dd461-8f21-fb4a-8570-73832b5809f8","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '697' + - '691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:13:30 GMT + - Tue, 15 Mar 2022 15:03:10 GMT etag: - - W/"datetime'2022-01-07T11%3A12%3A59.8526208Z'" + - W/"datetime'2022-03-15T15%3A02%3A38.7021777Z'" expires: - '-1' pragma: @@ -743,10 +707,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -755,11 +715,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "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": "southcentralusstage", "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -770,7 +731,7 @@ interactions: Connection: - keep-alive Content-Length: - - '572' + - '598' Content-Type: - application/json ParameterSetName: @@ -778,25 +739,25 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A13%3A37.6883141Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-01-07T11:13:32.0328381Z"},"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''2022-03-15T15%3A03%3A16.834202Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-03-15T15:03:12.0167787Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1177' + - '1233' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:13:38 GMT + - Tue, 15 Mar 2022 15:03:17 GMT etag: - - W/"datetime'2022-01-07T11%3A13%3A37.6883141Z'" + - W/"datetime'2022-03-15T15%3A03%3A16.834202Z'" expires: - '-1' pragma: @@ -830,21 +791,71 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Creating","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '567' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 15:03:47 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 --service-level --usage-threshold --file-path --vnet --subnet + --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs + --allowed-clients + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2","name":"79c22113-33fa-419e-90c7-656018e29ef2","status":"Creating","startTime":"2022-01-07T11:13:37.6941365Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Creating","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:14:08 GMT + - Tue, 15 Mar 2022 15:04:17 GMT expires: - '-1' pragma: @@ -880,21 +891,21 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2","name":"79c22113-33fa-419e-90c7-656018e29ef2","status":"Creating","startTime":"2022-01-07T11:13:37.6941365Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Creating","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:14:38 GMT + - Tue, 15 Mar 2022 15:04:48 GMT expires: - '-1' pragma: @@ -930,21 +941,21 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2","name":"79c22113-33fa-419e-90c7-656018e29ef2","status":"Creating","startTime":"2022-01-07T11:13:37.6941365Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Creating","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:15:08 GMT + - Tue, 15 Mar 2022 15:05:18 GMT expires: - '-1' pragma: @@ -980,21 +991,21 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2","name":"79c22113-33fa-419e-90c7-656018e29ef2","status":"Creating","startTime":"2022-01-07T11:13:37.6941365Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Creating","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:15:39 GMT + - Tue, 15 Mar 2022 15:05:48 GMT expires: - '-1' pragma: @@ -1030,21 +1041,21 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2","name":"79c22113-33fa-419e-90c7-656018e29ef2","status":"Creating","startTime":"2022-01-07T11:13:37.6941365Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Creating","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:16:10 GMT + - Tue, 15 Mar 2022 15:06:18 GMT expires: - '-1' pragma: @@ -1080,21 +1091,21 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2","name":"79c22113-33fa-419e-90c7-656018e29ef2","status":"Creating","startTime":"2022-01-07T11:13:37.6941365Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Creating","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:16:40 GMT + - Tue, 15 Mar 2022 15:06:49 GMT expires: - '-1' pragma: @@ -1130,21 +1141,21 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2","name":"79c22113-33fa-419e-90c7-656018e29ef2","status":"Creating","startTime":"2022-01-07T11:13:37.6941365Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Creating","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:17:10 GMT + - Tue, 15 Mar 2022 15:07:19 GMT expires: - '-1' pragma: @@ -1180,21 +1191,21 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79c22113-33fa-419e-90c7-656018e29ef2","name":"79c22113-33fa-419e-90c7-656018e29ef2","status":"Succeeded","startTime":"2022-01-07T11:13:37.6941365Z","endTime":"2022-01-07T11:17:27.4774Z","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/southcentralusstage/operationResults/e480b1b0-7ab5-4481-8c8a-580fe54dbddc","name":"e480b1b0-7ab5-4481-8c8a-580fe54dbddc","status":"Succeeded","startTime":"2022-03-15T15:03:16.8572644Z","endTime":"2022-03-15T15:07:40.3575563Z","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: cache-control: - no-cache content-length: - - '581' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:17:40 GMT + - Tue, 15 Mar 2022 15:07:49 GMT expires: - '-1' pragma: @@ -1230,23 +1241,23 @@ interactions: --protocol-types --tags --rule-index --unix-read-only --unix-read-write --cifs --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A17%3A27.4721554Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-01-07T11:13:32.0328381Z"},"properties":{"fileSystemId":"5fc69148-607b-90ac-ca28-353e5e0b94e8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_f1534abf","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"5fc69148-607b-90ac-ca28-353e5e0b94e8","fileSystemId":"5fc69148-607b-90ac-ca28-353e5e0b94e8","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T15%3A07%3A40.3498971Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-03-15T15:03:12.0167787Z"},"properties":{"fileSystemId":"681fa79d-0041-c8fd-85ea-9aa09959a3b4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_94576172","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"681fa79d-0041-c8fd-85ea-9aa09959a3b4","fileSystemId":"681fa79d-0041-c8fd-85ea-9aa09959a3b4","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2094' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:17:41 GMT + - Tue, 15 Mar 2022 15:07:50 GMT etag: - - W/"datetime'2022-01-07T11%3A17%3A27.4721554Z'" + - W/"datetime'2022-03-15T15%3A07%3A40.3498971Z'" 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 00a3d3c6bab..8871eb6f6d5 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_create_volume_with_subnet_in_different_rg.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"location": "centraluseuap", "tags": {"owner": "cli_test"}}' + body: '{"location": "southcentralusstage", "tags": {"owner": "cli_test"}}' headers: Accept: - application/json @@ -11,27 +11,27 @@ interactions: Connection: - keep-alive Content-Length: - - '60' + - '54' Content-Type: - application/json ParameterSetName: - -n --subscription -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-rg-subnet000007?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007","name":"cli-rg-subnet000007","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"owner":"cli_test","CreatedOnDate":"2022-01-07T14:06:42.0096723Z","SkipNRMSNSG":"true"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007","name":"cli-rg-subnet000007","type":"Microsoft.Resources/resourceGroups","location":"southcentralusstage","tags":{"owner":"cli_test","CreatedOnDate":"2022-03-15T13:26:28.9740642Z","SkipNRMSNSG":"true"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '338' + - '332' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:06:43 GMT + - Tue, 15 Mar 2022 13:26:29 GMT expires: - '-1' pragma: @@ -46,8 +46,8 @@ interactions: code: 201 message: Created - request: - body: '{"location": "centraluseuap", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -58,23 +58,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"80d3bdc7-6186-46a8-ab98-083e3b6ee729\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T14:06:44.4179538Z\"\r\n + \ \"etag\": \"W/\\\"6e746cbf-4f74-4286-b48d-d9455beb723f\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:26:31.6326776Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9c4baf0c-a93f-4ac1-98d2-62827cc81bbe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f81948da-d1fd-43bc-aed8-63554fa1260b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -83,15 +83,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/8f69f853-ed90-4d38-a8f2-6cf501079671?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fbb076f5-0d66-492a-a4d4-1a15ec407d15?api-version=2021-05-01 cache-control: - no-cache content-length: - - '760' + - '754' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:06:49 GMT + - Tue, 15 Mar 2022 13:26:34 GMT expires: - '-1' pragma: @@ -104,9 +104,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b021f43-39f6-4fee-ac8b-50990da09ce4 + - 4ea403ba-e35b-4da2-91cf-695632e96270 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -124,9 +124,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/8f69f853-ed90-4d38-a8f2-6cf501079671?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fbb076f5-0d66-492a-a4d4-1a15ec407d15?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -138,7 +138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:06:52 GMT + - Tue, 15 Mar 2022 13:26:37 GMT expires: - '-1' pragma: @@ -148,14 +148,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1324ac13-5516-41bf-a62c-4a0e425ea7e5 + - 4df5b6e1-a6d7-4bb0-8d8a-eafcc2d95f00 status: code: 200 message: OK @@ -173,17 +169,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"4323a808-7ce3-4a14-ae7e-d9f367d2df2b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T14:06:44.4179538Z\"\r\n + \ \"etag\": \"W/\\\"d0b68f69-d9d5-4f72-80c1-9129f68ecb6d\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:26:31.6326776Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9c4baf0c-a93f-4ac1-98d2-62827cc81bbe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f81948da-d1fd-43bc-aed8-63554fa1260b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -192,13 +188,13 @@ interactions: cache-control: - no-cache content-length: - - '761' + - '755' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:06:52 GMT + - Tue, 15 Mar 2022 13:26:38 GMT etag: - - W/"4323a808-7ce3-4a14-ae7e-d9f367d2df2b" + - W/"d0b68f69-d9d5-4f72-80c1-9129f68ecb6d" expires: - '-1' pragma: @@ -208,14 +204,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 81e84a9c-c856-43dd-b208-b6076b4ffeeb + - dd01d0b8-010d-4183-985d-fc9c64824080 status: code: 200 message: OK @@ -233,17 +225,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"4323a808-7ce3-4a14-ae7e-d9f367d2df2b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T14:06:44.4179538Z\"\r\n + \ \"etag\": \"W/\\\"d0b68f69-d9d5-4f72-80c1-9129f68ecb6d\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:26:31.6326776Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9c4baf0c-a93f-4ac1-98d2-62827cc81bbe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f81948da-d1fd-43bc-aed8-63554fa1260b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -252,13 +244,13 @@ interactions: cache-control: - no-cache content-length: - - '761' + - '755' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:06:53 GMT + - Tue, 15 Mar 2022 13:26:38 GMT etag: - - W/"4323a808-7ce3-4a14-ae7e-d9f367d2df2b" + - W/"d0b68f69-d9d5-4f72-80c1-9129f68ecb6d" expires: - '-1' pragma: @@ -275,13 +267,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ad7a232d-dffb-4b58-80c6-cd9c502eb98b + - 20d7af0b-2068-4591-87d5-22b4ae3e844a status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "centraluseuap", "tags": {"CreatedOnDate": "2022-01-07T14:06:44.4179538Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T13:26:31.6326776Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -298,33 +290,33 @@ interactions: Connection: - keep-alive Content-Length: - - '686' + - '680' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"cbccadb3-7177-4f10-a740-95ff7c674e31\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T14:06:44.4179538Z\"\r\n + \ \"etag\": \"W/\\\"f5597a1a-6b38-4af1-80da-eae13e259807\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:26:31.6326776Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9c4baf0c-a93f-4ac1-98d2-62827cc81bbe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f81948da-d1fd-43bc-aed8-63554fa1260b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"cbccadb3-7177-4f10-a740-95ff7c674e31\\\"\",\r\n + \ \"etag\": \"W/\\\"f5597a1a-6b38-4af1-80da-eae13e259807\\\"\",\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/\\\"cbccadb3-7177-4f10-a740-95ff7c674e31\\\"\",\r\n + \ \"etag\": \"W/\\\"f5597a1a-6b38-4af1-80da-eae13e259807\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -339,15 +331,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/7f557eef-dda4-4f82-b668-9cfcde361b52?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/042458c2-f247-45d1-ad00-fe275777feaf?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2219' + - '2213' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:06:54 GMT + - Tue, 15 Mar 2022 13:26:40 GMT expires: - '-1' pragma: @@ -364,7 +356,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - abb26ad1-f368-41c3-847f-0b868cfece99 + - c13ac7e5-99b5-4247-a0a4-9ea18af57198 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -384,9 +376,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/7f557eef-dda4-4f82-b668-9cfcde361b52?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/042458c2-f247-45d1-ad00-fe275777feaf?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -398,7 +390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:06:57 GMT + - Tue, 15 Mar 2022 13:26:43 GMT expires: - '-1' pragma: @@ -415,7 +407,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1e969b76-551e-47ea-b65f-11a7d331a103 + - 78dc1727-829f-4da2-85a2-a8bdc12d6638 status: code: 200 message: OK @@ -433,27 +425,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"e5bc2c26-988a-4170-b597-e32222f15ab4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T14:06:44.4179538Z\"\r\n + \ \"etag\": \"W/\\\"c7dab2dd-64ba-4a75-bb5e-438028653a36\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:26:31.6326776Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9c4baf0c-a93f-4ac1-98d2-62827cc81bbe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f81948da-d1fd-43bc-aed8-63554fa1260b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"e5bc2c26-988a-4170-b597-e32222f15ab4\\\"\",\r\n + \ \"etag\": \"W/\\\"c7dab2dd-64ba-4a75-bb5e-438028653a36\\\"\",\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/\\\"e5bc2c26-988a-4170-b597-e32222f15ab4\\\"\",\r\n + \ \"etag\": \"W/\\\"c7dab2dd-64ba-4a75-bb5e-438028653a36\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -468,13 +460,13 @@ interactions: cache-control: - no-cache content-length: - - '2221' + - '2215' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:06:58 GMT + - Tue, 15 Mar 2022 13:26:43 GMT etag: - - W/"e5bc2c26-988a-4170-b597-e32222f15ab4" + - W/"c7dab2dd-64ba-4a75-bb5e-438028653a36" expires: - '-1' pragma: @@ -491,12 +483,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 852fbbe6-ed90-4aea-ba62-962feca0f3e7 + - b45887ce-83e9-4f77-a058-875ce174ba17 status: code: 200 message: OK - request: - body: '{"location": "centraluseuap"}' + body: '{"location": "southcentralusstage"}' headers: Accept: - application/json @@ -507,31 +499,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T14%3A07%3A04.3899564Z''\"","location":"centraluseuap","tags":{"CreatedOnDate":"2022-01-07T14:06:59.4162298Z"},"properties":{"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''2022-03-15T13%3A26%3A51.142176Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:26:46.6291132Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/ca86a1af-9e9b-4031-b77a-4d196a3f536a?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44a9b602-7f24-42d2-b929-f753462f2392?api-version=2021-10-01 cache-control: - no-cache content-length: - - '419' + - '412' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:07:05 GMT + - Tue, 15 Mar 2022 13:26:52 GMT etag: - - W/"datetime'2022-01-07T14%3A07%3A04.3899564Z'" + - W/"datetime'2022-03-15T13%3A26%3A51.142176Z'" expires: - '-1' pragma: @@ -543,7 +535,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -563,21 +555,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/ca86a1af-9e9b-4031-b77a-4d196a3f536a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44a9b602-7f24-42d2-b929-f753462f2392?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/ca86a1af-9e9b-4031-b77a-4d196a3f536a","name":"ca86a1af-9e9b-4031-b77a-4d196a3f536a","status":"Succeeded","startTime":"2022-01-07T14:07:04.390663Z","endTime":"2022-01-07T14:07:04.430662Z","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/southcentralusstage/operationResults/44a9b602-7f24-42d2-b929-f753462f2392","name":"44a9b602-7f24-42d2-b929-f753462f2392","status":"Succeeded","startTime":"2022-03-15T13:26:51.1482173Z","endTime":"2022-03-15T13:26:51.2155348Z","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: cache-control: - no-cache content-length: - - '529' + - '525' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:07:35 GMT + - Tue, 15 Mar 2022 13:27:22 GMT expires: - '-1' pragma: @@ -611,23 +603,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T14%3A07%3A04.4280994Z''\"","location":"centraluseuap","tags":{"CreatedOnDate":"2022-01-07T14:06:59.4162298Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T13%3A26%3A51.2026985Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:26:46.6291132Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:07:35 GMT + - Tue, 15 Mar 2022 13:27:22 GMT etag: - - W/"datetime'2022-01-07T14%3A07%3A04.4280994Z'" + - W/"datetime'2022-03-15T13%3A26%3A51.2026985Z'" expires: - '-1' pragma: @@ -648,7 +640,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "properties": {"size": 4398046511104, "serviceLevel": + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: @@ -660,31 +652,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T14%3A07%3A43.9108783Z''\"","location":"centraluseuap","tags":{"CreatedOnDate":"2022-01-07T14:07:38.0355994Z"},"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''2022-03-15T13%3A27%3A31.0071243Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:27:25.1622762Z"},"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/centraluseuap/operationResults/559160ff-d5dd-4554-a269-4f667a2453fb?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ea253db-1c25-4c23-bc7c-e55dec28b821?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:07:45 GMT + - Tue, 15 Mar 2022 13:27:32 GMT etag: - - W/"datetime'2022-01-07T14%3A07%3A43.9108783Z'" + - W/"datetime'2022-03-15T13%3A27%3A31.0071243Z'" expires: - '-1' pragma: @@ -696,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -716,21 +708,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/559160ff-d5dd-4554-a269-4f667a2453fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6ea253db-1c25-4c23-bc7c-e55dec28b821?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/559160ff-d5dd-4554-a269-4f667a2453fb","name":"559160ff-d5dd-4554-a269-4f667a2453fb","status":"Succeeded","startTime":"2022-01-07T14:07:43.9200458Z","endTime":"2022-01-07T14:07:44.2609792Z","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/southcentralusstage/operationResults/6ea253db-1c25-4c23-bc7c-e55dec28b821","name":"6ea253db-1c25-4c23-bc7c-e55dec28b821","status":"Succeeded","startTime":"2022-03-15T13:27:31.0152884Z","endTime":"2022-03-15T13:27:31.355315Z","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: cache-control: - no-cache content-length: - - '561' + - '554' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:08:15 GMT + - Tue, 15 Mar 2022 13:28:02 GMT expires: - '-1' pragma: @@ -764,23 +756,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T14%3A07%3A44.252417Z''\"","location":"centraluseuap","tags":{"CreatedOnDate":"2022-01-07T14:07:38.0355994Z"},"properties":{"poolId":"c08bd434-df69-71b9-ef32-58829e183ddf","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T13%3A27%3A31.3465213Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:27:25.1622762Z"},"properties":{"poolId":"f471c8d6-4000-3746-058b-c23e6acfcf96","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '696' + - '691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:08:15 GMT + - Tue, 15 Mar 2022 13:28:02 GMT etag: - - W/"datetime'2022-01-07T14%3A07%3A44.252417Z'" + - W/"datetime'2022-03-15T13%3A27%3A31.3465213Z'" expires: - '-1' pragma: @@ -801,8 +793,9 @@ interactions: code: 200 message: OK - request: - body: '{"location": "centraluseuap", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -813,32 +806,32 @@ interactions: Connection: - keep-alive Content-Length: - - '327' + - '353' Content-Type: - application/json ParameterSetName: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T14%3A08%3A21.6934384Z''\"","location":"centraluseuap","tags":{"CreatedOnDate":"2022-01-07T14:08:16.4674086Z"},"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''2022-03-15T13%3A28%3A06.8278663Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:28:04.1113314Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 cache-control: - no-cache content-length: - - '799' + - '856' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:08:22 GMT + - Tue, 15 Mar 2022 13:28:07 GMT etag: - - W/"datetime'2022-01-07T14%3A08%3A21.6934384Z'" + - W/"datetime'2022-03-15T13%3A28%3A06.8278663Z'" expires: - '-1' pragma: @@ -850,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -871,21 +864,21 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192","name":"6c95df1a-ea02-49f8-b41f-79b90c1ee192","status":"Creating","startTime":"2022-01-07T14:08:21.7036441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/6a9a8483-06e6-4474-9bbd-bf5f5982191a","name":"6a9a8483-06e6-4474-9bbd-bf5f5982191a","status":"Creating","startTime":"2022-03-15T13:28:06.8357407Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:08:52 GMT + - Tue, 15 Mar 2022 13:28:38 GMT expires: - '-1' pragma: @@ -894,10 +887,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -920,21 +909,21 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192","name":"6c95df1a-ea02-49f8-b41f-79b90c1ee192","status":"Creating","startTime":"2022-01-07T14:08:21.7036441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/6a9a8483-06e6-4474-9bbd-bf5f5982191a","name":"6a9a8483-06e6-4474-9bbd-bf5f5982191a","status":"Creating","startTime":"2022-03-15T13:28:06.8357407Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:09:23 GMT + - Tue, 15 Mar 2022 13:29:08 GMT expires: - '-1' pragma: @@ -943,10 +932,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -969,21 +954,21 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192","name":"6c95df1a-ea02-49f8-b41f-79b90c1ee192","status":"Creating","startTime":"2022-01-07T14:08:21.7036441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/6a9a8483-06e6-4474-9bbd-bf5f5982191a","name":"6a9a8483-06e6-4474-9bbd-bf5f5982191a","status":"Creating","startTime":"2022-03-15T13:28:06.8357407Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:09:53 GMT + - Tue, 15 Mar 2022 13:29:38 GMT expires: - '-1' pragma: @@ -992,10 +977,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1018,21 +999,21 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192","name":"6c95df1a-ea02-49f8-b41f-79b90c1ee192","status":"Creating","startTime":"2022-01-07T14:08:21.7036441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/6a9a8483-06e6-4474-9bbd-bf5f5982191a","name":"6a9a8483-06e6-4474-9bbd-bf5f5982191a","status":"Creating","startTime":"2022-03-15T13:28:06.8357407Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:10:23 GMT + - Tue, 15 Mar 2022 13:30:08 GMT expires: - '-1' pragma: @@ -1041,10 +1022,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1067,21 +1044,21 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192","name":"6c95df1a-ea02-49f8-b41f-79b90c1ee192","status":"Creating","startTime":"2022-01-07T14:08:21.7036441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/6a9a8483-06e6-4474-9bbd-bf5f5982191a","name":"6a9a8483-06e6-4474-9bbd-bf5f5982191a","status":"Creating","startTime":"2022-03-15T13:28:06.8357407Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:10:53 GMT + - Tue, 15 Mar 2022 13:30:39 GMT expires: - '-1' pragma: @@ -1090,10 +1067,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1116,21 +1089,21 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192","name":"6c95df1a-ea02-49f8-b41f-79b90c1ee192","status":"Creating","startTime":"2022-01-07T14:08:21.7036441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/6a9a8483-06e6-4474-9bbd-bf5f5982191a","name":"6a9a8483-06e6-4474-9bbd-bf5f5982191a","status":"Creating","startTime":"2022-03-15T13:28:06.8357407Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:11:23 GMT + - Tue, 15 Mar 2022 13:31:09 GMT expires: - '-1' pragma: @@ -1139,10 +1112,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1165,21 +1134,21 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192","name":"6c95df1a-ea02-49f8-b41f-79b90c1ee192","status":"Creating","startTime":"2022-01-07T14:08:21.7036441Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/6a9a8483-06e6-4474-9bbd-bf5f5982191a","name":"6a9a8483-06e6-4474-9bbd-bf5f5982191a","status":"Creating","startTime":"2022-03-15T13:28:06.8357407Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:11:53 GMT + - Tue, 15 Mar 2022 13:31:39 GMT expires: - '-1' pragma: @@ -1188,10 +1157,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1214,21 +1179,21 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/6c95df1a-ea02-49f8-b41f-79b90c1ee192","name":"6c95df1a-ea02-49f8-b41f-79b90c1ee192","status":"Succeeded","startTime":"2022-01-07T14:08:21.7036441Z","endTime":"2022-01-07T14:11:55.0975773Z","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/southcentralusstage/operationResults/6a9a8483-06e6-4474-9bbd-bf5f5982191a","name":"6a9a8483-06e6-4474-9bbd-bf5f5982191a","status":"Succeeded","startTime":"2022-03-15T13:28:06.8357407Z","endTime":"2022-03-15T13:32:05.2675126Z","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: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:12:24 GMT + - Tue, 15 Mar 2022 13:32:31 GMT expires: - '-1' pragma: @@ -1263,23 +1228,23 @@ interactions: - --resource-group --account-name --pool-name --volume-name -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T14%3A11%3A55.0904236Z''\"","location":"centraluseuap","tags":{"CreatedOnDate":"2022-01-07T14:08:16.4674086Z"},"properties":{"fileSystemId":"4472fc6c-451b-383c-a0a1-fcbcce18d978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_c8c4e9bd","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4472fc6c-451b-383c-a0a1-fcbcce18d978","fileSystemId":"4472fc6c-451b-383c-a0a1-fcbcce18d978","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T13%3A32%3A05.2617905Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:28:04.1113314Z"},"properties":{"fileSystemId":"3e75a2c0-7fda-12fb-06b9-ba608e9a66e3","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_68bf0fe7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-rg-subnet000007/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3e75a2c0-7fda-12fb-06b9-ba608e9a66e3","fileSystemId":"3e75a2c0-7fda-12fb-06b9-ba608e9a66e3","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2033' + - '2060' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:12:24 GMT + - Tue, 15 Mar 2022 13:32:31 GMT etag: - - W/"datetime'2022-01-07T14%3A11%3A55.0904236Z'" + - W/"datetime'2022-03-15T13%3A32%3A05.2617905Z'" expires: - '-1' pragma: @@ -1315,25 +1280,25 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/259201f3-917a-422f-a7be-abc5669b1da4?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10ed1d87-cee6-4c1a-8007-80aa006c0afc?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 14:12:27 GMT + - Tue, 15 Mar 2022 13:32:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/259201f3-917a-422f-a7be-abc5669b1da4?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10ed1d87-cee6-4c1a-8007-80aa006c0afc?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1363,69 +1328,21 @@ interactions: ParameterSetName: - --resource-group --account-name --pool-name --volume-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/259201f3-917a-422f-a7be-abc5669b1da4?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/259201f3-917a-422f-a7be-abc5669b1da4","name":"259201f3-917a-422f-a7be-abc5669b1da4","status":"Deleting","startTime":"2022-01-07T14:12:27.9694527Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - cache-control: - - no-cache - content-length: - - '573' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 14:12: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 volume delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/259201f3-917a-422f-a7be-abc5669b1da4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10ed1d87-cee6-4c1a-8007-80aa006c0afc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/259201f3-917a-422f-a7be-abc5669b1da4","name":"259201f3-917a-422f-a7be-abc5669b1da4","status":"Deleting","startTime":"2022-01-07T14:12:27.9694527Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/10ed1d87-cee6-4c1a-8007-80aa006c0afc","name":"10ed1d87-cee6-4c1a-8007-80aa006c0afc","status":"Succeeded","startTime":"2022-03-15T13:32:38.9066205Z","endTime":"2022-03-15T13:33:46.1451303Z","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: cache-control: - no-cache content-length: - - '573' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 14:13:28 GMT + - Tue, 15 Mar 2022 13:34:59 GMT expires: - '-1' pragma: @@ -1434,58 +1351,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - 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 delete - Connection: - - keep-alive - ParameterSetName: - - --resource-group --account-name --pool-name --volume-name - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/259201f3-917a-422f-a7be-abc5669b1da4?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/centraluseuap/operationResults/259201f3-917a-422f-a7be-abc5669b1da4","name":"259201f3-917a-422f-a7be-abc5669b1da4","status":"Succeeded","startTime":"2022-01-07T14:12:27.9694527Z","endTime":"2022-01-07T14:13:34.4725453Z","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: - cache-control: - - no-cache - content-length: - - '584' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 14:13: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: @@ -1509,7 +1374,7 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-rg-subnet000007?api-version=2021-04-01 response: @@ -1521,11 +1386,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:14:01 GMT + - Tue, 15 Mar 2022 13:35:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1551,169 +1416,9 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Jan 2022 14:14:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --yes -n - User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Jan 2022 14:14:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --yes -n - User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Jan 2022 14:14:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --yes -n - User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Fri, 07 Jan 2022 14:15:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - group delete - Connection: - - keep-alive - ParameterSetName: - - --yes -n - User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -1723,11 +1428,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:15:18 GMT + - Tue, 15 Mar 2022 13:35:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1751,9 +1456,9 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -1763,11 +1468,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:15:33 GMT + - Tue, 15 Mar 2022 13:35:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1791,9 +1496,9 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -1803,11 +1508,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:15:49 GMT + - Tue, 15 Mar 2022 13:35:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1831,9 +1536,9 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -1843,11 +1548,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:16:04 GMT + - Tue, 15 Mar 2022 13:36:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1871,9 +1576,9 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -1883,11 +1588,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:16:20 GMT + - Tue, 15 Mar 2022 13:36:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1911,9 +1616,9 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -1923,11 +1628,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:16:35 GMT + - Tue, 15 Mar 2022 13:36:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1951,9 +1656,9 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -1963,11 +1668,11 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:16:51 GMT + - Tue, 15 Mar 2022 13:36:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 pragma: - no-cache strict-transport-security: @@ -1991,9 +1696,9 @@ interactions: ParameterSetName: - --yes -n User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVDdSNUdESU9TNEtTLUNFTlRSQUxVU0VVQVAiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1c2V1YXAifQ?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTEk6MkRSRzoyRFNVQk5FVE4zQkdISkVYSURXLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01 response: body: string: '' @@ -2003,7 +1708,7 @@ interactions: content-length: - '0' date: - - Fri, 07 Jan 2022 14:17:06 GMT + - Tue, 15 Mar 2022 13:37:07 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_delete_account_backup.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_delete_account_backup.yaml index 960fe13c45f..2f2d5bd091e 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_delete_account_backup.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_delete_account_backup.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"308d2aa9-aa2f-48e1-9b95-58c678244057\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"aed808bc-1c44-41e3-ab09-d9a97cc59d10\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"49439453-ea2e-4abf-aaee-94b0ee73d260\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:30:19.8335794Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"9f8730a5-801c-4140-9f35-7bc17c078481\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/da703dde-01d1-46ac-803f-d4827826f15b?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a2e2d80b-dbba-4978-b60f-7fed3dcfec78?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '789' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:17:52 GMT + - Wed, 16 Mar 2022 08:30:27 GMT expires: - '-1' pragma: @@ -57,9 +58,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e2ca8bc5-9b7f-456b-b0c5-4ba55c2b7d1b + - 9848252e-384b-4c57-b44f-afedd73b1929 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/da703dde-01d1-46ac-803f-d4827826f15b?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a2e2d80b-dbba-4978-b60f-7fed3dcfec78?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:17:55 GMT + - Wed, 16 Mar 2022 08:30:31 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0436c182-4c83-4367-8b21-d0c5d069dfd8 + - 733b2775-626d-4de6-8fef-6dbd4af413f1 status: code: 200 message: OK @@ -126,16 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"228685bb-9c39-44d8-9591-c58e3d48858d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"aed808bc-1c44-41e3-ab09-d9a97cc59d10\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"517b829a-087b-4b43-b93f-a32d142ab4fb\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:30:19.8335794Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"9f8730a5-801c-4140-9f35-7bc17c078481\",\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\": @@ -144,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '790' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:17:55 GMT + - Wed, 16 Mar 2022 08:30:31 GMT etag: - - W/"228685bb-9c39-44d8-9591-c58e3d48858d" + - W/"517b829a-087b-4b43-b93f-a32d142ab4fb" expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e617d62e-85ec-491b-bde5-548a27177bef + - c7b31d23-b639-48e6-93d9-2d14384f4cba status: code: 200 message: OK @@ -185,16 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"228685bb-9c39-44d8-9591-c58e3d48858d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"aed808bc-1c44-41e3-ab09-d9a97cc59d10\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"517b829a-087b-4b43-b93f-a32d142ab4fb\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:30:19.8335794Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"9f8730a5-801c-4140-9f35-7bc17c078481\",\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\": @@ -203,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '790' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:17:57 GMT + - Wed, 16 Mar 2022 08:30:32 GMT etag: - - W/"228685bb-9c39-44d8-9591-c58e3d48858d" + - W/"517b829a-087b-4b43-b93f-a32d142ab4fb" expires: - '-1' pragma: @@ -219,25 +222,21 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8f4f4f86-02fc-4054-9db6-a8acd886dc9a + - 78540019-6f04-454a-95ba-2cfabec8cc84 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-16T08:30:19.8335794Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +247,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"b47aa732-56a9-4155-8559-f917ee384d35\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"aed808bc-1c44-41e3-ab09-d9a97cc59d10\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"3dab5164-6b97-4c8c-8090-1c8e7fb95a81\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:30:19.8335794Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"9f8730a5-801c-4140-9f35-7bc17c078481\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\",\r\n - \ \"etag\": \"W/\\\"b47aa732-56a9-4155-8559-f917ee384d35\\\"\",\r\n + \ \"etag\": \"W/\\\"3dab5164-6b97-4c8c-8090-1c8e7fb95a81\\\"\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\",\r\n - \ \"etag\": \"W/\\\"b47aa732-56a9-4155-8559-f917ee384d35\\\"\",\r\n + \ \"etag\": \"W/\\\"3dab5164-6b97-4c8c-8090-1c8e7fb95a81\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +288,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a6d82f89-1381-441d-876b-9c95476fa29d?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/97b97f83-451f-42d3-a1aa-b1bb875e09ed?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2276' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:17:58 GMT + - Wed, 16 Mar 2022 08:30:35 GMT expires: - '-1' pragma: @@ -306,14 +306,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e89f4aad-abe1-45f4-8735-0b0d0104306b + - 6118d5b8-c0ea-472d-858b-d79f5aae58dc x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -333,9 +329,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a6d82f89-1381-441d-876b-9c95476fa29d?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/97b97f83-451f-42d3-a1aa-b1bb875e09ed?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:18:01 GMT + - Wed, 16 Mar 2022 08:30:38 GMT expires: - '-1' pragma: @@ -357,14 +353,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a22b86c7-8ff4-46cb-96fe-15001511dcd3 + - 056fb2cb-0ca7-4288-aad8-d0bb5bd4ad4e status: code: 200 message: OK @@ -382,26 +374,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"d94414fa-0ca1-4f87-b54f-5f7374c1efec\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"aed808bc-1c44-41e3-ab09-d9a97cc59d10\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"53f92de9-b248-4d7c-81f3-8418d088a351\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T08:30:19.8335794Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"9f8730a5-801c-4140-9f35-7bc17c078481\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\",\r\n - \ \"etag\": \"W/\\\"d94414fa-0ca1-4f87-b54f-5f7374c1efec\\\"\",\r\n + \ \"etag\": \"W/\\\"53f92de9-b248-4d7c-81f3-8418d088a351\\\"\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\",\r\n - \ \"etag\": \"W/\\\"d94414fa-0ca1-4f87-b54f-5f7374c1efec\\\"\",\r\n + \ \"etag\": \"W/\\\"53f92de9-b248-4d7c-81f3-8418d088a351\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +409,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2278' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:18:01 GMT + - Wed, 16 Mar 2022 08:30:38 GMT etag: - - W/"d94414fa-0ca1-4f87-b54f-5f7374c1efec" + - W/"53f92de9-b248-4d7c-81f3-8418d088a351" expires: - '-1' pragma: @@ -432,14 +425,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e045b802-fa77-4cc4-aba2-3a379ac5284d + - c42026c8-3b1b-4b83-a6a2-dfe12e2ceb14 status: code: 200 message: OK @@ -455,31 +444,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-10-19T13%3A18%3A07.9149982Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-16T08%3A30%3A47.0452152Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:30:41.7547789Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bdbe7842-f186-422b-af41-0996bbbf0ae3?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cf4b854f-c2eb-4787-b12b-f1ba50736853?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '421' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:18:08 GMT + - Wed, 16 Mar 2022 08:30:47 GMT etag: - - W/"datetime'2021-10-19T13%3A18%3A07.9149982Z'" + - W/"datetime'2022-03-16T08%3A30%3A47.0452152Z'" expires: - '-1' pragma: @@ -511,21 +500,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bdbe7842-f186-422b-af41-0996bbbf0ae3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cf4b854f-c2eb-4787-b12b-f1ba50736853?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bdbe7842-f186-422b-af41-0996bbbf0ae3","name":"bdbe7842-f186-422b-af41-0996bbbf0ae3","status":"Succeeded","startTime":"2021-10-19T13:18:07.918024Z","endTime":"2021-10-19T13:18:07.9680256Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cf4b854f-c2eb-4787-b12b-f1ba50736853","name":"cf4b854f-c2eb-4787-b12b-f1ba50736853","status":"Succeeded","startTime":"2022-03-16T08:30:47.0478523Z","endTime":"2022-03-16T08:30:47.1265356Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '587' + - '533' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:18:38 GMT + - Wed, 16 Mar 2022 08:31:18 GMT expires: - '-1' pragma: @@ -559,23 +548,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-10-19T13%3A18%3A07.9610311Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-16T08%3A30%3A47.1207271Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:30:41.7547789Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '468' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:18:39 GMT + - Wed, 16 Mar 2022 08:31:18 GMT etag: - - W/"datetime'2021-10-19T13%3A18%3A07.9610311Z'" + - W/"datetime'2022-03-16T08%3A30%3A47.1207271Z'" expires: - '-1' pragma: @@ -596,8 +585,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +597,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A18%3A50.8832724Z''\"","location":"southcentralusstage","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_account_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''2022-03-16T08%3A31%3A27.7747797Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:31:22.5736685Z"},"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/southcentralusstage/operationResults/745e933e-cb56-4046-982c-e71e15e0d118?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fc1a2db8-2930-4da5-8c59-d6b648e50aa1?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '584' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:18:51 GMT + - Wed, 16 Mar 2022 08:31:29 GMT etag: - - W/"datetime'2021-10-19T13%3A18%3A50.8832724Z'" + - W/"datetime'2022-03-16T08%3A31%3A27.7747797Z'" expires: - '-1' pragma: @@ -664,21 +653,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/745e933e-cb56-4046-982c-e71e15e0d118?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fc1a2db8-2930-4da5-8c59-d6b648e50aa1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/745e933e-cb56-4046-982c-e71e15e0d118","name":"745e933e-cb56-4046-982c-e71e15e0d118","status":"Succeeded","startTime":"2021-10-19T13:18:50.8873631Z","endTime":"2021-10-19T13:18:51.1357697Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fc1a2db8-2930-4da5-8c59-d6b648e50aa1","name":"fc1a2db8-2930-4da5-8c59-d6b648e50aa1","status":"Succeeded","startTime":"2022-03-16T08:31:27.7810712Z","endTime":"2022-03-16T08:31:28.0811248Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: cache-control: - no-cache content-length: - - '627' + - '563' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:19:21 GMT + - Wed, 16 Mar 2022 08:31:59 GMT expires: - '-1' pragma: @@ -708,23 +697,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A18%3A51.1304463Z''\"","location":"southcentralusstage","properties":{"poolId":"905a934a-b8da-30a9-e7cd-b25d490b532f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-16T08%3A31%3A28.0728175Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:31:22.5736685Z"},"properties":{"poolId":"d5732c49-ea49-f9ae-e557-3edcce11d866","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '699' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:19:22 GMT + - Wed, 16 Mar 2022 08:31:59 GMT etag: - - W/"datetime'2021-10-19T13%3A18%3A51.1304463Z'" + - W/"datetime'2022-03-16T08%3A31%3A28.0728175Z'" expires: - '-1' pragma: @@ -742,7 +731,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -753,31 +743,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '345' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A19%3A31.0737062Z''\"","location":"southcentralusstage","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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_account_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''2022-03-16T08%3A32%3A06.400166Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:32:01.7389826Z"},"properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '857' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:19:31 GMT + - Wed, 16 Mar 2022 08:32:07 GMT etag: - - W/"datetime'2021-10-19T13%3A19%3A31.0737062Z'" + - W/"datetime'2022-03-16T08%3A32%3A06.400166Z'" expires: - '-1' pragma: @@ -809,69 +799,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Creating","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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: - - Tue, 19 Oct 2021 13:20:01 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.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Creating","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fd57622d-9eaf-49c0-aabf-7144912baec6","name":"fd57622d-9eaf-49c0-aabf-7144912baec6","status":"Creating","startTime":"2022-03-16T08:32:06.4190749Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:20:32 GMT + - Wed, 16 Mar 2022 08:32:37 GMT expires: - '-1' pragma: @@ -905,21 +847,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Creating","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fd57622d-9eaf-49c0-aabf-7144912baec6","name":"fd57622d-9eaf-49c0-aabf-7144912baec6","status":"Creating","startTime":"2022-03-16T08:32:06.4190749Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:21:02 GMT + - Wed, 16 Mar 2022 08:33:07 GMT expires: - '-1' pragma: @@ -953,21 +895,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Creating","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fd57622d-9eaf-49c0-aabf-7144912baec6","name":"fd57622d-9eaf-49c0-aabf-7144912baec6","status":"Creating","startTime":"2022-03-16T08:32:06.4190749Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:21:32 GMT + - Wed, 16 Mar 2022 08:33:38 GMT expires: - '-1' pragma: @@ -1001,21 +943,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Creating","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fd57622d-9eaf-49c0-aabf-7144912baec6","name":"fd57622d-9eaf-49c0-aabf-7144912baec6","status":"Creating","startTime":"2022-03-16T08:32:06.4190749Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:22:03 GMT + - Wed, 16 Mar 2022 08:34:09 GMT expires: - '-1' pragma: @@ -1049,21 +991,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Creating","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fd57622d-9eaf-49c0-aabf-7144912baec6","name":"fd57622d-9eaf-49c0-aabf-7144912baec6","status":"Creating","startTime":"2022-03-16T08:32:06.4190749Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:22:33 GMT + - Wed, 16 Mar 2022 08:34:39 GMT expires: - '-1' pragma: @@ -1097,21 +1039,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Creating","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fd57622d-9eaf-49c0-aabf-7144912baec6","name":"fd57622d-9eaf-49c0-aabf-7144912baec6","status":"Creating","startTime":"2022-03-16T08:32:06.4190749Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:23:03 GMT + - Wed, 16 Mar 2022 08:35:09 GMT expires: - '-1' pragma: @@ -1145,21 +1087,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Creating","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fd57622d-9eaf-49c0-aabf-7144912baec6","name":"fd57622d-9eaf-49c0-aabf-7144912baec6","status":"Creating","startTime":"2022-03-16T08:32:06.4190749Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:23:33 GMT + - Wed, 16 Mar 2022 08:35:39 GMT expires: - '-1' pragma: @@ -1193,21 +1135,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd57622d-9eaf-49c0-aabf-7144912baec6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","name":"0dc0bf4d-7ccf-49eb-81f1-457cd3a42501","status":"Succeeded","startTime":"2021-10-19T13:19:31.0788902Z","endTime":"2021-10-19T13:23:35.861398Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/fd57622d-9eaf-49c0-aabf-7144912baec6","name":"fd57622d-9eaf-49c0-aabf-7144912baec6","status":"Succeeded","startTime":"2022-03-16T08:32:06.4190749Z","endTime":"2022-03-16T08:35:59.0745576Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '659' + - '586' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:24:04 GMT + - Wed, 16 Mar 2022 08:36:09 GMT expires: - '-1' pragma: @@ -1241,23 +1183,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A23%3A35.858076Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"0849494b-a8af-6c9e-1886-a144dc209e24","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_fc32c0f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0849494b-a8af-6c9e-1886-a144dc209e24","fileSystemId":"0849494b-a8af-6c9e-1886-a144dc209e24","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-16T08%3A35%3A59.0656663Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:32:01.7389826Z"},"properties":{"fileSystemId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_9a97b363","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","fileSystemId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2146' + - '2087' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:24:04 GMT + - Wed, 16 Mar 2022 08:36:09 GMT etag: - - W/"datetime'2021-10-19T13%3A23%3A35.858076Z'" + - W/"datetime'2022-03-16T08%3A35%3A59.0656663Z'" expires: - '-1' pragma: @@ -1291,21 +1233,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '363' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:24:06 GMT + - Wed, 16 Mar 2022 08:36:11 GMT expires: - '-1' pragma: @@ -1339,23 +1281,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A23%3A35.858076Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"0849494b-a8af-6c9e-1886-a144dc209e24","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_fc32c0f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0849494b-a8af-6c9e-1886-a144dc209e24","fileSystemId":"0849494b-a8af-6c9e-1886-a144dc209e24","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-16T08%3A35%3A59.0656663Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:32:01.7389826Z"},"properties":{"fileSystemId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_9a97b363","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","fileSystemId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2146' + - '2087' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:24:07 GMT + - Wed, 16 Mar 2022 08:36:12 GMT etag: - - W/"datetime'2021-10-19T13%3A23%3A35.858076Z'" + - W/"datetime'2022-03-16T08%3A35%3A59.0656663Z'" expires: - '-1' pragma: @@ -1364,10 +1306,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1376,9 +1314,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T08:32:01.7389826Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": true}}}}' headers: Accept: @@ -1390,35 +1328,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '435' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A24%3A09.957101Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"0849494b-a8af-6c9e-1886-a144dc209e24","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_fc32c0f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0849494b-a8af-6c9e-1886-a144dc209e24","fileSystemId":"0849494b-a8af-6c9e-1886-a144dc209e24","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-16T08%3A36%3A15.9106012Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:32:01.7389826Z"},"properties":{"provisioningState":"Patching","fileSystemId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_9a97b363","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","fileSystemId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/056d1739-761e-400c-a1dc-8dbfb2c04032?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5a635c63-15c4-4dc7-971b-c42a69f82355?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2145' + - '2086' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:24:09 GMT + - Wed, 16 Mar 2022 08:36:15 GMT etag: - - W/"datetime'2021-10-19T13%3A24%3A09.957101Z'" + - W/"datetime'2022-03-16T08%3A36%3A15.9106012Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/056d1739-761e-400c-a1dc-8dbfb2c04032?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5a635c63-15c4-4dc7-971b-c42a69f82355?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1428,7 +1366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1448,21 +1386,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/056d1739-761e-400c-a1dc-8dbfb2c04032?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5a635c63-15c4-4dc7-971b-c42a69f82355?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/056d1739-761e-400c-a1dc-8dbfb2c04032","name":"056d1739-761e-400c-a1dc-8dbfb2c04032","status":"Succeeded","startTime":"2021-10-19T13:24:09.9607138Z","endTime":"2021-10-19T13:24:21.1811739Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/5a635c63-15c4-4dc7-971b-c42a69f82355","name":"5a635c63-15c4-4dc7-971b-c42a69f82355","status":"Succeeded","startTime":"2022-03-16T08:36:15.9192819Z","endTime":"2022-03-16T08:36:19.5354656Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '586' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:24:40 GMT + - Wed, 16 Mar 2022 08:36:45 GMT expires: - '-1' pragma: @@ -1496,23 +1434,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A24%3A21.1740039Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"0849494b-a8af-6c9e-1886-a144dc209e24","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_fc32c0f2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0849494b-a8af-6c9e-1886-a144dc209e24","fileSystemId":"0849494b-a8af-6c9e-1886-a144dc209e24","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-16T08%3A36%3A19.5276959Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T08:32:01.7389826Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_9a97b363","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","fileSystemId":"b63373bb-f24b-f0f2-d22e-247c179cfc76","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2356' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:24:40 GMT + - Wed, 16 Mar 2022 08:36:45 GMT etag: - - W/"datetime'2021-10-19T13%3A24%3A21.1740039Z'" + - W/"datetime'2022-03-16T08%3A36%3A19.5276959Z'" expires: - '-1' pragma: @@ -1544,33 +1482,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e33e1b52-49a0-4a6e-8cca-4e53b40a1d21?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f772e210-ba80-4dbd-95da-a6361ba0b860?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '465' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:24:41 GMT + - Wed, 16 Mar 2022 08:36:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e33e1b52-49a0-4a6e-8cca-4e53b40a1d21?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f772e210-ba80-4dbd-95da-a6361ba0b860?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1600,21 +1538,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e33e1b52-49a0-4a6e-8cca-4e53b40a1d21?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f772e210-ba80-4dbd-95da-a6361ba0b860?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e33e1b52-49a0-4a6e-8cca-4e53b40a1d21","name":"e33e1b52-49a0-4a6e-8cca-4e53b40a1d21","status":"Succeeded","startTime":"2021-10-19T13:24:42.328509Z","endTime":"2021-10-19T13:24:42.8167878Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/f772e210-ba80-4dbd-95da-a6361ba0b860","name":"f772e210-ba80-4dbd-95da-a6361ba0b860","status":"Succeeded","startTime":"2022-03-16T08:36:47.9040046Z","endTime":"2022-03-16T08:36:48.7635934Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '692' + - '612' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:25:12 GMT + - Wed, 16 Mar 2022 08:37:17 GMT expires: - '-1' pragma: @@ -1648,21 +1586,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:24:42Z","backupId":"bc6a820d-8828-bcb7-d33f-f6acd7cedc85","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:36:48Z","backupId":"115a7b7b-e002-635c-acd0-df98946d59cc","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:25:12 GMT + - Wed, 16 Mar 2022 08:37:18 GMT expires: - '-1' pragma: @@ -1696,21 +1634,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:24:42Z","backupId":"bc6a820d-8828-bcb7-d33f-f6acd7cedc85","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:36:48Z","backupId":"115a7b7b-e002-635c-acd0-df98946d59cc","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:25:13 GMT + - Wed, 16 Mar 2022 08:37:19 GMT expires: - '-1' pragma: @@ -1744,21 +1682,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:24:42Z","backupId":"bc6a820d-8828-bcb7-d33f-f6acd7cedc85","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:36:48Z","backupId":"115a7b7b-e002-635c-acd0-df98946d59cc","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:26:15 GMT + - Wed, 16 Mar 2022 08:38:20 GMT expires: - '-1' pragma: @@ -1767,10 +1705,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1792,21 +1726,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:24:42Z","backupId":"bc6a820d-8828-bcb7-d33f-f6acd7cedc85","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:36:51Z","backupId":"115a7b7b-e002-635c-acd0-df98946d59cc","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '671' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:27:17 GMT + - Wed, 16 Mar 2022 08:39:21 GMT expires: - '-1' pragma: @@ -1815,106 +1749,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume backup show - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -b - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:24:42Z","backupId":"bc6a820d-8828-bcb7-d33f-f6acd7cedc85","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' - headers: - cache-control: - - no-cache - content-length: - - '792' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 13:28:20 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 volume backup show - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -b - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:24:42Z","backupId":"bc6a820d-8828-bcb7-d33f-f6acd7cedc85","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' - headers: - cache-control: - - no-cache - content-length: - - '798' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 13:29: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: @@ -1936,23 +1770,23 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/accountBackups?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps266","name":"cli-acc-000002/ps266","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:11:20Z","backupId":"750af0a8-7223-5c69-2e7a-00a629bb92a9","size":0,"backupType":"Manual","label":"powershellBackupTest2","provisioningState":"Failed","failureReason":"Error + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/sdk-py-tests-backup-1","name":"cli-acc-000002/sdk-py-tests-backup-1","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-03-31T09:26:36Z","backupId":"66a0229d-a0af-a43c-7410-f2ec5dbba613","size":315392,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"sdk-py-tests-vol-1","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps6864","name":"cli-acc-000002/ps6864","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T21:33:46Z","backupId":"785b4edd-de9b-32d0-be7b-4096c48c9a85","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps8095","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps1789","name":"cli-acc-000002/ps1789","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T21:31:23Z","backupId":"78bcfc29-9f40-6ee3-6ef3-4409d2fbc19b","size":0,"backupType":"Manual","label":"powershellBackupTest2","provisioningState":"Failed","failureReason":"Error when creating - Could not spawn additional jobs for volume backup. Please - wait for the ongoing jobs to finish and try again.","volumeName":"ps7841","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps4177","name":"cli-acc-000002/ps4177","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:11:06Z","backupId":"2067f25e-8196-a565-1925-dad7bc499fcd","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps7841","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps2088","name":"cli-acc-000002/ps2088","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:38:44Z","backupId":"6a4f0ab3-dd7a-f7fa-363a-9f2cbaecb70d","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps5378","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-uzmz4lrcygk7i","name":"cli-acc-000002/cli-backup-uzmz4lrcygk7i","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-09-02T08:23:46Z","backupId":"a8940d64-0120-976e-03f7-58facea67a65","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-4x3scquh6so3aslw","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005","name":"cli-acc-000002/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:24:42Z","backupId":"bc6a820d-8828-bcb7-d33f-f6acd7cedc85","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' + wait for the ongoing jobs to finish and try again.","volumeName":"ps8095","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps1635","name":"cli-acc-000002/ps1635","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T22:33:13Z","backupId":"01ac4229-a5e2-dc02-45c1-76449a2f1b0f","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps8592","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps6503","name":"cli-acc-000002/ps6503","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T23:05:21Z","backupId":"fc5d4d7f-8f89-932b-6ccc-f539291415af","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps569","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps8714","name":"cli-acc-000002/ps8714","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T23:47:24Z","backupId":"9dffeb8a-5069-cbf6-993b-ddf2ad24dbf7","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps292","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps9492","name":"cli-acc-000002/ps9492","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-13T10:04:33Z","backupId":"f437ec82-e6e1-c1bf-3502-3edd275c8055","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps7917","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005","name":"cli-acc-000002/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T08:36:51Z","backupId":"115a7b7b-e002-635c-acd0-df98946d59cc","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' headers: cache-control: - no-cache content-length: - - '3342' + - '4786' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:29:22 GMT + - Wed, 16 Mar 2022 08:39:22 GMT expires: - '-1' pragma: @@ -1988,25 +1822,25 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/538565d6-261f-416d-b21a-42107d42582b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a41114c-fe11-4db9-ae5f-7e982048245d?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 13:29:27 GMT + - Wed, 16 Mar 2022 08:39:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/538565d6-261f-416d-b21a-42107d42582b?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a41114c-fe11-4db9-ae5f-7e982048245d?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2036,21 +1870,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/538565d6-261f-416d-b21a-42107d42582b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a41114c-fe11-4db9-ae5f-7e982048245d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/538565d6-261f-416d-b21a-42107d42582b","name":"538565d6-261f-416d-b21a-42107d42582b","status":"Deleting","startTime":"2021-10-19T13:29:28.2330891Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1a41114c-fe11-4db9-ae5f-7e982048245d","name":"1a41114c-fe11-4db9-ae5f-7e982048245d","status":"Deleting","startTime":"2022-03-16T08:39:26.4928655Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:29:58 GMT + - Wed, 16 Mar 2022 08:39:56 GMT expires: - '-1' pragma: @@ -2059,10 +1893,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2084,21 +1914,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/538565d6-261f-416d-b21a-42107d42582b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a41114c-fe11-4db9-ae5f-7e982048245d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/538565d6-261f-416d-b21a-42107d42582b","name":"538565d6-261f-416d-b21a-42107d42582b","status":"Deleting","startTime":"2021-10-19T13:29:28.2330891Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1a41114c-fe11-4db9-ae5f-7e982048245d","name":"1a41114c-fe11-4db9-ae5f-7e982048245d","status":"Deleting","startTime":"2022-03-16T08:39:26.4928655Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:30:28 GMT + - Wed, 16 Mar 2022 08:40:26 GMT expires: - '-1' pragma: @@ -2107,10 +1937,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2132,21 +1958,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/538565d6-261f-416d-b21a-42107d42582b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1a41114c-fe11-4db9-ae5f-7e982048245d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/538565d6-261f-416d-b21a-42107d42582b","name":"538565d6-261f-416d-b21a-42107d42582b","status":"Succeeded","startTime":"2021-10-19T13:29:28.2330891Z","endTime":"2021-10-19T13:30:49.3451999Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1a41114c-fe11-4db9-ae5f-7e982048245d","name":"1a41114c-fe11-4db9-ae5f-7e982048245d","status":"Succeeded","startTime":"2022-03-16T08:39:26.4928655Z","endTime":"2022-03-16T08:40:51.105294Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '585' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:30:59 GMT + - Wed, 16 Mar 2022 08:40:57 GMT expires: - '-1' pragma: @@ -2155,10 +1981,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2182,25 +2004,25 @@ interactions: ParameterSetName: - -g -a --backup-name -y User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6dcb02c-69a6-4922-a288-dc9baed55bf9?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/43940865-f27c-4b59-a541-60fb65de256b?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Oct 2021 13:31:00 GMT + - Wed, 16 Mar 2022 08:40:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6dcb02c-69a6-4922-a288-dc9baed55bf9?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/43940865-f27c-4b59-a541-60fb65de256b?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2230,21 +2052,21 @@ interactions: ParameterSetName: - -g -a --backup-name -y User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6dcb02c-69a6-4922-a288-dc9baed55bf9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/43940865-f27c-4b59-a541-60fb65de256b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6dcb02c-69a6-4922-a288-dc9baed55bf9","name":"f6dcb02c-69a6-4922-a288-dc9baed55bf9","status":"Deleting","startTime":"2021-10-19T13:31:01.0549665Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/43940865-f27c-4b59-a541-60fb65de256b","name":"43940865-f27c-4b59-a541-60fb65de256b","status":"Deleting","startTime":"2022-03-16T08:40:59.5518234Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '617' + - '555' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:31:30 GMT + - Wed, 16 Mar 2022 08:41:29 GMT expires: - '-1' pragma: @@ -2278,21 +2100,21 @@ interactions: ParameterSetName: - -g -a --backup-name -y User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6dcb02c-69a6-4922-a288-dc9baed55bf9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/43940865-f27c-4b59-a541-60fb65de256b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6dcb02c-69a6-4922-a288-dc9baed55bf9","name":"f6dcb02c-69a6-4922-a288-dc9baed55bf9","status":"Deleting","startTime":"2021-10-19T13:31:01.0549665Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/43940865-f27c-4b59-a541-60fb65de256b","name":"43940865-f27c-4b59-a541-60fb65de256b","status":"Deleting","startTime":"2022-03-16T08:40:59.5518234Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '617' + - '555' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:32:01 GMT + - Wed, 16 Mar 2022 08:41:59 GMT expires: - '-1' pragma: @@ -2326,21 +2148,21 @@ interactions: ParameterSetName: - -g -a --backup-name -y User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6dcb02c-69a6-4922-a288-dc9baed55bf9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/43940865-f27c-4b59-a541-60fb65de256b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f6dcb02c-69a6-4922-a288-dc9baed55bf9","name":"f6dcb02c-69a6-4922-a288-dc9baed55bf9","status":"Succeeded","startTime":"2021-10-19T13:31:01.0549665Z","endTime":"2021-10-19T13:32:09.7019979Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/43940865-f27c-4b59-a541-60fb65de256b","name":"43940865-f27c-4b59-a541-60fb65de256b","status":"Succeeded","startTime":"2022-03-16T08:40:59.5518234Z","endTime":"2022-03-16T08:42:04.5867554Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '628' + - '566' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:32:31 GMT + - Wed, 16 Mar 2022 08:42:29 GMT expires: - '-1' pragma: @@ -2374,23 +2196,23 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/accountBackups?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps266","name":"cli-acc-000002/ps266","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:11:20Z","backupId":"750af0a8-7223-5c69-2e7a-00a629bb92a9","size":0,"backupType":"Manual","label":"powershellBackupTest2","provisioningState":"Failed","failureReason":"Error + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/sdk-py-tests-backup-1","name":"cli-acc-000002/sdk-py-tests-backup-1","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-03-31T09:26:36Z","backupId":"66a0229d-a0af-a43c-7410-f2ec5dbba613","size":315392,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"sdk-py-tests-vol-1","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps6864","name":"cli-acc-000002/ps6864","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T21:33:46Z","backupId":"785b4edd-de9b-32d0-be7b-4096c48c9a85","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps8095","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps1789","name":"cli-acc-000002/ps1789","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T21:31:23Z","backupId":"78bcfc29-9f40-6ee3-6ef3-4409d2fbc19b","size":0,"backupType":"Manual","label":"powershellBackupTest2","provisioningState":"Failed","failureReason":"Error when creating - Could not spawn additional jobs for volume backup. Please - wait for the ongoing jobs to finish and try again.","volumeName":"ps7841","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps4177","name":"cli-acc-000002/ps4177","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:11:06Z","backupId":"2067f25e-8196-a565-1925-dad7bc499fcd","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps7841","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps2088","name":"cli-acc-000002/ps2088","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:38:44Z","backupId":"6a4f0ab3-dd7a-f7fa-363a-9f2cbaecb70d","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps5378","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-uzmz4lrcygk7i","name":"cli-acc-000002/cli-backup-uzmz4lrcygk7i","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-09-02T08:23:46Z","backupId":"a8940d64-0120-976e-03f7-58facea67a65","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-4x3scquh6so3aslw","useExistingSnapshot":false}}]}' + wait for the ongoing jobs to finish and try again.","volumeName":"ps8095","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps1635","name":"cli-acc-000002/ps1635","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T22:33:13Z","backupId":"01ac4229-a5e2-dc02-45c1-76449a2f1b0f","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps8592","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps6503","name":"cli-acc-000002/ps6503","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T23:05:21Z","backupId":"fc5d4d7f-8f89-932b-6ccc-f539291415af","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps569","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps8714","name":"cli-acc-000002/ps8714","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T23:47:24Z","backupId":"9dffeb8a-5069-cbf6-993b-ddf2ad24dbf7","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps292","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps9492","name":"cli-acc-000002/ps9492","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-13T10:04:33Z","backupId":"f437ec82-e6e1-c1bf-3502-3edd275c8055","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps7917","useExistingSnapshot":false}}]}' headers: cache-control: - no-cache content-length: - - '2673' + - '4206' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:32:32 GMT + - Wed, 16 Mar 2022 08:42:31 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 a53db604076..2f280d9b591 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"70afab01-8a04-4a73-bd45-401618f916e2\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f8719a0c-2016-4876-8881-ccc82cf6e487\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"b20b7e78-ad20-4a3e-b173-7487d631411c\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:39:39.4068656Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"699439b0-8d5a-419a-81ce-fc214fe13282\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/79f92303-f37b-43d2-a738-04309950819a?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9753f1bc-c12f-4fc1-938f-fe9d9c0e7d6a?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '781' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:25:42 GMT + - Wed, 16 Mar 2022 09:39:46 GMT expires: - '-1' pragma: @@ -57,9 +58,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3665f97b-9f24-4ce2-976e-1dbbd4dc224a + - 78b03fbc-7159-483b-a502-8236b2ff5b6a x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/79f92303-f37b-43d2-a738-04309950819a?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9753f1bc-c12f-4fc1-938f-fe9d9c0e7d6a?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:25:45 GMT + - Wed, 16 Mar 2022 09:39:49 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 82ddf786-d40e-4d7c-b50d-65ed6c6e21d1 + - f3c7f753-acff-4861-a3cb-584fbf1d07d2 status: code: 200 message: OK @@ -126,16 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"51121bb3-df58-473c-8ae0-c984194aeac9\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f8719a0c-2016-4876-8881-ccc82cf6e487\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"82670faf-f8ad-4dc8-af69-9c82457a223b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:39:39.4068656Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"699439b0-8d5a-419a-81ce-fc214fe13282\",\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\": @@ -144,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:25:45 GMT + - Wed, 16 Mar 2022 09:39:49 GMT etag: - - W/"51121bb3-df58-473c-8ae0-c984194aeac9" + - W/"82670faf-f8ad-4dc8-af69-9c82457a223b" expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 10b2ed10-524d-462d-8630-38e465d0cf28 + - 7b17c06b-40a7-4078-866b-f970ad44be5e status: code: 200 message: OK @@ -185,16 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"51121bb3-df58-473c-8ae0-c984194aeac9\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f8719a0c-2016-4876-8881-ccc82cf6e487\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"82670faf-f8ad-4dc8-af69-9c82457a223b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:39:39.4068656Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"699439b0-8d5a-419a-81ce-fc214fe13282\",\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\": @@ -203,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:25:46 GMT + - Wed, 16 Mar 2022 09:39:49 GMT etag: - - W/"51121bb3-df58-473c-8ae0-c984194aeac9" + - W/"82670faf-f8ad-4dc8-af69-9c82457a223b" expires: - '-1' pragma: @@ -219,25 +222,21 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1c98827-99c1-4329-8de9-6528d048a831 + - bc3e6aaa-f10d-43c7-b504-a99a6038c103 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": "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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-16T09:39:39.4068656Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +247,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '691' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"8738b9f1-90bf-4ca4-8ca1-3c8acd9c5194\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f8719a0c-2016-4876-8881-ccc82cf6e487\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"97d8d0ea-f8fa-4d22-89f9-8c3cc3e003a9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:39:39.4068656Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"699439b0-8d5a-419a-81ce-fc214fe13282\",\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/\\\"8738b9f1-90bf-4ca4-8ca1-3c8acd9c5194\\\"\",\r\n + \ \"etag\": \"W/\\\"97d8d0ea-f8fa-4d22-89f9-8c3cc3e003a9\\\"\",\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/\\\"8738b9f1-90bf-4ca4-8ca1-3c8acd9c5194\\\"\",\r\n + \ \"etag\": \"W/\\\"97d8d0ea-f8fa-4d22-89f9-8c3cc3e003a9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +288,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3b88d2d9-4178-476e-864e-5ff44bda3a61?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/62a5e1ce-ac3d-4599-ae56-d97b585be4b1?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2252' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:25:48 GMT + - Wed, 16 Mar 2022 09:39:51 GMT expires: - '-1' pragma: @@ -306,16 +306,12 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 39c00fdf-4f56-4b06-b675-d3516837a718 + - 205bf85e-07a8-4f52-a4b4-1c5ef1ccb01c x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -333,9 +329,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3b88d2d9-4178-476e-864e-5ff44bda3a61?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/62a5e1ce-ac3d-4599-ae56-d97b585be4b1?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:25:51 GMT + - Wed, 16 Mar 2022 09:39:54 GMT expires: - '-1' pragma: @@ -357,14 +353,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a33bf4f0-0584-4cf3-99b0-e1e3c90b9bb7 + - 2f34df9f-dbbc-4408-a231-86595e1c049a status: code: 200 message: OK @@ -382,26 +374,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"9a5d676d-881f-476c-ab4b-adc47448c804\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f8719a0c-2016-4876-8881-ccc82cf6e487\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"deda21fb-22d8-4a8b-a69b-c0c7b1d9d111\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:39:39.4068656Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"699439b0-8d5a-419a-81ce-fc214fe13282\",\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/\\\"9a5d676d-881f-476c-ab4b-adc47448c804\\\"\",\r\n + \ \"etag\": \"W/\\\"deda21fb-22d8-4a8b-a69b-c0c7b1d9d111\\\"\",\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/\\\"9a5d676d-881f-476c-ab4b-adc47448c804\\\"\",\r\n + \ \"etag\": \"W/\\\"deda21fb-22d8-4a8b-a69b-c0c7b1d9d111\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +409,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2254' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:25:51 GMT + - Wed, 16 Mar 2022 09:39:55 GMT etag: - - W/"9a5d676d-881f-476c-ab4b-adc47448c804" + - W/"deda21fb-22d8-4a8b-a69b-c0c7b1d9d111" expires: - '-1' pragma: @@ -432,14 +425,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0616ddcb-3770-46b9-8c38-37db65e67e6e + - 4c36a945-e719-4084-bf61-ec168da9948c status: code: 200 message: OK @@ -455,31 +444,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A25%3A59.9486447Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A40%3A01.9626987Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:39:57.3105053Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1057151c-70d8-457a-b82f-bcdf95207932?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3872c932-8ee1-4fd2-ba89-d796817f1b9a?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '413' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:26:00 GMT + - Wed, 16 Mar 2022 09:40:03 GMT etag: - - W/"datetime'2021-10-19T15%3A25%3A59.9486447Z'" + - W/"datetime'2022-03-16T09%3A40%3A01.9626987Z'" expires: - '-1' pragma: @@ -511,21 +500,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1057151c-70d8-457a-b82f-bcdf95207932?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3872c932-8ee1-4fd2-ba89-d796817f1b9a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1057151c-70d8-457a-b82f-bcdf95207932","name":"1057151c-70d8-457a-b82f-bcdf95207932","status":"Succeeded","startTime":"2021-10-19T15:25:59.9561803Z","endTime":"2021-10-19T15:26:00.0318059Z","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/3872c932-8ee1-4fd2-ba89-d796817f1b9a","name":"3872c932-8ee1-4fd2-ba89-d796817f1b9a","status":"Succeeded","startTime":"2022-03-16T09:40:01.9668977Z","endTime":"2022-03-16T09:40:01.9919591Z","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: cache-control: - no-cache content-length: - - '588' + - '525' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:26:31 GMT + - Wed, 16 Mar 2022 09:40:33 GMT expires: - '-1' pragma: @@ -534,10 +523,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -559,23 +544,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A26%3A00.0265355Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"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''2022-03-16T09%3A40%3A01.9866931Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:39:57.3105053Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '460' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:26:31 GMT + - Wed, 16 Mar 2022 09:40:33 GMT etag: - - W/"datetime'2021-10-19T15%3A26%3A00.0265355Z'" + - W/"datetime'2022-03-16T09%3A40%3A01.9866931Z'" expires: - '-1' pragma: @@ -584,10 +569,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -596,8 +577,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +589,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A26%3A38.6919518Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A40%3A39.0096283Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:40:35.3437093Z"},"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/southcentralusstage/operationResults/db82cab8-7fb4-4970-a990-e98a5a99d6da?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce7a84f6-0dc6-4cf8-991c-a44c3d88efab?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:26:38 GMT + - Wed, 16 Mar 2022 09:40:40 GMT etag: - - W/"datetime'2021-10-19T15%3A26%3A38.6919518Z'" + - W/"datetime'2022-03-16T09%3A40%3A39.0096283Z'" expires: - '-1' pragma: @@ -664,21 +645,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db82cab8-7fb4-4970-a990-e98a5a99d6da?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce7a84f6-0dc6-4cf8-991c-a44c3d88efab?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db82cab8-7fb4-4970-a990-e98a5a99d6da","name":"db82cab8-7fb4-4970-a990-e98a5a99d6da","status":"Succeeded","startTime":"2021-10-19T15:26:38.6984816Z","endTime":"2021-10-19T15:26:38.8284913Z","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/ce7a84f6-0dc6-4cf8-991c-a44c3d88efab","name":"ce7a84f6-0dc6-4cf8-991c-a44c3d88efab","status":"Succeeded","startTime":"2022-03-16T09:40:39.0134411Z","endTime":"2022-03-16T09:40:39.1134493Z","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: cache-control: - no-cache content-length: - - '627' + - '555' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:27:09 GMT + - Wed, 16 Mar 2022 09:41:10 GMT expires: - '-1' pragma: @@ -712,23 +693,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A26%3A38.8187489Z''\"","location":"southcentralusstage","properties":{"poolId":"7cb2754a-1ad7-c8a2-a4a3-76ad63b75c91","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-16T09%3A40%3A39.1006064Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:40:35.3437093Z"},"properties":{"poolId":"419d99f1-c66e-7f80-8fda-e0d58b8fcde5","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '691' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:27:10 GMT + - Wed, 16 Mar 2022 09:41:10 GMT etag: - - W/"datetime'2021-10-19T15%3A26%3A38.8187489Z'" + - W/"datetime'2022-03-16T09%3A40%3A39.1006064Z'" expires: - '-1' pragma: @@ -750,7 +731,8 @@ interactions: message: OK - request: 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"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +743,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '337' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A27%3A16.692345Z''\"","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"}}' + 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''2022-03-16T09%3A41%3A14.5979529Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:41:12.0704605Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 cache-control: - no-cache content-length: - - '887' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:27:16 GMT + - Wed, 16 Mar 2022 09:41:15 GMT etag: - - W/"datetime'2021-10-19T15%3A27%3A16.692345Z'" + - W/"datetime'2022-03-16T09%3A41%3A14.5979529Z'" expires: - '-1' pragma: @@ -797,7 +779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -817,69 +799,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Creating","startTime":"2021-10-19T15:27:16.6994774Z","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: - - Tue, 19 Oct 2021 15:27:47 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.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Creating","startTime":"2021-10-19T15:27:16.6994774Z","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/93a36aa4-8adb-4b7c-b2ca-e7bc73557341","name":"93a36aa4-8adb-4b7c-b2ca-e7bc73557341","status":"Creating","startTime":"2022-03-16T09:41:14.6042613Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:28:18 GMT + - Wed, 16 Mar 2022 09:41:45 GMT expires: - '-1' pragma: @@ -888,10 +822,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -913,21 +843,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Creating","startTime":"2021-10-19T15:27:16.6994774Z","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/93a36aa4-8adb-4b7c-b2ca-e7bc73557341","name":"93a36aa4-8adb-4b7c-b2ca-e7bc73557341","status":"Creating","startTime":"2022-03-16T09:41:14.6042613Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:28:48 GMT + - Wed, 16 Mar 2022 09:42:15 GMT expires: - '-1' pragma: @@ -936,10 +866,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -961,21 +887,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Creating","startTime":"2021-10-19T15:27:16.6994774Z","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/93a36aa4-8adb-4b7c-b2ca-e7bc73557341","name":"93a36aa4-8adb-4b7c-b2ca-e7bc73557341","status":"Creating","startTime":"2022-03-16T09:41:14.6042613Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:29:18 GMT + - Wed, 16 Mar 2022 09:42:46 GMT expires: - '-1' pragma: @@ -984,10 +910,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1009,21 +931,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Creating","startTime":"2021-10-19T15:27:16.6994774Z","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/93a36aa4-8adb-4b7c-b2ca-e7bc73557341","name":"93a36aa4-8adb-4b7c-b2ca-e7bc73557341","status":"Creating","startTime":"2022-03-16T09:41:14.6042613Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:29:48 GMT + - Wed, 16 Mar 2022 09:43:16 GMT expires: - '-1' pragma: @@ -1032,10 +954,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1057,21 +975,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Creating","startTime":"2021-10-19T15:27:16.6994774Z","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/93a36aa4-8adb-4b7c-b2ca-e7bc73557341","name":"93a36aa4-8adb-4b7c-b2ca-e7bc73557341","status":"Creating","startTime":"2022-03-16T09:41:14.6042613Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:30:18 GMT + - Wed, 16 Mar 2022 09:43:46 GMT expires: - '-1' pragma: @@ -1080,10 +998,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1105,21 +1019,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Creating","startTime":"2021-10-19T15:27:16.6994774Z","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/93a36aa4-8adb-4b7c-b2ca-e7bc73557341","name":"93a36aa4-8adb-4b7c-b2ca-e7bc73557341","status":"Creating","startTime":"2022-03-16T09:41:14.6042613Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:30:49 GMT + - Wed, 16 Mar 2022 09:44:16 GMT expires: - '-1' pragma: @@ -1128,10 +1042,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1153,21 +1063,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Creating","startTime":"2021-10-19T15:27:16.6994774Z","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/93a36aa4-8adb-4b7c-b2ca-e7bc73557341","name":"93a36aa4-8adb-4b7c-b2ca-e7bc73557341","status":"Creating","startTime":"2022-03-16T09:41:14.6042613Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:31:19 GMT + - Wed, 16 Mar 2022 09:44:46 GMT expires: - '-1' pragma: @@ -1176,10 +1086,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1201,21 +1107,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/93a36aa4-8adb-4b7c-b2ca-e7bc73557341?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","name":"8d5d8556-70e6-4f3b-a71c-ee4acd7f6024","status":"Succeeded","startTime":"2021-10-19T15:27:16.6994774Z","endTime":"2021-10-19T15:31:20.9752658Z","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/93a36aa4-8adb-4b7c-b2ca-e7bc73557341","name":"93a36aa4-8adb-4b7c-b2ca-e7bc73557341","status":"Succeeded","startTime":"2022-03-16T09:41:14.6042613Z","endTime":"2022-03-16T09:45:11.5940819Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:31:49 GMT + - Wed, 16 Mar 2022 09:45:16 GMT expires: - '-1' pragma: @@ -1224,10 +1130,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1249,23 +1151,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A31%3A20.9698006Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8be4cf92","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A45%3A11.5827826Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:41:12.0704605Z"},"properties":{"fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6dfe7ae5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"679c3d4d-751b-571e-e5ed-149c324b8a95","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:31:50 GMT + - Wed, 16 Mar 2022 09:45:17 GMT etag: - - W/"datetime'2021-10-19T15%3A31%3A20.9698006Z'" + - W/"datetime'2022-03-16T09%3A45%3A11.5827826Z'" expires: - '-1' pragma: @@ -1274,10 +1176,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1299,21 +1197,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:31:52 GMT + - Wed, 16 Mar 2022 09:45:18 GMT expires: - '-1' pragma: @@ -1347,23 +1245,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A31%3A20.9698006Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8be4cf92","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A45%3A11.5827826Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:41:12.0704605Z"},"properties":{"fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6dfe7ae5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"679c3d4d-751b-571e-e5ed-149c324b8a95","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:31:54 GMT + - Wed, 16 Mar 2022 09:45:18 GMT etag: - - W/"datetime'2021-10-19T15%3A31%3A20.9698006Z'" + - W/"datetime'2022-03-16T09%3A45%3A11.5827826Z'" expires: - '-1' pragma: @@ -1384,9 +1282,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:41:12.0704605Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "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: @@ -1398,35 +1296,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '427' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A31%3A57.7877093Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8be4cf92","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A45%3A21.3219588Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:41:12.0704605Z"},"properties":{"provisioningState":"Patching","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6dfe7ae5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"679c3d4d-751b-571e-e5ed-149c324b8a95","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb181138-6a5a-45fe-abd9-358e1fa15f54?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6f652d79-b20c-4b4e-8b46-209cca2980a9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2146' + - '2070' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:31:57 GMT + - Wed, 16 Mar 2022 09:45:20 GMT etag: - - W/"datetime'2021-10-19T15%3A31%3A57.7877093Z'" + - W/"datetime'2022-03-16T09%3A45%3A21.3219588Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb181138-6a5a-45fe-abd9-358e1fa15f54?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6f652d79-b20c-4b4e-8b46-209cca2980a9?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1436,7 +1334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1456,21 +1354,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb181138-6a5a-45fe-abd9-358e1fa15f54?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6f652d79-b20c-4b4e-8b46-209cca2980a9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb181138-6a5a-45fe-abd9-358e1fa15f54","name":"fb181138-6a5a-45fe-abd9-358e1fa15f54","status":"Succeeded","startTime":"2021-10-19T15:31:57.7924808Z","endTime":"2021-10-19T15:32:04.0765443Z","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/6f652d79-b20c-4b4e-8b46-209cca2980a9","name":"6f652d79-b20c-4b4e-8b46-209cca2980a9","status":"Succeeded","startTime":"2022-03-16T09:45:21.3274447Z","endTime":"2022-03-16T09:45:25.0337281Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:32:27 GMT + - Wed, 16 Mar 2022 09:45:51 GMT expires: - '-1' pragma: @@ -1479,10 +1377,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1504,23 +1398,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A32%3A04.0711313Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8be4cf92","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A45%3A25.0236827Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:41:12.0704605Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"679c3d4d-751b-571e-e5ed-149c324b8a95","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6dfe7ae5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"679c3d4d-751b-571e-e5ed-149c324b8a95","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:32:27 GMT + - Wed, 16 Mar 2022 09:45:51 GMT etag: - - W/"datetime'2021-10-19T15%3A32%3A04.0711313Z'" + - W/"datetime'2022-03-16T09%3A45%3A25.0236827Z'" expires: - '-1' pragma: @@ -1529,10 +1423,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1552,33 +1442,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aaddbdea-c0f8-4411-9aa3-871648418da5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f9a9c5d3-a857-4d5a-a1fd-7fca12c107d0?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '457' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:32:29 GMT + - Wed, 16 Mar 2022 09:45:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aaddbdea-c0f8-4411-9aa3-871648418da5?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f9a9c5d3-a857-4d5a-a1fd-7fca12c107d0?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1588,7 +1478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1608,21 +1498,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aaddbdea-c0f8-4411-9aa3-871648418da5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f9a9c5d3-a857-4d5a-a1fd-7fca12c107d0?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aaddbdea-c0f8-4411-9aa3-871648418da5","name":"aaddbdea-c0f8-4411-9aa3-871648418da5","status":"Succeeded","startTime":"2021-10-19T15:32:30.7229569Z","endTime":"2021-10-19T15:32:31.2773878Z","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/f9a9c5d3-a857-4d5a-a1fd-7fca12c107d0","name":"f9a9c5d3-a857-4d5a-a1fd-7fca12c107d0","status":"Succeeded","startTime":"2022-03-16T09:45:52.8525242Z","endTime":"2022-03-16T09:45:55.3833717Z","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"}}' headers: cache-control: - no-cache content-length: - - '693' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:33:00 GMT + - Wed, 16 Mar 2022 09:46:23 GMT expires: - '-1' pragma: @@ -1656,21 +1546,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:32:31Z","backupId":"7d0a82dc-6d77-f390-d9d2-355f0213a1aa","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:45:55Z","backupId":"b4468b93-2a50-ef00-e874-86c6a48d7e40","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:33:00 GMT + - Wed, 16 Mar 2022 09:46:23 GMT expires: - '-1' pragma: @@ -1704,69 +1594,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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=2021-08-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '416' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 15:33:02 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 volume backup show - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -b - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:32:31Z","backupId":"7d0a82dc-6d77-f390-d9d2-355f0213a1aa","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '792' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:33:09 GMT + - Wed, 16 Mar 2022 09:46:24 GMT expires: - '-1' pragma: @@ -1800,21 +1642,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:32:31Z","backupId":"7d0a82dc-6d77-f390-d9d2-355f0213a1aa","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:45:55Z","backupId":"b4468b93-2a50-ef00-e874-86c6a48d7e40","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:34:11 GMT + - Wed, 16 Mar 2022 09:46:25 GMT expires: - '-1' pragma: @@ -1848,21 +1690,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:32:31Z","backupId":"7d0a82dc-6d77-f390-d9d2-355f0213a1aa","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:45:55Z","backupId":"b4468b93-2a50-ef00-e874-86c6a48d7e40","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:35:12 GMT + - Wed, 16 Mar 2022 09:47:27 GMT expires: - '-1' pragma: @@ -1896,21 +1738,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:32:31Z","backupId":"7d0a82dc-6d77-f390-d9d2-355f0213a1aa","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:45:55Z","backupId":"b4468b93-2a50-ef00-e874-86c6a48d7e40","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:36:14 GMT + - Wed, 16 Mar 2022 09:48:29 GMT expires: - '-1' pragma: @@ -1944,21 +1786,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:32:31Z","backupId":"7d0a82dc-6d77-f390-d9d2-355f0213a1aa","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:45:55Z","backupId":"b4468b93-2a50-ef00-e874-86c6a48d7e40","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:37:16 GMT + - Wed, 16 Mar 2022 09:49:30 GMT expires: - '-1' pragma: @@ -1992,21 +1834,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:32:35Z","backupId":"7d0a82dc-6d77-f390-d9d2-355f0213a1aa","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:45:58Z","backupId":"b4468b93-2a50-ef00-e874-86c6a48d7e40","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:38:17 GMT + - Wed, 16 Mar 2022 09:50:32 GMT expires: - '-1' pragma: @@ -2040,23 +1882,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A32%3A04.0711313Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8be4cf92","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A45%3A25.0236827Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:41:12.0704605Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"679c3d4d-751b-571e-e5ed-149c324b8a95","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6dfe7ae5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"679c3d4d-751b-571e-e5ed-149c324b8a95","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:38:19 GMT + - Wed, 16 Mar 2022 09:50:34 GMT etag: - - W/"datetime'2021-10-19T15%3A32%3A04.0711313Z'" + - W/"datetime'2022-03-16T09%3A45%3A25.0236827Z'" expires: - '-1' pragma: @@ -2065,10 +1907,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2077,9 +1915,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:41:12.0704605Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": false}}}}' headers: Accept: @@ -2091,35 +1929,35 @@ interactions: Connection: - keep-alive Content-Length: - - '420' + - '428' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A38%3A21.7829557Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8be4cf92","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A50%3A37.8002264Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:41:12.0704605Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6dfe7ae5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"679c3d4d-751b-571e-e5ed-149c324b8a95","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91526019-f94a-4501-af0c-b5495dd997cb?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dc84b3b6-267f-4df5-8c7f-987155f223db?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2458' + - '2331' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:38:21 GMT + - Wed, 16 Mar 2022 09:50:37 GMT etag: - - W/"datetime'2021-10-19T15%3A38%3A21.7829557Z'" + - W/"datetime'2022-03-16T09%3A50%3A37.8002264Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91526019-f94a-4501-af0c-b5495dd997cb?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dc84b3b6-267f-4df5-8c7f-987155f223db?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2149,21 +1987,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91526019-f94a-4501-af0c-b5495dd997cb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dc84b3b6-267f-4df5-8c7f-987155f223db?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/91526019-f94a-4501-af0c-b5495dd997cb","name":"91526019-f94a-4501-af0c-b5495dd997cb","status":"Succeeded","startTime":"2021-10-19T15:38:21.7848956Z","endTime":"2021-10-19T15:38:32.0048171Z","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/dc84b3b6-267f-4df5-8c7f-987155f223db","name":"dc84b3b6-267f-4df5-8c7f-987155f223db","status":"Succeeded","startTime":"2022-03-16T09:50:37.8111642Z","endTime":"2022-03-16T09:50:47.9401661Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:38:51 GMT + - Wed, 16 Mar 2022 09:51:07 GMT expires: - '-1' pragma: @@ -2197,23 +2035,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A38%3A31.9991486Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8be4cf92","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","fileSystemId":"3a48235b-51ff-a3e1-ea42-1d0cfc15316a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A50%3A47.9298514Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:41:12.0704605Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"679c3d4d-751b-571e-e5ed-149c324b8a95","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6dfe7ae5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"679c3d4d-751b-571e-e5ed-149c324b8a95","fileSystemId":"679c3d4d-751b-571e-e5ed-149c324b8a95","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2460' + - '2333' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:38:52 GMT + - Wed, 16 Mar 2022 09:51:07 GMT etag: - - W/"datetime'2021-10-19T15%3A38%3A31.9991486Z'" + - W/"datetime'2022-03-16T09%3A50%3A47.9298514Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml index 732acad073a..04f904ee30f 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_export_policy.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"6697e8ba-fef3-4b7e-8ff6-a00d1f85e35f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c35ed08e-856a-4d56-9b91-fa7926fd151f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:47:17.0612609Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:39:07.5973454Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"e6710826-d618-440c-821f-56645781da2f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2e805432-0cbd-4e08-94cd-e750d888ea56\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/b5ed4b94-16a3-481c-bef3-7b9539dcff85?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/93ffcbc7-b3cd-472d-a2f2-4ae5b3ac32a1?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '769' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:47:22 GMT + - Tue, 15 Mar 2022 14:39:16 GMT expires: - '-1' pragma: @@ -58,12 +58,61 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ecaf540-5682-4862-bedb-c3dc19abe91a + - 5fb47561-30bc-4b06-ac27-856ac8fdddfc x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 - message: '' + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/93ffcbc7-b3cd-472d-a2f2-4ae5b3ac32a1?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 14:39:19 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: + - 1fb12d08-484f-4690-a99b-168d0cc26ca9 + status: + code: 200 + message: OK - request: body: null headers: @@ -78,9 +127,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/b5ed4b94-16a3-481c-bef3-7b9539dcff85?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/93ffcbc7-b3cd-472d-a2f2-4ae5b3ac32a1?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:47:25 GMT + - Tue, 15 Mar 2022 14:39:29 GMT expires: - '-1' pragma: @@ -109,10 +158,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f959bf60-999e-4dcf-a8c2-551c9c06729e + - 633f613f-40f0-4c3b-968d-afe086b60bb6 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -127,17 +176,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c7af609b-bcc0-4aa3-bc30-ba6e76171d0b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"56dd8d01-847b-4b67-a325-f2882d575597\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:47:17.0612609Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:39:07.5973454Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e6710826-d618-440c-821f-56645781da2f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2e805432-0cbd-4e08-94cd-e750d888ea56\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -146,13 +195,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:47:25 GMT + - Tue, 15 Mar 2022 14:39:29 GMT etag: - - W/"c7af609b-bcc0-4aa3-bc30-ba6e76171d0b" + - W/"56dd8d01-847b-4b67-a325-f2882d575597" expires: - '-1' pragma: @@ -169,10 +218,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c58900c-c03c-420c-862d-4ef6196d32ce + - bc8607a4-bd4e-438f-9d8a-939c28f294fd status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -187,17 +236,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c7af609b-bcc0-4aa3-bc30-ba6e76171d0b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"56dd8d01-847b-4b67-a325-f2882d575597\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:47:17.0612609Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:39:07.5973454Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e6710826-d618-440c-821f-56645781da2f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2e805432-0cbd-4e08-94cd-e750d888ea56\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -206,13 +255,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:47:26 GMT + - Tue, 15 Mar 2022 14:39:30 GMT etag: - - W/"c7af609b-bcc0-4aa3-bc30-ba6e76171d0b" + - W/"56dd8d01-847b-4b67-a325-f2882d575597" expires: - '-1' pragma: @@ -222,20 +271,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 926a200d-c434-4c50-8c07-b4ad027f45ba + - 1c5f2c3d-59c6-4b0f-9868-c5b7e350bcc0 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T10:47:17.0612609Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T14:39:07.5973454Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -252,33 +297,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"3b100f21-07bb-4085-af68-f6c07ccc84cf\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"1c0391b6-3af7-4df9-8b75-c6a6fd7fb35f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:47:17.0612609Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:39:07.5973454Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"e6710826-d618-440c-821f-56645781da2f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2e805432-0cbd-4e08-94cd-e750d888ea56\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"3b100f21-07bb-4085-af68-f6c07ccc84cf\\\"\",\r\n + \ \"etag\": \"W/\\\"1c0391b6-3af7-4df9-8b75-c6a6fd7fb35f\\\"\",\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/\\\"3b100f21-07bb-4085-af68-f6c07ccc84cf\\\"\",\r\n + \ \"etag\": \"W/\\\"1c0391b6-3af7-4df9-8b75-c6a6fd7fb35f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -293,15 +338,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/23a27fe8-8121-4ace-aa59-b6bd07480e23?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9ce38acd-62fc-4f3e-b231-9722e8844e63?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2258' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:47:27 GMT + - Tue, 15 Mar 2022 14:39:31 GMT expires: - '-1' pragma: @@ -311,19 +356,60 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b2b1c338-2501-49e4-adae-50889a25e226 + - a61bf523-efa6-4510-9097-45371cdca89b x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9ce38acd-62fc-4f3e-b231-9722e8844e63?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 14:39:34 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: + - e9568a33-7b11-4edb-9bdb-d2b8a621c64a status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -338,9 +424,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/23a27fe8-8121-4ace-aa59-b6bd07480e23?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9ce38acd-62fc-4f3e-b231-9722e8844e63?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -352,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:47:30 GMT + - Tue, 15 Mar 2022 14:39:45 GMT expires: - '-1' pragma: @@ -362,17 +448,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 67a9f811-b3a9-4081-9999-e98121c82309 + - e38755f3-215a-46a1-acfd-e5c9daf85389 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -387,27 +469,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"b0bb9db7-1f3c-4149-9e71-df5e15b03b65\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cb369719-e362-4c16-b387-6ff866f5bb21\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:47:17.0612609Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:39:07.5973454Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"e6710826-d618-440c-821f-56645781da2f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2e805432-0cbd-4e08-94cd-e750d888ea56\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"b0bb9db7-1f3c-4149-9e71-df5e15b03b65\\\"\",\r\n + \ \"etag\": \"W/\\\"cb369719-e362-4c16-b387-6ff866f5bb21\\\"\",\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/\\\"b0bb9db7-1f3c-4149-9e71-df5e15b03b65\\\"\",\r\n + \ \"etag\": \"W/\\\"cb369719-e362-4c16-b387-6ff866f5bb21\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -422,13 +504,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2260' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:47:30 GMT + - Tue, 15 Mar 2022 14:39:45 GMT etag: - - W/"b0bb9db7-1f3c-4149-9e71-df5e15b03b65" + - W/"cb369719-e362-4c16-b387-6ff866f5bb21" expires: - '-1' pragma: @@ -438,17 +520,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3ae9b9bb-3586-457d-9cce-edd2bdb24620 + - 5a1dc8c0-0523-433e-9e0d-fc05da1402d4 status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -461,31 +539,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T10%3A47%3A37.8431815Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:47:34.2194172Z"},"properties":{"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''2022-03-15T14%3A39%3A51.4827971Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:39:47.8330088Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7fed1e55-4490-42ea-a6a4-0392ab71327e?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d466bc83-470f-4317-b5bb-bfd8b516f1f1?api-version=2021-10-01 cache-control: - no-cache content-length: - - '419' + - '413' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:47:39 GMT + - Tue, 15 Mar 2022 14:39:51 GMT etag: - - W/"datetime'2022-01-07T10%3A47%3A37.8431815Z'" + - W/"datetime'2022-03-15T14%3A39%3A51.4827971Z'" expires: - '-1' pragma: @@ -517,21 +595,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7fed1e55-4490-42ea-a6a4-0392ab71327e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d466bc83-470f-4317-b5bb-bfd8b516f1f1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7fed1e55-4490-42ea-a6a4-0392ab71327e","name":"7fed1e55-4490-42ea-a6a4-0392ab71327e","status":"Succeeded","startTime":"2022-01-07T10:47:37.8482076Z","endTime":"2022-01-07T10:47:37.8732094Z","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/southcentralusstage/operationResults/d466bc83-470f-4317-b5bb-bfd8b516f1f1","name":"d466bc83-470f-4317-b5bb-bfd8b516f1f1","status":"Succeeded","startTime":"2022-03-15T14:39:51.4902035Z","endTime":"2022-03-15T14:39:51.5502713Z","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: cache-control: - no-cache content-length: - - '531' + - '525' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:48:09 GMT + - Tue, 15 Mar 2022 14:40:23 GMT expires: - '-1' pragma: @@ -540,10 +618,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -565,23 +639,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T10%3A47%3A37.8688149Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:47:34.2194172Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T14%3A39%3A51.5330555Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:39:47.8330088Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:48:09 GMT + - Tue, 15 Mar 2022 14:40:23 GMT etag: - - W/"datetime'2022-01-07T10%3A47%3A37.8688149Z'" + - W/"datetime'2022-03-15T14%3A39%3A51.5330555Z'" expires: - '-1' pragma: @@ -590,10 +664,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -614,31 +684,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T10%3A48%3A16.6485155Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:11.1558528Z"},"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''2022-03-15T14%3A40%3A29.6279604Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:40:25.9648091Z"},"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/southcentralusstage/operationResults/eebf348b-f51c-4db9-b11d-ae936ef3bf5e?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2b26b45-d153-4971-812c-507a32160e7e?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:48:17 GMT + - Tue, 15 Mar 2022 14:40:30 GMT etag: - - W/"datetime'2022-01-07T10%3A48%3A16.6485155Z'" + - W/"datetime'2022-03-15T14%3A40%3A29.6279604Z'" expires: - '-1' pragma: @@ -670,21 +740,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eebf348b-f51c-4db9-b11d-ae936ef3bf5e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2b26b45-d153-4971-812c-507a32160e7e?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eebf348b-f51c-4db9-b11d-ae936ef3bf5e","name":"eebf348b-f51c-4db9-b11d-ae936ef3bf5e","status":"Succeeded","startTime":"2022-01-07T10:48:16.6570421Z","endTime":"2022-01-07T10:48:16.7570874Z","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/southcentralusstage/operationResults/c2b26b45-d153-4971-812c-507a32160e7e","name":"c2b26b45-d153-4971-812c-507a32160e7e","status":"Succeeded","startTime":"2022-03-15T14:40:29.6335658Z","endTime":"2022-03-15T14:40:29.9935731Z","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: cache-control: - no-cache content-length: - - '561' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:48:47 GMT + - Tue, 15 Mar 2022 14:41:00 GMT expires: - '-1' pragma: @@ -718,23 +788,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T10%3A48%3A16.7486353Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:11.1558528Z"},"properties":{"poolId":"7425732b-1d12-88bc-6301-024b41adcf06","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T14%3A40%3A29.9772093Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:40:25.9648091Z"},"properties":{"poolId":"0006236b-99e9-7624-77b3-1a9c286395e2","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '697' + - '691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:48:48 GMT + - Tue, 15 Mar 2022 14:41:00 GMT etag: - - W/"datetime'2022-01-07T10%3A48%3A16.7486353Z'" + - W/"datetime'2022-03-15T14%3A40%3A29.9772093Z'" expires: - '-1' pragma: @@ -756,7 +826,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -767,32 +838,32 @@ interactions: Connection: - keep-alive Content-Length: - - '342' + - '368' 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 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A48%3A51.9359677Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"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''2022-03-15T14%3A41%3A08.2850324Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 cache-control: - no-cache content-length: - - '814' + - '871' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:48:52 GMT + - Tue, 15 Mar 2022 14:41:08 GMT etag: - - W/"datetime'2022-01-07T10%3A48%3A51.9359677Z'" + - W/"datetime'2022-03-15T14%3A41%3A08.2850324Z'" expires: - '-1' pragma: @@ -804,7 +875,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -825,21 +896,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Creating","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:49:22 GMT + - Tue, 15 Mar 2022 14:41:38 GMT expires: - '-1' pragma: @@ -848,10 +919,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -874,21 +941,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Creating","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:49:53 GMT + - Tue, 15 Mar 2022 14:42:09 GMT expires: - '-1' pragma: @@ -897,10 +964,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -923,21 +986,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Creating","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:50:23 GMT + - Tue, 15 Mar 2022 14:42:40 GMT expires: - '-1' pragma: @@ -946,10 +1009,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -972,21 +1031,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Creating","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:50:53 GMT + - Tue, 15 Mar 2022 14:43:10 GMT expires: - '-1' pragma: @@ -995,10 +1054,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1021,21 +1076,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Creating","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:51:24 GMT + - Tue, 15 Mar 2022 14:43:40 GMT expires: - '-1' pragma: @@ -1044,10 +1099,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1070,21 +1121,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Creating","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:51:54 GMT + - Tue, 15 Mar 2022 14:44:10 GMT expires: - '-1' pragma: @@ -1093,10 +1144,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1119,21 +1166,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Creating","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:52:24 GMT + - Tue, 15 Mar 2022 14:44:41 GMT expires: - '-1' pragma: @@ -1142,10 +1189,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1168,21 +1211,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Creating","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:52:54 GMT + - Tue, 15 Mar 2022 14:45:11 GMT expires: - '-1' pragma: @@ -1191,10 +1234,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1217,21 +1256,66 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","name":"bd0345dd-d2bf-4cdf-ab20-7fa986d92bdb","status":"Succeeded","startTime":"2022-01-07T10:48:51.9637452Z","endTime":"2022-01-07T10:53:14.1787686Z","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/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Creating","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '584' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:53:24 GMT + - Tue, 15 Mar 2022 14:45:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --rule-index --allowed-clients + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/38247663-b2c5-4c5d-a1d5-500996b08a6b","name":"38247663-b2c5-4c5d-a1d5-500996b08a6b","status":"Succeeded","startTime":"2022-03-15T14:41:08.2919237Z","endTime":"2022-03-15T14:45:48.1115646Z","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: + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 14:46:11 GMT expires: - '-1' pragma: @@ -1240,10 +1324,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1266,23 +1346,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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A53%3A14.1749151Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A45%3A48.1047342Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2048' + - '2075' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:53:25 GMT + - Tue, 15 Mar 2022 14:46:12 GMT etag: - - W/"datetime'2022-01-07T10%3A53%3A14.1749151Z'" + - W/"datetime'2022-03-15T14%3A45%3A48.1047342Z'" expires: - '-1' pragma: @@ -1291,10 +1371,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1317,23 +1393,23 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A53%3A14.1749151Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A45%3A48.1047342Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2048' + - '2075' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:53:26 GMT + - Tue, 15 Mar 2022 14:46:13 GMT etag: - - W/"datetime'2022-01-07T10%3A53%3A14.1749151Z'" + - W/"datetime'2022-03-15T14%3A45%3A48.1047342Z'" expires: - '-1' pragma: @@ -1380,29 +1456,29 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A53%3A28.141944Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Patching","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A46%3A15.4545771Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Patching","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/32a1355a-a9b3-4715-acbd-a13807f9c86b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a8255e59-507d-4870-ba62-3dd86c64ba1e?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2046' + - '2074' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:53:28 GMT + - Tue, 15 Mar 2022 14:46:15 GMT etag: - - W/"datetime'2022-01-07T10%3A53%3A28.141944Z'" + - W/"datetime'2022-03-15T14%3A46%3A15.4545771Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/32a1355a-a9b3-4715-acbd-a13807f9c86b?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a8255e59-507d-4870-ba62-3dd86c64ba1e?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1433,21 +1509,21 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/32a1355a-a9b3-4715-acbd-a13807f9c86b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a8255e59-507d-4870-ba62-3dd86c64ba1e?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/32a1355a-a9b3-4715-acbd-a13807f9c86b","name":"32a1355a-a9b3-4715-acbd-a13807f9c86b","status":"Succeeded","startTime":"2022-01-07T10:53:28.144867Z","endTime":"2022-01-07T10:53:30.891228Z","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/southcentralusstage/operationResults/a8255e59-507d-4870-ba62-3dd86c64ba1e","name":"a8255e59-507d-4870-ba62-3dd86c64ba1e","status":"Succeeded","startTime":"2022-03-15T14:46:15.4622092Z","endTime":"2022-03-15T14:46:18.3134913Z","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: cache-control: - no-cache content-length: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:53:58 GMT + - Tue, 15 Mar 2022 14:46:45 GMT expires: - '-1' pragma: @@ -1482,23 +1558,23 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A53%3A30.8863777Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A46%3A18.3050543Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2340' + - '2367' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:53:58 GMT + - Tue, 15 Mar 2022 14:46:45 GMT etag: - - W/"datetime'2022-01-07T10%3A53%3A30.8863777Z'" + - W/"datetime'2022-03-15T14%3A46%3A18.3050543Z'" expires: - '-1' pragma: @@ -1533,23 +1609,23 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A53%3A30.8863777Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A46%3A18.3050543Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2340' + - '2367' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:53:58 GMT + - Tue, 15 Mar 2022 14:46:46 GMT etag: - - W/"datetime'2022-01-07T10%3A53%3A30.8863777Z'" + - W/"datetime'2022-03-15T14%3A46%3A18.3050543Z'" expires: - '-1' pragma: @@ -1600,29 +1676,29 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A54%3A00.3325731Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Patching","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A46%3A48.4954183Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Patching","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7d28819f-efb2-4fec-b97a-60758aab0498?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bf375945-d222-4115-b73a-cdbe90002837?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2339' + - '2366' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:53:59 GMT + - Tue, 15 Mar 2022 14:46:48 GMT etag: - - W/"datetime'2022-01-07T10%3A54%3A00.3325731Z'" + - W/"datetime'2022-03-15T14%3A46%3A48.4954183Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7d28819f-efb2-4fec-b97a-60758aab0498?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bf375945-d222-4115-b73a-cdbe90002837?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1653,21 +1729,21 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7d28819f-efb2-4fec-b97a-60758aab0498?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bf375945-d222-4115-b73a-cdbe90002837?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7d28819f-efb2-4fec-b97a-60758aab0498","name":"7d28819f-efb2-4fec-b97a-60758aab0498","status":"Succeeded","startTime":"2022-01-07T10:54:00.3450872Z","endTime":"2022-01-07T10:54:03.1424437Z","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/southcentralusstage/operationResults/bf375945-d222-4115-b73a-cdbe90002837","name":"bf375945-d222-4115-b73a-cdbe90002837","status":"Succeeded","startTime":"2022-03-15T14:46:48.4979783Z","endTime":"2022-03-15T14:46:50.9265259Z","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: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:54:30 GMT + - Tue, 15 Mar 2022 14:47:18 GMT expires: - '-1' pragma: @@ -1702,23 +1778,23 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A54%3A03.1339741Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A46%3A50.9207627Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2631' + - '2658' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:54:30 GMT + - Tue, 15 Mar 2022 14:47:18 GMT etag: - - W/"datetime'2022-01-07T10%3A54%3A03.1339741Z'" + - W/"datetime'2022-03-15T14%3A46%3A50.9207627Z'" expires: - '-1' pragma: @@ -1752,23 +1828,23 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A54%3A03.1339741Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A46%3A50.9207627Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2631' + - '2658' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:54:31 GMT + - Tue, 15 Mar 2022 14:47:19 GMT etag: - - W/"datetime'2022-01-07T10%3A54%3A03.1339741Z'" + - W/"datetime'2022-03-15T14%3A46%3A50.9207627Z'" expires: - '-1' pragma: @@ -1777,10 +1853,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1802,23 +1874,23 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A54%3A03.1339741Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A46%3A50.9207627Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2631' + - '2658' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:54:32 GMT + - Tue, 15 Mar 2022 14:47:20 GMT etag: - - W/"datetime'2022-01-07T10%3A54%3A03.1339741Z'" + - W/"datetime'2022-03-15T14%3A46%3A50.9207627Z'" expires: - '-1' pragma: @@ -1827,10 +1899,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1866,29 +1934,29 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A54%3A34.3461605Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Patching","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A47%3A22.4960395Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Patching","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8db0408a-b199-4608-bfde-52d56b5c284d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b17b10a7-7e77-414a-b06e-fb4a23c0d296?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2630' + - '2657' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:54:33 GMT + - Tue, 15 Mar 2022 14:47:22 GMT etag: - - W/"datetime'2022-01-07T10%3A54%3A34.3461605Z'" + - W/"datetime'2022-03-15T14%3A47%3A22.4960395Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8db0408a-b199-4608-bfde-52d56b5c284d?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b17b10a7-7e77-414a-b06e-fb4a23c0d296?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1918,21 +1986,21 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8db0408a-b199-4608-bfde-52d56b5c284d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b17b10a7-7e77-414a-b06e-fb4a23c0d296?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8db0408a-b199-4608-bfde-52d56b5c284d","name":"8db0408a-b199-4608-bfde-52d56b5c284d","status":"Succeeded","startTime":"2022-01-07T10:54:34.3560716Z","endTime":"2022-01-07T10:54:36.968687Z","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/southcentralusstage/operationResults/b17b10a7-7e77-414a-b06e-fb4a23c0d296","name":"b17b10a7-7e77-414a-b06e-fb4a23c0d296","status":"Succeeded","startTime":"2022-03-15T14:47:22.4977251Z","endTime":"2022-03-15T14:47:24.7430978Z","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: cache-control: - no-cache content-length: - - '583' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:55:03 GMT + - Tue, 15 Mar 2022 14:47:52 GMT expires: - '-1' pragma: @@ -1941,10 +2009,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1966,23 +2030,23 @@ interactions: ParameterSetName: - -g -a -p -v --rule-index User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A54%3A36.9616677Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A47%3A24.7361977Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2339' + - '2366' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:55:04 GMT + - Tue, 15 Mar 2022 14:47:52 GMT etag: - - W/"datetime'2022-01-07T10%3A54%3A36.9616677Z'" + - W/"datetime'2022-03-15T14%3A47%3A24.7361977Z'" expires: - '-1' pragma: @@ -1991,10 +2055,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2016,23 +2076,23 @@ interactions: ParameterSetName: - --resource-group -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A54%3A36.9616677Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:48:49.2365747Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_7dcf04f9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"05c2a19d-197a-2b78-2317-afde4c420584","fileSystemId":"05c2a19d-197a-2b78-2317-afde4c420584","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A47%3A24.7361977Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:41:03.4686558Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_a96852b0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","fileSystemId":"41d083a5-9a9e-c5a3-090c-e4362f94d1dd","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2339' + - '2366' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:59:05 GMT + - Tue, 15 Mar 2022 14:51:53 GMT etag: - - W/"datetime'2022-01-07T10%3A54%3A36.9616677Z'" + - W/"datetime'2022-03-15T14%3A47%3A24.7361977Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_backup.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_backup.yaml index 33967d4ede7..fb7f2d89b38 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_backup.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_account_backup.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"566fee2c-a1da-4f03-a556-d1bdb7bfe59e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"a50f616b-1167-49d5-8295-fb7dcb56e186\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"65f78c94-a203-4492-a0e8-074d371de797\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:43:20.9152272Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"56a354a4-3a71-4577-a402-835041ca0fea\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f9d43ce6-2fe0-456d-be98-c0565ff32a4f?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/481bcdd0-6803-4a20-a51c-52e77637f671?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '789' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:02:37 GMT + - Tue, 15 Mar 2022 15:43:28 GMT expires: - '-1' pragma: @@ -57,9 +58,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1b3bc1e4-20d4-44e0-8479-dec2becd80c5 + - ebf9a615-93f7-486a-b836-8b50acb56ecb x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -77,9 +78,58 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f9d43ce6-2fe0-456d-be98-c0565ff32a4f?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/481bcdd0-6803-4a20-a51c-52e77637f671?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 15:43:32 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: + - 073415a0-db1a-44d8-862b-38d47827bcf6 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/481bcdd0-6803-4a20-a51c-52e77637f671?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:02:40 GMT + - Tue, 15 Mar 2022 15:43:43 GMT expires: - '-1' pragma: @@ -108,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 10a1cbff-90c7-4796-935c-dd82b35230f5 + - 95f964bf-1264-4668-bbf5-3a3de8cf5639 status: code: 200 message: OK @@ -126,16 +176,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"1844c8d2-0197-49d2-a0c9-1e1166c2b21a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a50f616b-1167-49d5-8295-fb7dcb56e186\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"09a9f221-fac4-4fbd-83ac-e34d4780453e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:43:20.9152272Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"56a354a4-3a71-4577-a402-835041ca0fea\",\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\": @@ -144,13 +195,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '790' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:02:41 GMT + - Tue, 15 Mar 2022 15:43:43 GMT etag: - - W/"1844c8d2-0197-49d2-a0c9-1e1166c2b21a" + - W/"09a9f221-fac4-4fbd-83ac-e34d4780453e" expires: - '-1' pragma: @@ -167,7 +218,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f59545a-6ba9-42ad-8322-8573a8049fd5 + - 920201ba-3024-475d-a428-d2ad4f49f639 status: code: 200 message: OK @@ -185,16 +236,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"1844c8d2-0197-49d2-a0c9-1e1166c2b21a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a50f616b-1167-49d5-8295-fb7dcb56e186\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"09a9f221-fac4-4fbd-83ac-e34d4780453e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:43:20.9152272Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"56a354a4-3a71-4577-a402-835041ca0fea\",\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\": @@ -203,13 +255,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '790' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:02:43 GMT + - Tue, 15 Mar 2022 15:43:42 GMT etag: - - W/"1844c8d2-0197-49d2-a0c9-1e1166c2b21a" + - W/"09a9f221-fac4-4fbd-83ac-e34d4780453e" expires: - '-1' pragma: @@ -219,25 +271,21 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 95f32e85-a358-4389-911c-1ede48ad21ed + - 79d9c0f2-7376-4971-8a04-e92cfab2f908 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T15:43:20.9152272Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +296,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"9c26f63b-27c9-4882-82f5-96d8189b4b05\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"a50f616b-1167-49d5-8295-fb7dcb56e186\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"232b65f6-d2b1-457a-820c-1df3aa3fbf81\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:43:20.9152272Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"56a354a4-3a71-4577-a402-835041ca0fea\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\",\r\n - \ \"etag\": \"W/\\\"9c26f63b-27c9-4882-82f5-96d8189b4b05\\\"\",\r\n + \ \"etag\": \"W/\\\"232b65f6-d2b1-457a-820c-1df3aa3fbf81\\\"\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\",\r\n - \ \"etag\": \"W/\\\"9c26f63b-27c9-4882-82f5-96d8189b4b05\\\"\",\r\n + \ \"etag\": \"W/\\\"232b65f6-d2b1-457a-820c-1df3aa3fbf81\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +337,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/44b3567e-908c-4f74-93f9-217d59876b20?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3bc49ffd-4927-4f3b-817a-b6987a013123?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2276' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:02:44 GMT + - Tue, 15 Mar 2022 15:43:45 GMT expires: - '-1' pragma: @@ -306,16 +355,12 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30322e2f-1187-4ddc-a586-52be9a5bb614 + - ec4fea7e-1762-4f94-b142-0cb820c57e2f x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -333,9 +378,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/44b3567e-908c-4f74-93f9-217d59876b20?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3bc49ffd-4927-4f3b-817a-b6987a013123?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +392,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:02:47 GMT + - Tue, 15 Mar 2022 15:43:48 GMT expires: - '-1' pragma: @@ -357,14 +402,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a4ad96e3-add6-44f6-aee3-dfb2fee98259 + - 34c75388-f8c4-4d96-94e3-ac227c28b075 status: code: 200 message: OK @@ -382,26 +423,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"330a676c-f686-43b3-a1a2-2b1fa0223017\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a50f616b-1167-49d5-8295-fb7dcb56e186\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"e26a4a36-e444-486b-80d2-db8d4af97fa8\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:43:20.9152272Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"56a354a4-3a71-4577-a402-835041ca0fea\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\",\r\n - \ \"etag\": \"W/\\\"330a676c-f686-43b3-a1a2-2b1fa0223017\\\"\",\r\n + \ \"etag\": \"W/\\\"e26a4a36-e444-486b-80d2-db8d4af97fa8\\\"\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\",\r\n - \ \"etag\": \"W/\\\"330a676c-f686-43b3-a1a2-2b1fa0223017\\\"\",\r\n + \ \"etag\": \"W/\\\"e26a4a36-e444-486b-80d2-db8d4af97fa8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +458,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2278' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:02:48 GMT + - Tue, 15 Mar 2022 15:43:48 GMT etag: - - W/"330a676c-f686-43b3-a1a2-2b1fa0223017" + - W/"e26a4a36-e444-486b-80d2-db8d4af97fa8" expires: - '-1' pragma: @@ -432,14 +474,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 393e0eb1-e7ac-42f8-8008-87993a6f1ada + - 52eec539-38c3-4d25-bd0b-721c4a9dce84 status: code: 200 message: OK @@ -455,31 +493,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-10-19T13%3A02%3A54.6159399Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T15%3A43%3A54.4214064Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:43:50.9177765Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1288db3e-f466-4ab1-8041-6ac5fcca3798?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/99f91302-048d-4a5d-8688-e5719774cdd8?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '421' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:02:55 GMT + - Tue, 15 Mar 2022 15:43:55 GMT etag: - - W/"datetime'2021-10-19T13%3A02%3A54.6159399Z'" + - W/"datetime'2022-03-15T15%3A43%3A54.4214064Z'" expires: - '-1' pragma: @@ -491,7 +529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -511,21 +549,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1288db3e-f466-4ab1-8041-6ac5fcca3798?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/99f91302-048d-4a5d-8688-e5719774cdd8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1288db3e-f466-4ab1-8041-6ac5fcca3798","name":"1288db3e-f466-4ab1-8041-6ac5fcca3798","status":"Succeeded","startTime":"2021-10-19T13:02:54.6228129Z","endTime":"2021-10-19T13:02:54.6628141Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/99f91302-048d-4a5d-8688-e5719774cdd8","name":"99f91302-048d-4a5d-8688-e5719774cdd8","status":"Succeeded","startTime":"2022-03-15T15:43:54.4259121Z","endTime":"2022-03-15T15:43:54.455911Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '588' + - '532' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:03:24 GMT + - Tue, 15 Mar 2022 15:44:25 GMT expires: - '-1' pragma: @@ -534,10 +572,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -559,23 +593,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-10-19T13%3A02%3A54.6559835Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T15%3A43%3A54.4487623Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:43:50.9177765Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '468' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:03:25 GMT + - Tue, 15 Mar 2022 15:44:25 GMT etag: - - W/"datetime'2021-10-19T13%3A02%3A54.6559835Z'" + - W/"datetime'2022-03-15T15%3A43%3A54.4487623Z'" expires: - '-1' pragma: @@ -584,10 +618,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -596,8 +626,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +638,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A03%3A37.6411097Z''\"","location":"southcentralusstage","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_account_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''2022-03-15T15%3A44%3A34.7684936Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:44:29.8268355Z"},"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/southcentralusstage/operationResults/ba0c33d1-9e88-4bd9-982f-90ee98866b59?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b92d3d45-316c-4f0a-81ab-921c28283983?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '584' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:03:38 GMT + - Tue, 15 Mar 2022 15:44:35 GMT etag: - - W/"datetime'2021-10-19T13%3A03%3A37.6411097Z'" + - W/"datetime'2022-03-15T15%3A44%3A34.7684936Z'" expires: - '-1' pragma: @@ -644,7 +674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -664,21 +694,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba0c33d1-9e88-4bd9-982f-90ee98866b59?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b92d3d45-316c-4f0a-81ab-921c28283983?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba0c33d1-9e88-4bd9-982f-90ee98866b59","name":"ba0c33d1-9e88-4bd9-982f-90ee98866b59","status":"Succeeded","startTime":"2021-10-19T13:03:37.6499561Z","endTime":"2021-10-19T13:03:37.7607406Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/b92d3d45-316c-4f0a-81ab-921c28283983","name":"b92d3d45-316c-4f0a-81ab-921c28283983","status":"Succeeded","startTime":"2022-03-15T15:44:34.7834993Z","endTime":"2022-03-15T15:44:34.9095459Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: cache-control: - no-cache content-length: - - '627' + - '563' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:04:08 GMT + - Tue, 15 Mar 2022 15:45:06 GMT expires: - '-1' pragma: @@ -712,23 +742,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A03%3A37.7503595Z''\"","location":"southcentralusstage","properties":{"poolId":"c88f797d-1bf6-90f7-562b-021ddb0e9652","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A44%3A34.9002031Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:44:29.8268355Z"},"properties":{"poolId":"14e09ca2-cd63-5682-a454-4e0800d749e9","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '699' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:04:08 GMT + - Tue, 15 Mar 2022 15:45:06 GMT etag: - - W/"datetime'2021-10-19T13%3A03%3A37.7503595Z'" + - W/"datetime'2022-03-15T15%3A44%3A34.9002031Z'" expires: - '-1' pragma: @@ -750,7 +780,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +792,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '345' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A04%3A20.0103723Z''\"","location":"southcentralusstage","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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_account_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''2022-03-15T15%3A45%3A12.0338497Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:45:07.8282810Z"},"properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '858' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:04:21 GMT + - Tue, 15 Mar 2022 15:45:12 GMT etag: - - W/"datetime'2021-10-19T13%3A04%3A20.0103723Z'" + - W/"datetime'2022-03-15T15%3A45%3A12.0338497Z'" expires: - '-1' pragma: @@ -797,7 +828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -817,21 +848,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Creating","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:04:50 GMT + - Tue, 15 Mar 2022 15:45:42 GMT expires: - '-1' pragma: @@ -840,10 +871,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -865,21 +892,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Creating","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:05:21 GMT + - Tue, 15 Mar 2022 15:46:13 GMT expires: - '-1' pragma: @@ -888,10 +915,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -913,21 +936,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Creating","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:05:51 GMT + - Tue, 15 Mar 2022 15:46:44 GMT expires: - '-1' pragma: @@ -936,10 +959,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -961,21 +980,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Creating","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:06:22 GMT + - Tue, 15 Mar 2022 15:47:14 GMT expires: - '-1' pragma: @@ -984,10 +1003,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1009,21 +1024,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Creating","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:06:51 GMT + - Tue, 15 Mar 2022 15:47:44 GMT expires: - '-1' pragma: @@ -1032,10 +1047,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1057,21 +1068,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Creating","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:07:22 GMT + - Tue, 15 Mar 2022 15:48:14 GMT expires: - '-1' pragma: @@ -1080,10 +1091,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1105,21 +1112,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Creating","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:07:52 GMT + - Tue, 15 Mar 2022 15:48:44 GMT expires: - '-1' pragma: @@ -1128,10 +1135,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1153,21 +1156,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Creating","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:08:23 GMT + - Tue, 15 Mar 2022 15:49:14 GMT expires: - '-1' pragma: @@ -1201,21 +1204,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25807333-74f4-4c3b-b3c9-af02a8ef96d4","name":"25807333-74f4-4c3b-b3c9-af02a8ef96d4","status":"Succeeded","startTime":"2021-10-19T13:04:20.0169225Z","endTime":"2021-10-19T13:08:51.3707618Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:08:53 GMT + - Tue, 15 Mar 2022 15:49:45 GMT expires: - '-1' pragma: @@ -1249,23 +1252,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A08%3A51.366822Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_24671d91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f85638d8-1a18-8487-2dc9-4ba11767142c","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Creating","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '2146' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:08:53 GMT - etag: - - W/"datetime'2021-10-19T13%3A08%3A51.366822Z'" + - Tue, 15 Mar 2022 15:50:15 GMT expires: - '-1' pragma: @@ -1289,31 +1290,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles vault list + - netappfiles volume create Connection: - keep-alive ParameterSetName: - - -g -a + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/373fee37-1662-4415-a70e-6fda5ddd27f5","name":"373fee37-1662-4415-a70e-6fda5ddd27f5","status":"Succeeded","startTime":"2022-03-15T15:45:12.0398763Z","endTime":"2022-03-15T15:50:16.4093002Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '416' + - '586' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:08:55 GMT + - Tue, 15 Mar 2022 15:50:46 GMT expires: - '-1' pragma: @@ -1337,33 +1338,33 @@ 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 + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A08%3A51.366822Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_24671d91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f85638d8-1a18-8487-2dc9-4ba11767142c","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A50%3A16.4024893Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:45:07.8282810Z"},"properties":{"fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2bf65240","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2146' + - '2087' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:08:57 GMT + - Tue, 15 Mar 2022 15:50:46 GMT etag: - - W/"datetime'2021-10-19T13%3A08%3A51.366822Z'" + - W/"datetime'2022-03-15T15%3A50%3A16.4024893Z'" expires: - '-1' pragma: @@ -1384,49 +1385,36 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", - "backupEnabled": true}}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume update + - netappfiles vault list Connection: - keep-alive - Content-Length: - - '419' - Content-Type: - - application/json ParameterSetName: - - -g -a -p -v --vault-id --backup-enabled + - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A08%3A59.9768741Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_24671d91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f85638d8-1a18-8487-2dc9-4ba11767142c","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/22d8a4cb-fa53-4efb-9c80-1c01c071f690?api-version=2021-08-01 cache-control: - no-cache content-length: - - '2146' + - '363' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:08:59 GMT - etag: - - W/"datetime'2021-10-19T13%3A08%3A59.9768741Z'" + - Tue, 15 Mar 2022 15:50:46 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/22d8a4cb-fa53-4efb-9c80-1c01c071f690?api-version=2021-08-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1435,18 +1423,16 @@ interactions: - 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 + code: 200 + message: OK - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1456,21 +1442,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/22d8a4cb-fa53-4efb-9c80-1c01c071f690?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/22d8a4cb-fa53-4efb-9c80-1c01c071f690","name":"22d8a4cb-fa53-4efb-9c80-1c01c071f690","status":"Succeeded","startTime":"2021-10-19T13:08:59.9842712Z","endTime":"2021-10-19T13:09:19.3545867Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A50%3A16.4024893Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:45:07.8282810Z"},"properties":{"fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2bf65240","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '660' + - '2087' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:09:30 GMT + - Tue, 15 Mar 2022 15:50:47 GMT + etag: + - W/"datetime'2022-03-15T15%3A50%3A16.4024893Z'" expires: - '-1' pragma: @@ -1479,10 +1467,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1491,94 +1475,95 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"tags": {"CreatedOnDate": "2022-03-15T15:45:07.8282810Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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: + - '435' + Content-Type: + - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A09%3A19.3505237Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_24671d91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f85638d8-1a18-8487-2dc9-4ba11767142c","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A50%3A50.3971617Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:45:07.8282810Z"},"properties":{"provisioningState":"Patching","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2bf65240","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a0af42ae-cfc6-4237-8724-8beafa655246?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2459' + - '2086' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:09:30 GMT + - Tue, 15 Mar 2022 15:50:50 GMT etag: - - W/"datetime'2021-10-19T13%3A09%3A19.3505237Z'" + - W/"datetime'2022-03-15T15%3A50%3A50.3971617Z'" expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a0af42ae-cfc6-4237-8724-8beafa655246?api-version=2021-10-01&operationResultResponseType=Location 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-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"location": "southcentralusstage"}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup create + - netappfiles volume update Connection: - keep-alive - Content-Length: - - '35' - Content-Type: - - application/json ParameterSetName: - - -g -a -p -v -l --backup-name + - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a0af42ae-cfc6-4237-8724-8beafa655246?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a0af42ae-cfc6-4237-8724-8beafa655246","name":"a0af42ae-cfc6-4237-8724-8beafa655246","status":"Succeeded","startTime":"2022-03-15T15:50:50.4008684Z","endTime":"2022-03-15T15:50:53.9501749Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ece40b21-901e-4853-b286-a1f157ecc2c2?api-version=2021-08-01 cache-control: - no-cache content-length: - - '582' + - '586' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:09:32 GMT + - Tue, 15 Mar 2022 15:51:20 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ece40b21-901e-4853-b286-a1f157ecc2c2?api-version=2021-08-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1587,13 +1572,11 @@ interactions: - 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 + code: 200 + message: OK - request: body: null headers: @@ -1602,27 +1585,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup create + - netappfiles volume update Connection: - keep-alive ParameterSetName: - - -g -a -p -v -l --backup-name + - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ece40b21-901e-4853-b286-a1f157ecc2c2?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ece40b21-901e-4853-b286-a1f157ecc2c2","name":"ece40b21-901e-4853-b286-a1f157ecc2c2","status":"Succeeded","startTime":"2021-10-19T13:09:32.587205Z","endTime":"2021-10-19T13:09:33.0091211Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A50%3A53.9435831Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:45:07.8282810Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2bf65240","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '692' + - '2356' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:10:02 GMT + - Tue, 15 Mar 2022 15:51:20 GMT + etag: + - W/"datetime'2022-03-15T15%3A50%3A53.9435831Z'" expires: - '-1' pragma: @@ -1631,10 +1616,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1643,82 +1624,88 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "southcentralusstage"}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - netappfiles volume backup create Connection: - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e2934538-0441-41ae-b9a8-69743f7463d5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '792' + - '465' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:10:03 GMT + - Tue, 15 Mar 2022 15:51:21 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e2934538-0441-41ae-b9a8-69743f7463d5?api-version=2021-10-01&operationResultResponseType=Location 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-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 account backup show + - netappfiles volume backup create Connection: - keep-alive ParameterSetName: - - -g -a --backup-name + - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e2934538-0441-41ae-b9a8-69743f7463d5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005","name":"cli-acc-000002/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e2934538-0441-41ae-b9a8-69743f7463d5","name":"e2934538-0441-41ae-b9a8-69743f7463d5","status":"Succeeded","startTime":"2022-03-15T15:51:22.0727717Z","endTime":"2022-03-15T15:51:22.5045865Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '662' + - '612' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:10:05 GMT + - Tue, 15 Mar 2022 15:51:52 GMT expires: - '-1' pragma: @@ -1742,31 +1729,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup show + - netappfiles volume backup create Connection: - keep-alive ParameterSetName: - - -g -a -p -v -b + - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:51:22Z","backupId":"85d2d408-7abc-9d0d-d1ec-971360d95de4","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:10:07 GMT + - Tue, 15 Mar 2022 15:51:52 GMT expires: - '-1' pragma: @@ -1794,27 +1781,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume backup show + - netappfiles account backup show Connection: - keep-alive ParameterSetName: - - -g -a -p -v -b + - -g -a --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005","name":"cli-acc-000002/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:51:22Z","backupId":"85d2d408-7abc-9d0d-d1ec-971360d95de4","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '573' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:11:08 GMT + - Tue, 15 Mar 2022 15:51:59 GMT expires: - '-1' pragma: @@ -1823,10 +1810,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1848,21 +1831,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:51:22Z","backupId":"85d2d408-7abc-9d0d-d1ec-971360d95de4","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:12:15 GMT + - Tue, 15 Mar 2022 15:52:00 GMT expires: - '-1' pragma: @@ -1896,21 +1879,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:51:22Z","backupId":"85d2d408-7abc-9d0d-d1ec-971360d95de4","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:13:17 GMT + - Tue, 15 Mar 2022 15:53:01 GMT expires: - '-1' pragma: @@ -1944,21 +1927,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:51:22Z","backupId":"85d2d408-7abc-9d0d-d1ec-971360d95de4","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:14:19 GMT + - Tue, 15 Mar 2022 15:54:02 GMT expires: - '-1' pragma: @@ -1967,6 +1950,10 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1988,21 +1975,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:51:22Z","backupId":"85d2d408-7abc-9d0d-d1ec-971360d95de4","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:15:21 GMT + - Tue, 15 Mar 2022 15:55:03 GMT expires: - '-1' pragma: @@ -2036,21 +2023,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T13:09:33Z","backupId":"82031da2-04ac-306b-b1a9-dfd4787e57f7","size":311296,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:51:25Z","backupId":"85d2d408-7abc-9d0d-d1ec-971360d95de4","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '671' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:16:28 GMT + - Tue, 15 Mar 2022 15:56:04 GMT expires: - '-1' pragma: @@ -2084,21 +2071,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '363' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:16:29 GMT + - Tue, 15 Mar 2022 15:56:05 GMT expires: - '-1' pragma: @@ -2132,23 +2119,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A09%3A19.3505237Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_24671d91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f85638d8-1a18-8487-2dc9-4ba11767142c","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A50%3A53.9435831Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:45:07.8282810Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2bf65240","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2356' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:16:36 GMT + - Tue, 15 Mar 2022 15:56:06 GMT etag: - - W/"datetime'2021-10-19T13%3A09%3A19.3505237Z'" + - W/"datetime'2022-03-15T15%3A50%3A53.9435831Z'" expires: - '-1' pragma: @@ -2157,10 +2144,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2169,9 +2152,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-15T15:45:07.8282810Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": false}}}}' headers: Accept: @@ -2183,35 +2166,35 @@ interactions: Connection: - keep-alive Content-Length: - - '420' + - '436' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A16%3A39.0653587Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_24671d91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f85638d8-1a18-8487-2dc9-4ba11767142c","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A56%3A10.3117326Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:45:07.8282810Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2bf65240","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a53aa90-5ead-4e25-8a0b-d5e9e1d44817?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/544d0251-460e-47a9-a344-55f42950c3ad?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2458' + - '2355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:16:38 GMT + - Tue, 15 Mar 2022 15:56:10 GMT etag: - - W/"datetime'2021-10-19T13%3A16%3A39.0653587Z'" + - W/"datetime'2022-03-15T15%3A56%3A10.3117326Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a53aa90-5ead-4e25-8a0b-d5e9e1d44817?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/544d0251-460e-47a9-a344-55f42950c3ad?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2221,7 +2204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -2241,21 +2224,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a53aa90-5ead-4e25-8a0b-d5e9e1d44817?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/544d0251-460e-47a9-a344-55f42950c3ad?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a53aa90-5ead-4e25-8a0b-d5e9e1d44817","name":"6a53aa90-5ead-4e25-8a0b-d5e9e1d44817","status":"Succeeded","startTime":"2021-10-19T13:16:39.0690537Z","endTime":"2021-10-19T13:16:50.6935158Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/544d0251-460e-47a9-a344-55f42950c3ad","name":"544d0251-460e-47a9-a344-55f42950c3ad","status":"Succeeded","startTime":"2022-03-15T15:56:10.3170725Z","endTime":"2022-03-15T15:56:16.6397945Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '586' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:17:09 GMT + - Tue, 15 Mar 2022 15:56:40 GMT expires: - '-1' pragma: @@ -2289,23 +2272,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A16%3A50.6895493Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_24671d91","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f85638d8-1a18-8487-2dc9-4ba11767142c","fileSystemId":"f85638d8-1a18-8487-2dc9-4ba11767142c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A56%3A16.6309698Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:45:07.8282810Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2bf65240","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","fileSystemId":"19633c5d-2ad0-5c1e-0775-5a0261f0b4a5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2460' + - '2357' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:17:09 GMT + - Tue, 15 Mar 2022 15:56:40 GMT etag: - - W/"datetime'2021-10-19T13%3A16%3A50.6895493Z'" + - W/"datetime'2022-03-15T15%3A56%3A16.6309698Z'" 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 410a5031811..039ebe04ea4 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 @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A22%3A40.8112662Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:22:35.8181614Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:22:40.0523857Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:22:40.0523857Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A51%3A23.4187979Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:51:18.8839081Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:51:22.63958Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:51:22.63958Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df77158e-5a21-4a82-b9c3-bf57da58f255?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e6ccc1bc-7fcd-4e8e-9218-c602ceb251c9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '704' + - '700' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:22:41 GMT + - Tue, 15 Mar 2022 10:51:24 GMT etag: - - W/"datetime'2022-01-07T08%3A22%3A40.8112662Z'" + - W/"datetime'2022-03-15T10%3A51%3A23.4187979Z'" expires: - '-1' pragma: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df77158e-5a21-4a82-b9c3-bf57da58f255?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e6ccc1bc-7fcd-4e8e-9218-c602ceb251c9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/df77158e-5a21-4a82-b9c3-bf57da58f255","name":"df77158e-5a21-4a82-b9c3-bf57da58f255","status":"Succeeded","startTime":"2022-01-07T08:22:40.8135928Z","endTime":"2022-01-07T08:22:40.8485298Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e6ccc1bc-7fcd-4e8e-9218-c602ceb251c9","name":"e6ccc1bc-7fcd-4e8e-9218-c602ceb251c9","status":"Succeeded","startTime":"2022-03-15T10:51:23.4166326Z","endTime":"2022-03-15T10:51:23.4479169Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:23:11 GMT + - Tue, 15 Mar 2022 10:51:54 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A22%3A40.8449714Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:22:35.8181614Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:22:40.0523857Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:22:40.0523857Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A51%3A23.4520723Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:51:18.8839081Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:51:22.63958Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:51:22.63958Z"}}' headers: cache-control: - no-cache content-length: - - '1148' + - '1165' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:23:12 GMT + - Tue, 15 Mar 2022 10:51:54 GMT etag: - - W/"datetime'2022-01-07T08%3A22%3A40.8449714Z'" + - W/"datetime'2022-03-15T10%3A51%3A23.4520723Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -165,23 +157,23 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A22%3A40.8449714Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:22:35.8181614Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:22:40.0523857Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:22:40.0523857Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A51%3A23.4520723Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:51:18.8839081Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:51:22.63958Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:51:22.63958Z"}}' headers: cache-control: - no-cache content-length: - - '1148' + - '1165' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:23:13 GMT + - Tue, 15 Mar 2022 10:51:55 GMT etag: - - W/"datetime'2022-01-07T08%3A22%3A40.8449714Z'" + - W/"datetime'2022-03-15T10%3A51%3A23.4520723Z'" expires: - '-1' pragma: @@ -190,10 +182,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -215,23 +203,23 @@ interactions: ParameterSetName: - --ids User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A22%3A40.8449714Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:22:35.8181614Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:22:40.0523857Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:22:40.0523857Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A51%3A23.4520723Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:51:18.8839081Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:51:22.63958Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:51:22.63958Z"}}' headers: cache-control: - no-cache content-length: - - '1148' + - '1165' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:23:14 GMT + - Tue, 15 Mar 2022 10:51:57 GMT etag: - - W/"datetime'2022-01-07T08%3A22%3A40.8449714Z'" + - W/"datetime'2022-03-15T10%3A51%3A23.4520723Z'" 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 8f1f0829328..3f50bf16293 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,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"1f760456-f532-4c33-b221-da8a3897fab4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"295477d2-fbdd-402f-801c-e79ec2ad2843\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"0a684871-0ef0-4091-b424-d01f4919bc7f\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:21:22.5026380Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"6006f552-ab05-4b9d-9b84-55c9fa8c0840\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/69eee380-d43b-4b48-9945-e64928ca7f57?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/82954e4a-eb02-4a01-9b55-42d32b62e9c7?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '781' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:58:20 GMT + - Wed, 16 Mar 2022 09:21:28 GMT expires: - '-1' pragma: @@ -57,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 71a56fff-d69f-406d-a969-e25ea6ac6b63 + - f5bd1455-5420-4f19-8749-56ca11c4848a x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/69eee380-d43b-4b48-9945-e64928ca7f57?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/82954e4a-eb02-4a01-9b55-42d32b62e9c7?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:58:23 GMT + - Wed, 16 Mar 2022 09:21:31 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 24a7f92c-14c0-4c84-8f7b-655823532474 + - 694e6be2-bd19-49d4-a8ed-fb2fbb344635 status: code: 200 message: OK @@ -126,16 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"209f2921-cfc9-4b2c-be35-c1c1daa99079\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"295477d2-fbdd-402f-801c-e79ec2ad2843\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"6e5e488e-68af-4290-9fc8-723ba0215f28\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:21:22.5026380Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"6006f552-ab05-4b9d-9b84-55c9fa8c0840\",\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\": @@ -144,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:58:24 GMT + - Wed, 16 Mar 2022 09:21:31 GMT etag: - - W/"209f2921-cfc9-4b2c-be35-c1c1daa99079" + - W/"6e5e488e-68af-4290-9fc8-723ba0215f28" expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 80d536d9-fe1b-4e6d-b4d3-e86983ad66e0 + - d7d61d12-098f-4e05-bf17-028fd69b4a6e status: code: 200 message: OK @@ -185,16 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"209f2921-cfc9-4b2c-be35-c1c1daa99079\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"295477d2-fbdd-402f-801c-e79ec2ad2843\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"6e5e488e-68af-4290-9fc8-723ba0215f28\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:21:22.5026380Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"6006f552-ab05-4b9d-9b84-55c9fa8c0840\",\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\": @@ -203,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:58:24 GMT + - Wed, 16 Mar 2022 09:21:31 GMT etag: - - W/"209f2921-cfc9-4b2c-be35-c1c1daa99079" + - W/"6e5e488e-68af-4290-9fc8-723ba0215f28" expires: - '-1' pragma: @@ -226,18 +229,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac918e1d-96a9-4807-8780-a0b4268bb1e8 + - 1a59bfd8-0e04-41d2-8f78-254957b6e8b8 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": "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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-16T09:21:22.5026380Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +251,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '691' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"4d665bd5-0aa8-4a6d-95d8-f3df6bf9b8e4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"295477d2-fbdd-402f-801c-e79ec2ad2843\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"eec5da63-45cf-420c-9c34-5696429da5bd\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:21:22.5026380Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"6006f552-ab05-4b9d-9b84-55c9fa8c0840\",\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/\\\"4d665bd5-0aa8-4a6d-95d8-f3df6bf9b8e4\\\"\",\r\n + \ \"etag\": \"W/\\\"eec5da63-45cf-420c-9c34-5696429da5bd\\\"\",\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/\\\"4d665bd5-0aa8-4a6d-95d8-f3df6bf9b8e4\\\"\",\r\n + \ \"etag\": \"W/\\\"eec5da63-45cf-420c-9c34-5696429da5bd\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +292,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b4050da9-6d7c-44e9-9494-76e7ef1a8e4c?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/de168248-b24f-422b-8986-378606ccaeaa?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2252' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:58:26 GMT + - Wed, 16 Mar 2022 09:21:34 GMT expires: - '-1' pragma: @@ -313,7 +317,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c3abbcf-1a02-42dd-81e5-a1e825ffdbbd + - 8145216a-e781-45f1-bf70-630108c6d9a6 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -333,9 +337,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b4050da9-6d7c-44e9-9494-76e7ef1a8e4c?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/de168248-b24f-422b-8986-378606ccaeaa?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:58:29 GMT + - Wed, 16 Mar 2022 09:21:37 GMT expires: - '-1' pragma: @@ -364,7 +368,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 74354abb-cf27-4c87-b887-e88e8b81877a + - 8d5703e3-ed15-429e-832f-15f06d348967 status: code: 200 message: OK @@ -382,26 +386,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"e4c436d4-37f2-4c17-9140-217275a8f954\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"295477d2-fbdd-402f-801c-e79ec2ad2843\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"41da8b4e-cbcc-46ea-93e7-70206e345c7e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:21:22.5026380Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"6006f552-ab05-4b9d-9b84-55c9fa8c0840\",\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/\\\"e4c436d4-37f2-4c17-9140-217275a8f954\\\"\",\r\n + \ \"etag\": \"W/\\\"41da8b4e-cbcc-46ea-93e7-70206e345c7e\\\"\",\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/\\\"e4c436d4-37f2-4c17-9140-217275a8f954\\\"\",\r\n + \ \"etag\": \"W/\\\"41da8b4e-cbcc-46ea-93e7-70206e345c7e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +421,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2254' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:58:29 GMT + - Wed, 16 Mar 2022 09:21:37 GMT etag: - - W/"e4c436d4-37f2-4c17-9140-217275a8f954" + - W/"41da8b4e-cbcc-46ea-93e7-70206e345c7e" expires: - '-1' pragma: @@ -439,7 +444,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 062556f2-b477-4760-a0ec-50ef142112e4 + - 83ae5f06-82d6-4e84-8aca-d8c1cecf7d0e status: code: 200 message: OK @@ -455,31 +460,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A58%3A36.2288323Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A21%3A45.0976754Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:21:40.6904494Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/546069f0-7d8b-4702-aab6-9c35ee2da669?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f691d25-6ec1-4e2d-9941-894f78d880f9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '413' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:58:36 GMT + - Wed, 16 Mar 2022 09:21:46 GMT etag: - - W/"datetime'2021-10-19T14%3A58%3A36.2288323Z'" + - W/"datetime'2022-03-16T09%3A21%3A45.0976754Z'" expires: - '-1' pragma: @@ -511,21 +516,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/546069f0-7d8b-4702-aab6-9c35ee2da669?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0f691d25-6ec1-4e2d-9941-894f78d880f9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/546069f0-7d8b-4702-aab6-9c35ee2da669","name":"546069f0-7d8b-4702-aab6-9c35ee2da669","status":"Succeeded","startTime":"2021-10-19T14:58:36.2345784Z","endTime":"2021-10-19T14:58:36.2845603Z","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/0f691d25-6ec1-4e2d-9941-894f78d880f9","name":"0f691d25-6ec1-4e2d-9941-894f78d880f9","status":"Succeeded","startTime":"2022-03-16T09:21:45.1038601Z","endTime":"2022-03-16T09:21:45.1337633Z","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: cache-control: - no-cache content-length: - - '588' + - '525' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:59:06 GMT + - Wed, 16 Mar 2022 09:22:16 GMT expires: - '-1' pragma: @@ -534,10 +539,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -559,23 +560,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A58%3A36.278136Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"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''2022-03-16T09%3A21%3A45.1286772Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:21:40.6904494Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '873' + - '460' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:59:07 GMT + - Wed, 16 Mar 2022 09:22:16 GMT etag: - - W/"datetime'2021-10-19T14%3A58%3A36.278136Z'" + - W/"datetime'2022-03-16T09%3A21%3A45.1286772Z'" expires: - '-1' pragma: @@ -584,10 +585,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -596,8 +593,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +605,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A59%3A11.6998743Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A22%3A23.6255467Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:19.3635648Z"},"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/southcentralusstage/operationResults/fd5a959f-5c6b-4ed6-a356-c87c4c8c58e7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6d024145-d681-4394-8e4d-2b65bbb2f560?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:59:12 GMT + - Wed, 16 Mar 2022 09:22:24 GMT etag: - - W/"datetime'2021-10-19T14%3A59%3A11.6998743Z'" + - W/"datetime'2022-03-16T09%3A22%3A23.6255467Z'" expires: - '-1' pragma: @@ -644,7 +641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -664,21 +661,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd5a959f-5c6b-4ed6-a356-c87c4c8c58e7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6d024145-d681-4394-8e4d-2b65bbb2f560?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd5a959f-5c6b-4ed6-a356-c87c4c8c58e7","name":"fd5a959f-5c6b-4ed6-a356-c87c4c8c58e7","status":"Succeeded","startTime":"2021-10-19T14:59:11.706273Z","endTime":"2021-10-19T14:59:11.8062455Z","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/6d024145-d681-4394-8e4d-2b65bbb2f560","name":"6d024145-d681-4394-8e4d-2b65bbb2f560","status":"Succeeded","startTime":"2022-03-16T09:22:23.6329659Z","endTime":"2022-03-16T09:22:23.742964Z","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: cache-control: - no-cache content-length: - - '626' + - '554' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:59:42 GMT + - Wed, 16 Mar 2022 09:22:54 GMT expires: - '-1' pragma: @@ -687,10 +684,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -712,23 +705,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A59%3A11.8001327Z''\"","location":"southcentralusstage","properties":{"poolId":"81be7825-8fc1-7d19-7f76-a2bd08e0b1b2","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-16T09%3A22%3A23.7301103Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:19.3635648Z"},"properties":{"poolId":"e22d7fda-7756-57d6-ca53-84406a7ecb2d","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '691' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:59:42 GMT + - Wed, 16 Mar 2022 09:22:55 GMT etag: - - W/"datetime'2021-10-19T14%3A59%3A11.8001327Z'" + - W/"datetime'2022-03-16T09%3A22%3A23.7301103Z'" expires: - '-1' pragma: @@ -737,10 +730,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -750,7 +739,8 @@ interactions: message: OK - request: 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"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +751,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '337' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A59%3A52.9297541Z''\"","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"}}' + 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''2022-03-16T09%3A23%3A02.9728Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:58.0227347Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '839' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:59:53 GMT + - Wed, 16 Mar 2022 09:23:03 GMT etag: - - W/"datetime'2021-10-19T14%3A59%3A52.9297541Z'" + - W/"datetime'2022-03-16T09%3A23%3A02.9728Z'" expires: - '-1' pragma: @@ -817,21 +807,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703","name":"778c06ea-15d3-460c-86a3-835f53664703","status":"Creating","startTime":"2021-10-19T14:59:52.9349386Z","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/cacb96d4-a1f0-4082-96ab-7ee35af42e22","name":"cacb96d4-a1f0-4082-96ab-7ee35af42e22","status":"Creating","startTime":"2022-03-16T09:23:02.9780837Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:00:23 GMT + - Wed, 16 Mar 2022 09:23:34 GMT expires: - '-1' pragma: @@ -840,10 +830,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -865,21 +851,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703","name":"778c06ea-15d3-460c-86a3-835f53664703","status":"Creating","startTime":"2021-10-19T14:59:52.9349386Z","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/cacb96d4-a1f0-4082-96ab-7ee35af42e22","name":"cacb96d4-a1f0-4082-96ab-7ee35af42e22","status":"Creating","startTime":"2022-03-16T09:23:02.9780837Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:00:54 GMT + - Wed, 16 Mar 2022 09:24:04 GMT expires: - '-1' pragma: @@ -888,10 +874,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -913,21 +895,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703","name":"778c06ea-15d3-460c-86a3-835f53664703","status":"Creating","startTime":"2021-10-19T14:59:52.9349386Z","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/cacb96d4-a1f0-4082-96ab-7ee35af42e22","name":"cacb96d4-a1f0-4082-96ab-7ee35af42e22","status":"Creating","startTime":"2022-03-16T09:23:02.9780837Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:01:24 GMT + - Wed, 16 Mar 2022 09:24:34 GMT expires: - '-1' pragma: @@ -936,10 +918,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -961,21 +939,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703","name":"778c06ea-15d3-460c-86a3-835f53664703","status":"Creating","startTime":"2021-10-19T14:59:52.9349386Z","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/cacb96d4-a1f0-4082-96ab-7ee35af42e22","name":"cacb96d4-a1f0-4082-96ab-7ee35af42e22","status":"Creating","startTime":"2022-03-16T09:23:02.9780837Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:01:55 GMT + - Wed, 16 Mar 2022 09:25:05 GMT expires: - '-1' pragma: @@ -984,10 +962,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1009,21 +983,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703","name":"778c06ea-15d3-460c-86a3-835f53664703","status":"Creating","startTime":"2021-10-19T14:59:52.9349386Z","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/cacb96d4-a1f0-4082-96ab-7ee35af42e22","name":"cacb96d4-a1f0-4082-96ab-7ee35af42e22","status":"Creating","startTime":"2022-03-16T09:23:02.9780837Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:02:24 GMT + - Wed, 16 Mar 2022 09:25:35 GMT expires: - '-1' pragma: @@ -1032,10 +1006,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1057,21 +1027,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703","name":"778c06ea-15d3-460c-86a3-835f53664703","status":"Creating","startTime":"2021-10-19T14:59:52.9349386Z","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/cacb96d4-a1f0-4082-96ab-7ee35af42e22","name":"cacb96d4-a1f0-4082-96ab-7ee35af42e22","status":"Creating","startTime":"2022-03-16T09:23:02.9780837Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:02:54 GMT + - Wed, 16 Mar 2022 09:26:05 GMT expires: - '-1' pragma: @@ -1080,10 +1050,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1105,21 +1071,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703","name":"778c06ea-15d3-460c-86a3-835f53664703","status":"Creating","startTime":"2021-10-19T14:59:52.9349386Z","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/cacb96d4-a1f0-4082-96ab-7ee35af42e22","name":"cacb96d4-a1f0-4082-96ab-7ee35af42e22","status":"Creating","startTime":"2022-03-16T09:23:02.9780837Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:03:25 GMT + - Wed, 16 Mar 2022 09:26:35 GMT expires: - '-1' pragma: @@ -1128,10 +1094,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1153,21 +1115,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cacb96d4-a1f0-4082-96ab-7ee35af42e22?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/778c06ea-15d3-460c-86a3-835f53664703","name":"778c06ea-15d3-460c-86a3-835f53664703","status":"Succeeded","startTime":"2021-10-19T14:59:52.9349386Z","endTime":"2021-10-19T15:03:54.6408253Z","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/cacb96d4-a1f0-4082-96ab-7ee35af42e22","name":"cacb96d4-a1f0-4082-96ab-7ee35af42e22","status":"Succeeded","startTime":"2022-03-16T09:23:02.9780837Z","endTime":"2022-03-16T09:26:58.7959491Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:03:56 GMT + - Wed, 16 Mar 2022 09:27:05 GMT expires: - '-1' pragma: @@ -1176,10 +1138,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1201,23 +1159,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A03%3A54.6351712Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_53e80605","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c17f9384-3c03-1638-75e2-2d54563c6790","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A26%3A58.7851911Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:58.0227347Z"},"properties":{"fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_7557411d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:03:57 GMT + - Wed, 16 Mar 2022 09:27:06 GMT etag: - - W/"datetime'2021-10-19T15%3A03%3A54.6351712Z'" + - W/"datetime'2022-03-16T09%3A26%3A58.7851911Z'" expires: - '-1' pragma: @@ -1226,10 +1184,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1251,21 +1205,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:03:58 GMT + - Wed, 16 Mar 2022 09:27:07 GMT expires: - '-1' pragma: @@ -1274,10 +1228,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1299,23 +1249,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A03%3A54.6351712Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_53e80605","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c17f9384-3c03-1638-75e2-2d54563c6790","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A26%3A58.7851911Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:58.0227347Z"},"properties":{"fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_7557411d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:03:59 GMT + - Wed, 16 Mar 2022 09:27:08 GMT etag: - - W/"datetime'2021-10-19T15%3A03%3A54.6351712Z'" + - W/"datetime'2022-03-16T09%3A26%3A58.7851911Z'" expires: - '-1' pragma: @@ -1336,9 +1286,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:22:58.0227347Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "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: @@ -1350,35 +1300,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '427' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A04%3A02.2255086Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_53e80605","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c17f9384-3c03-1638-75e2-2d54563c6790","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A27%3A12.2171354Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:58.0227347Z"},"properties":{"provisioningState":"Patching","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_7557411d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c853399-8950-489b-b9d6-592c97f973af?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d52cd7d-18a5-45a9-9be3-644110d52fc2?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2146' + - '2070' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:04:01 GMT + - Wed, 16 Mar 2022 09:27:11 GMT etag: - - W/"datetime'2021-10-19T15%3A04%3A02.2255086Z'" + - W/"datetime'2022-03-16T09%3A27%3A12.2171354Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c853399-8950-489b-b9d6-592c97f973af?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d52cd7d-18a5-45a9-9be3-644110d52fc2?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1388,7 +1338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1408,21 +1358,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c853399-8950-489b-b9d6-592c97f973af?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d52cd7d-18a5-45a9-9be3-644110d52fc2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c853399-8950-489b-b9d6-592c97f973af","name":"3c853399-8950-489b-b9d6-592c97f973af","status":"Succeeded","startTime":"2021-10-19T15:04:02.2302228Z","endTime":"2021-10-19T15:04:09.0228956Z","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/5d52cd7d-18a5-45a9-9be3-644110d52fc2","name":"5d52cd7d-18a5-45a9-9be3-644110d52fc2","status":"Succeeded","startTime":"2022-03-16T09:27:12.2269834Z","endTime":"2022-03-16T09:27:15.4484287Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:04:32 GMT + - Wed, 16 Mar 2022 09:27:41 GMT expires: - '-1' pragma: @@ -1456,23 +1406,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A04%3A09.011285Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"c17f9384-3c03-1638-75e2-2d54563c6790","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_53e80605","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c17f9384-3c03-1638-75e2-2d54563c6790","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A27%3A15.4419578Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:58.0227347Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"95391486-e1b5-9f13-356e-7fa2f8972c8a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_7557411d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2458' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:04:32 GMT + - Wed, 16 Mar 2022 09:27:42 GMT etag: - - W/"datetime'2021-10-19T15%3A04%3A09.011285Z'" + - W/"datetime'2022-03-16T09%3A27%3A15.4419578Z'" expires: - '-1' pragma: @@ -1504,33 +1454,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b3f33df-5382-43d0-889c-dc3b99304783?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/342e7dba-9242-4a5e-afde-0d5d34d873dd?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '457' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:04:39 GMT + - Wed, 16 Mar 2022 09:27:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b3f33df-5382-43d0-889c-dc3b99304783?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/342e7dba-9242-4a5e-afde-0d5d34d873dd?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1540,7 +1490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1560,21 +1510,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b3f33df-5382-43d0-889c-dc3b99304783?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/342e7dba-9242-4a5e-afde-0d5d34d873dd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b3f33df-5382-43d0-889c-dc3b99304783","name":"8b3f33df-5382-43d0-889c-dc3b99304783","status":"Succeeded","startTime":"2021-10-19T15:04:39.6864891Z","endTime":"2021-10-19T15:04:40.1107386Z","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/342e7dba-9242-4a5e-afde-0d5d34d873dd","name":"342e7dba-9242-4a5e-afde-0d5d34d873dd","status":"Succeeded","startTime":"2022-03-16T09:27:43.6677673Z","endTime":"2022-03-16T09:27:43.9981435Z","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"}}' headers: cache-control: - no-cache content-length: - - '693' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:05:10 GMT + - Wed, 16 Mar 2022 09:28:13 GMT expires: - '-1' pragma: @@ -1608,21 +1558,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:04:40Z","backupId":"e418dac2-43f9-e565-2631-c5a80a4fa79e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:27:43Z","backupId":"b289121d-cb14-90b1-f25f-0a50e9280b80","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:05:10 GMT + - Wed, 16 Mar 2022 09:28:14 GMT expires: - '-1' pragma: @@ -1656,21 +1606,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:04:40Z","backupId":"e418dac2-43f9-e565-2631-c5a80a4fa79e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:27:43Z","backupId":"b289121d-cb14-90b1-f25f-0a50e9280b80","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:05:11 GMT + - Wed, 16 Mar 2022 09:28:14 GMT expires: - '-1' pragma: @@ -1704,21 +1654,21 @@ interactions: ParameterSetName: - --ids User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:04:40Z","backupId":"e418dac2-43f9-e565-2631-c5a80a4fa79e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:27:43Z","backupId":"b289121d-cb14-90b1-f25f-0a50e9280b80","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:05:12 GMT + - Wed, 16 Mar 2022 09:28:16 GMT expires: - '-1' pragma: @@ -1752,21 +1702,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:04:40Z","backupId":"e418dac2-43f9-e565-2631-c5a80a4fa79e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:27:43Z","backupId":"b289121d-cb14-90b1-f25f-0a50e9280b80","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:05:13 GMT + - Wed, 16 Mar 2022 09:28:16 GMT expires: - '-1' pragma: @@ -1775,10 +1725,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1800,21 +1746,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:04:40Z","backupId":"e418dac2-43f9-e565-2631-c5a80a4fa79e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:27:43Z","backupId":"b289121d-cb14-90b1-f25f-0a50e9280b80","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:06:16 GMT + - Wed, 16 Mar 2022 09:29:17 GMT expires: - '-1' pragma: @@ -1848,21 +1794,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:04:44Z","backupId":"e418dac2-43f9-e565-2631-c5a80a4fa79e","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:27:47Z","backupId":"b289121d-cb14-90b1-f25f-0a50e9280b80","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:07:17 GMT + - Wed, 16 Mar 2022 09:30:19 GMT expires: - '-1' pragma: @@ -1871,10 +1817,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1896,21 +1838,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:07:19 GMT + - Wed, 16 Mar 2022 09:30:20 GMT expires: - '-1' pragma: @@ -1944,23 +1886,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A04%3A09.011285Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"c17f9384-3c03-1638-75e2-2d54563c6790","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_53e80605","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c17f9384-3c03-1638-75e2-2d54563c6790","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A27%3A15.4419578Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:58.0227347Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"95391486-e1b5-9f13-356e-7fa2f8972c8a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_7557411d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2458' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:07:21 GMT + - Wed, 16 Mar 2022 09:30:24 GMT etag: - - W/"datetime'2021-10-19T15%3A04%3A09.011285Z'" + - W/"datetime'2022-03-16T09%3A27%3A15.4419578Z'" expires: - '-1' pragma: @@ -1969,10 +1911,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1981,9 +1919,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:22:58.0227347Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": false}}}}' headers: Accept: @@ -1995,35 +1933,35 @@ interactions: Connection: - keep-alive Content-Length: - - '420' + - '428' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A07%3A26.0596627Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_53e80605","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c17f9384-3c03-1638-75e2-2d54563c6790","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A30%3A27.3481083Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:58.0227347Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_7557411d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aaad3030-e783-49df-8fe8-3c29c742387c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/927daf1c-54b3-415d-bfc1-d49b5e9edbc5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2458' + - '2331' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:07:25 GMT + - Wed, 16 Mar 2022 09:30:27 GMT etag: - - W/"datetime'2021-10-19T15%3A07%3A26.0596627Z'" + - W/"datetime'2022-03-16T09%3A30%3A27.3481083Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aaad3030-e783-49df-8fe8-3c29c742387c?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/927daf1c-54b3-415d-bfc1-d49b5e9edbc5?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2033,7 +1971,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -2053,21 +1991,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aaad3030-e783-49df-8fe8-3c29c742387c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/927daf1c-54b3-415d-bfc1-d49b5e9edbc5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aaad3030-e783-49df-8fe8-3c29c742387c","name":"aaad3030-e783-49df-8fe8-3c29c742387c","status":"Succeeded","startTime":"2021-10-19T15:07:26.0642361Z","endTime":"2021-10-19T15:07:36.1524505Z","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/927daf1c-54b3-415d-bfc1-d49b5e9edbc5","name":"927daf1c-54b3-415d-bfc1-d49b5e9edbc5","status":"Succeeded","startTime":"2022-03-16T09:30:27.3556097Z","endTime":"2022-03-16T09:30:33.6047963Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:07:56 GMT + - Wed, 16 Mar 2022 09:30:57 GMT expires: - '-1' pragma: @@ -2101,23 +2039,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A07%3A36.1457063Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"c17f9384-3c03-1638-75e2-2d54563c6790","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_53e80605","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c17f9384-3c03-1638-75e2-2d54563c6790","fileSystemId":"c17f9384-3c03-1638-75e2-2d54563c6790","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A30%3A33.5976257Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:22:58.0227347Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"95391486-e1b5-9f13-356e-7fa2f8972c8a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_7557411d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","fileSystemId":"95391486-e1b5-9f13-356e-7fa2f8972c8a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2460' + - '2333' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:07:56 GMT + - Wed, 16 Mar 2022 09:30:57 GMT etag: - - W/"datetime'2021-10-19T15%3A07%3A36.1457063Z'" + - W/"datetime'2022-03-16T09%3A30%3A33.5976257Z'" expires: - '-1' pragma: 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 d6b654c921d..ca51228c054 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 @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A45%3A56.0487568Z''\"","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A32%3A09.1334569Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:04.7701300Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:08.5286938Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:08.5286938Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/35d81501-4e64-40fd-a61d-708085f40aa8?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fcce7623-9a2b-490b-9c23-102336156eec?api-version=2021-10-01 cache-control: - no-cache content-length: - - '422' + - '702' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:45:56 GMT + - Tue, 15 Mar 2022 11:32:10 GMT etag: - - W/"datetime'2021-10-20T08%3A45%3A56.0487568Z'" + - W/"datetime'2022-03-15T11%3A32%3A09.1334569Z'" expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' x-powered-by: - ASP.NET status: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/35d81501-4e64-40fd-a61d-708085f40aa8?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fcce7623-9a2b-490b-9c23-102336156eec?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/35d81501-4e64-40fd-a61d-708085f40aa8","name":"35d81501-4e64-40fd-a61d-708085f40aa8","status":"Succeeded","startTime":"2021-10-20T08:45:56.0575446Z","endTime":"2021-10-20T08:45:56.092544Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fcce7623-9a2b-490b-9c23-102336156eec","name":"fcce7623-9a2b-490b-9c23-102336156eec","status":"Succeeded","startTime":"2022-03-15T11:32:09.1389518Z","endTime":"2022-03-15T11:32:09.1701884Z","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: - - '579' + - '536' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:46:27 GMT + - Tue, 15 Mar 2022 11:32:40 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A45%3A56.084653Z''\"","location":"eastus2euap","properties":{"activeDirectories":[{"activeDirectoryId":"07f0c290-65d4-f42b-f996-3adf389c0b0e","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.12.3.4","status":"Created","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A32%3A09.1731378Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:04.7701300Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"ce84edd3-4475-9dc9-1818-763d9c54b8cc","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.34.0.4","status":"InUse","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","kdcIP":"10.34.0.4","adName":"ANFReg.netapp.com","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:08.5286938Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:08.5286938Z"}}' headers: cache-control: - no-cache content-length: - - '851' + - '1200' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:46:27 GMT + - Tue, 15 Mar 2022 11:32:40 GMT etag: - - W/"datetime'2021-10-20T08%3A45%3A56.084653Z'" + - W/"datetime'2022-03-15T11%3A32%3A09.1731378Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -170,25 +162,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A46%3A31.3741525Z''\"","location":"eastus2euap","properties":{"enabled":true,"dailyBackupsToKeep":1,"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A32%3A47.5556837Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:41.9711750Z"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:46.9131773Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:46.9131773Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ffbf89d4-d8c8-4c40-97a9-75e9c52a8be5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/7103b910-c45e-4ea6-8bfc-7f7e3cc4b6c0?api-version=2021-10-01 cache-control: - no-cache content-length: - - '524' + - '806' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:46:31 GMT + - Tue, 15 Mar 2022 11:32:48 GMT etag: - - W/"datetime'2021-10-20T08%3A46%3A31.3741525Z'" + - W/"datetime'2022-03-15T11%3A32%3A47.5556837Z'" expires: - '-1' pragma: @@ -220,21 +212,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ffbf89d4-d8c8-4c40-97a9-75e9c52a8be5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/7103b910-c45e-4ea6-8bfc-7f7e3cc4b6c0?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ffbf89d4-d8c8-4c40-97a9-75e9c52a8be5","name":"ffbf89d4-d8c8-4c40-97a9-75e9c52a8be5","status":"Succeeded","startTime":"2021-10-20T08:46:31.3833054Z","endTime":"2021-10-20T08:46:31.5133092Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/7103b910-c45e-4ea6-8bfc-7f7e3cc4b6c0","name":"7103b910-c45e-4ea6-8bfc-7f7e3cc4b6c0","status":"Succeeded","startTime":"2022-03-15T11:32:47.5575056Z","endTime":"2022-03-15T11:32:47.7605827Z","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' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:47:02 GMT + - Tue, 15 Mar 2022 11:33:18 GMT expires: - '-1' pragma: @@ -268,23 +260,23 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A46%3A31.5056598Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"36e6b7c8-3182-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A32%3A47.7539002Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:41.9711750Z"},"properties":{"enabled":true,"backupPolicyId":"a3b45218-a453-11ec-9f49-02322dfd4404","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:46.9131773Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:46.9131773Z"}}' headers: cache-control: - no-cache content-length: - - '630' + - '932' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:47:02 GMT + - Tue, 15 Mar 2022 11:33:18 GMT etag: - - W/"datetime'2021-10-20T08%3A46%3A31.5056598Z'" + - W/"datetime'2022-03-15T11%3A32%3A47.7539002Z'" expires: - '-1' pragma: @@ -318,23 +310,23 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A46%3A31.5056598Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"36e6b7c8-3182-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A32%3A47.7539002Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:41.9711750Z"},"properties":{"enabled":true,"backupPolicyId":"a3b45218-a453-11ec-9f49-02322dfd4404","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:46.9131773Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:46.9131773Z"}}' headers: cache-control: - no-cache content-length: - - '630' + - '932' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:47:09 GMT + - Tue, 15 Mar 2022 11:33:20 GMT etag: - - W/"datetime'2021-10-20T08%3A46%3A31.5056598Z'" + - W/"datetime'2022-03-15T11%3A32%3A47.7539002Z'" expires: - '-1' pragma: @@ -368,23 +360,23 @@ interactions: ParameterSetName: - --ids User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A46%3A31.5056598Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"36e6b7c8-3182-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A32%3A47.7539002Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:41.9711750Z"},"properties":{"enabled":true,"backupPolicyId":"a3b45218-a453-11ec-9f49-02322dfd4404","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:46.9131773Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:46.9131773Z"}}' headers: cache-control: - no-cache content-length: - - '630' + - '932' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:47:14 GMT + - Tue, 15 Mar 2022 11:33:20 GMT etag: - - W/"datetime'2021-10-20T08%3A46%3A31.5056598Z'" + - W/"datetime'2022-03-15T11%3A32%3A47.7539002Z'" expires: - '-1' pragma: @@ -393,10 +385,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_status.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_status.yaml index 35ea25e4296..cfaf23739d3 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_status.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_backup_status.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"256f2120-5412-4006-ad4a-0b3156725e47\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c53f2c59-a74d-4930-951b-a8e68b3a97ed\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"37279bf5-eda1-47e6-a890-f7d19c1e6613\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T10:02:09.0276043Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"e4dea96d-3469-4353-b255-c0f92c5de2b1\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/294f6faf-f5fd-443b-9e6f-2c5671ebdb7f?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/faa2d9fb-26a8-4d06-b477-52d06b7f29aa?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '781' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:22:36 GMT + - Wed, 16 Mar 2022 10:02:13 GMT expires: - '-1' pragma: @@ -57,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 635bcd2f-210d-45eb-a335-13daa4e70d8b + - ddaa163b-a843-4f29-a427-02166187961c x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/294f6faf-f5fd-443b-9e6f-2c5671ebdb7f?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/faa2d9fb-26a8-4d06-b477-52d06b7f29aa?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:22:40 GMT + - Wed, 16 Mar 2022 10:02:16 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 065591ef-938e-466e-8e47-efee3738d6d5 + - 736c201e-260f-4058-9143-071f8dac7c54 status: code: 200 message: OK @@ -126,16 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"55b6cb56-3e98-4ca6-ba57-e83c0a542d9c\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c53f2c59-a74d-4930-951b-a8e68b3a97ed\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"050f5123-2ff9-4e73-b30f-e59c722804c0\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T10:02:09.0276043Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"e4dea96d-3469-4353-b255-c0f92c5de2b1\",\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\": @@ -144,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:22:40 GMT + - Wed, 16 Mar 2022 10:02:16 GMT etag: - - W/"55b6cb56-3e98-4ca6-ba57-e83c0a542d9c" + - W/"050f5123-2ff9-4e73-b30f-e59c722804c0" expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cc6bcd9a-220a-468a-a093-523d45153d44 + - e5321eb7-cbf5-4352-be79-896043ce62aa status: code: 200 message: OK @@ -185,16 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"55b6cb56-3e98-4ca6-ba57-e83c0a542d9c\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c53f2c59-a74d-4930-951b-a8e68b3a97ed\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"050f5123-2ff9-4e73-b30f-e59c722804c0\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T10:02:09.0276043Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"e4dea96d-3469-4353-b255-c0f92c5de2b1\",\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\": @@ -203,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:22:41 GMT + - Wed, 16 Mar 2022 10:02:16 GMT etag: - - W/"55b6cb56-3e98-4ca6-ba57-e83c0a542d9c" + - W/"050f5123-2ff9-4e73-b30f-e59c722804c0" expires: - '-1' pragma: @@ -226,18 +229,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4fa3515c-74c1-490e-8e77-8ba1ef5997cd + - 6c1d08af-0219-4c31-b2d5-50e056b18657 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": "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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-16T10:02:09.0276043Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +251,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '691' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"7d28490d-fe83-45b7-bc1c-1558a670cdd8\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c53f2c59-a74d-4930-951b-a8e68b3a97ed\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"edc88f9b-a858-4924-8a29-b0eba8d06511\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T10:02:09.0276043Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"e4dea96d-3469-4353-b255-c0f92c5de2b1\",\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/\\\"7d28490d-fe83-45b7-bc1c-1558a670cdd8\\\"\",\r\n + \ \"etag\": \"W/\\\"edc88f9b-a858-4924-8a29-b0eba8d06511\\\"\",\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/\\\"7d28490d-fe83-45b7-bc1c-1558a670cdd8\\\"\",\r\n + \ \"etag\": \"W/\\\"edc88f9b-a858-4924-8a29-b0eba8d06511\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +292,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2ac0706f-c48e-44d5-9614-d615e0e57297?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/12ac735e-551f-4844-920a-b194a09f0df0?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2252' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:22:42 GMT + - Wed, 16 Mar 2022 10:02:17 GMT expires: - '-1' pragma: @@ -313,7 +317,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a69d747-f52f-4ae6-8f66-4cf19b797228 + - 3ee7db7f-1452-44c6-a5a7-c4b87915e56a x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -333,9 +337,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2ac0706f-c48e-44d5-9614-d615e0e57297?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/12ac735e-551f-4844-920a-b194a09f0df0?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:22:46 GMT + - Wed, 16 Mar 2022 10:02:21 GMT expires: - '-1' pragma: @@ -364,7 +368,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 108a497d-77cf-4825-a566-62699f613efe + - 850c6c63-09a4-4f7d-ae73-8c4121e0e8d7 status: code: 200 message: OK @@ -382,26 +386,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"de08f231-139b-49be-8a2a-ff11aca2a4c5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c53f2c59-a74d-4930-951b-a8e68b3a97ed\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"4c1716d1-cceb-440a-8c4c-a5573df6a06b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T10:02:09.0276043Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"e4dea96d-3469-4353-b255-c0f92c5de2b1\",\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/\\\"de08f231-139b-49be-8a2a-ff11aca2a4c5\\\"\",\r\n + \ \"etag\": \"W/\\\"4c1716d1-cceb-440a-8c4c-a5573df6a06b\\\"\",\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/\\\"de08f231-139b-49be-8a2a-ff11aca2a4c5\\\"\",\r\n + \ \"etag\": \"W/\\\"4c1716d1-cceb-440a-8c4c-a5573df6a06b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +421,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2254' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:22:46 GMT + - Wed, 16 Mar 2022 10:02:21 GMT etag: - - W/"de08f231-139b-49be-8a2a-ff11aca2a4c5" + - W/"4c1716d1-cceb-440a-8c4c-a5573df6a06b" expires: - '-1' pragma: @@ -439,7 +444,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9e4d14be-50fd-492d-ad30-78e36eed14e9 + - 8aa138ee-ad10-4bf6-af75-6657db50b535 status: code: 200 message: OK @@ -455,31 +460,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A22%3A54.160783Z''\"","location":"southcentralusstage","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''2022-03-16T10%3A02%3A25.7097854Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:02:23.3546276Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/913a615d-56b6-4e41-bcc8-b7ebb44b26a5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/08ac5ea8-2015-4071-a7dd-78c02ca8f601?api-version=2021-10-01 cache-control: - no-cache content-length: - - '429' + - '413' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:22:54 GMT + - Wed, 16 Mar 2022 10:02:26 GMT etag: - - W/"datetime'2021-10-20T08%3A22%3A54.160783Z'" + - W/"datetime'2022-03-16T10%3A02%3A25.7097854Z'" expires: - '-1' pragma: @@ -491,7 +496,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -511,21 +516,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/913a615d-56b6-4e41-bcc8-b7ebb44b26a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/08ac5ea8-2015-4071-a7dd-78c02ca8f601?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/913a615d-56b6-4e41-bcc8-b7ebb44b26a5","name":"913a615d-56b6-4e41-bcc8-b7ebb44b26a5","status":"Succeeded","startTime":"2021-10-20T08:22:54.1677078Z","endTime":"2021-10-20T08:22:54.2559468Z","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/08ac5ea8-2015-4071-a7dd-78c02ca8f601","name":"08ac5ea8-2015-4071-a7dd-78c02ca8f601","status":"Succeeded","startTime":"2022-03-16T10:02:25.7129761Z","endTime":"2022-03-16T10:02:25.7429289Z","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: cache-control: - no-cache content-length: - - '588' + - '525' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:23:25 GMT + - Wed, 16 Mar 2022 10:02:57 GMT expires: - '-1' pragma: @@ -559,23 +564,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A22%3A54.2495176Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"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''2022-03-16T10%3A02%3A25.7373069Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:02:23.3546276Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '460' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:23:25 GMT + - Wed, 16 Mar 2022 10:02:57 GMT etag: - - W/"datetime'2021-10-20T08%3A22%3A54.2495176Z'" + - W/"datetime'2022-03-16T10%3A02%3A25.7373069Z'" expires: - '-1' pragma: @@ -596,8 +601,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +613,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A23%3A34.2437124Z''\"","location":"southcentralusstage","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''2022-03-16T10%3A03%3A02.3690484Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:02:58.7705240Z"},"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/southcentralusstage/operationResults/aff64c22-8a29-4ad8-a939-3e34d88126f7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4f6b78e2-3872-4a1a-9f03-53111bcfdaca?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:23:34 GMT + - Wed, 16 Mar 2022 10:03:03 GMT etag: - - W/"datetime'2021-10-20T08%3A23%3A34.2437124Z'" + - W/"datetime'2022-03-16T10%3A03%3A02.3690484Z'" expires: - '-1' pragma: @@ -664,21 +669,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aff64c22-8a29-4ad8-a939-3e34d88126f7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4f6b78e2-3872-4a1a-9f03-53111bcfdaca?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/aff64c22-8a29-4ad8-a939-3e34d88126f7","name":"aff64c22-8a29-4ad8-a939-3e34d88126f7","status":"Succeeded","startTime":"2021-10-20T08:23:34.2480818Z","endTime":"2021-10-20T08:23:34.4989413Z","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/4f6b78e2-3872-4a1a-9f03-53111bcfdaca","name":"4f6b78e2-3872-4a1a-9f03-53111bcfdaca","status":"Succeeded","startTime":"2022-03-16T10:03:02.374216Z","endTime":"2022-03-16T10:03:02.9461373Z","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: cache-control: - no-cache content-length: - - '627' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:24:05 GMT + - Wed, 16 Mar 2022 10:03:33 GMT expires: - '-1' pragma: @@ -712,23 +717,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A23%3A34.4918341Z''\"","location":"southcentralusstage","properties":{"poolId":"a42ad1da-ad08-badb-0b2a-8eea4ec70bc0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-16T10%3A03%3A02.9337533Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:02:58.7705240Z"},"properties":{"poolId":"fd715ef6-7ca0-2e7d-63d5-afc016233149","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '691' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:24:05 GMT + - Wed, 16 Mar 2022 10:03:33 GMT etag: - - W/"datetime'2021-10-20T08%3A23%3A34.4918341Z'" + - W/"datetime'2022-03-16T10%3A03%3A02.9337533Z'" expires: - '-1' pragma: @@ -750,7 +755,8 @@ interactions: message: OK - request: 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"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +767,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '337' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A24%3A14.4174927Z''\"","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"}}' + 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''2022-03-16T10%3A03%3A40.2530724Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:03:35.5766474Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '842' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:24:14 GMT + - Wed, 16 Mar 2022 10:03:40 GMT etag: - - W/"datetime'2021-10-20T08%3A24%3A14.4174927Z'" + - W/"datetime'2022-03-16T10%3A03%3A40.2530724Z'" expires: - '-1' pragma: @@ -817,21 +823,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","name":"0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","status":"Creating","startTime":"2021-10-20T08:24:14.4202345Z","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/ed74bd21-7ae7-4fe2-b610-3d59b818dadd","name":"ed74bd21-7ae7-4fe2-b610-3d59b818dadd","status":"Creating","startTime":"2022-03-16T10:03:40.266727Z","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' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:24:45 GMT + - Wed, 16 Mar 2022 10:04:11 GMT expires: - '-1' pragma: @@ -865,21 +871,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","name":"0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","status":"Creating","startTime":"2021-10-20T08:24:14.4202345Z","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/ed74bd21-7ae7-4fe2-b610-3d59b818dadd","name":"ed74bd21-7ae7-4fe2-b610-3d59b818dadd","status":"Creating","startTime":"2022-03-16T10:03:40.266727Z","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' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:25:15 GMT + - Wed, 16 Mar 2022 10:04:41 GMT expires: - '-1' pragma: @@ -913,21 +919,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","name":"0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","status":"Creating","startTime":"2021-10-20T08:24:14.4202345Z","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/ed74bd21-7ae7-4fe2-b610-3d59b818dadd","name":"ed74bd21-7ae7-4fe2-b610-3d59b818dadd","status":"Creating","startTime":"2022-03-16T10:03:40.266727Z","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' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:25:45 GMT + - Wed, 16 Mar 2022 10:05:11 GMT expires: - '-1' pragma: @@ -961,21 +967,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","name":"0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","status":"Creating","startTime":"2021-10-20T08:24:14.4202345Z","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/ed74bd21-7ae7-4fe2-b610-3d59b818dadd","name":"ed74bd21-7ae7-4fe2-b610-3d59b818dadd","status":"Creating","startTime":"2022-03-16T10:03:40.266727Z","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' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:26:16 GMT + - Wed, 16 Mar 2022 10:05:42 GMT expires: - '-1' pragma: @@ -1009,21 +1015,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","name":"0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","status":"Creating","startTime":"2021-10-20T08:24:14.4202345Z","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/ed74bd21-7ae7-4fe2-b610-3d59b818dadd","name":"ed74bd21-7ae7-4fe2-b610-3d59b818dadd","status":"Creating","startTime":"2022-03-16T10:03:40.266727Z","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' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:26:46 GMT + - Wed, 16 Mar 2022 10:06:12 GMT expires: - '-1' pragma: @@ -1057,21 +1063,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","name":"0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","status":"Creating","startTime":"2021-10-20T08:24:14.4202345Z","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/ed74bd21-7ae7-4fe2-b610-3d59b818dadd","name":"ed74bd21-7ae7-4fe2-b610-3d59b818dadd","status":"Creating","startTime":"2022-03-16T10:03:40.266727Z","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' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:27:16 GMT + - Wed, 16 Mar 2022 10:06:42 GMT expires: - '-1' pragma: @@ -1105,21 +1111,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","name":"0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","status":"Creating","startTime":"2021-10-20T08:24:14.4202345Z","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/ed74bd21-7ae7-4fe2-b610-3d59b818dadd","name":"ed74bd21-7ae7-4fe2-b610-3d59b818dadd","status":"Creating","startTime":"2022-03-16T10:03:40.266727Z","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' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:27:46 GMT + - Wed, 16 Mar 2022 10:07:13 GMT expires: - '-1' pragma: @@ -1153,21 +1159,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed74bd21-7ae7-4fe2-b610-3d59b818dadd?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","name":"0c17164e-4cc7-4780-b1fe-dc4c64eae1fb","status":"Succeeded","startTime":"2021-10-20T08:24:14.4202345Z","endTime":"2021-10-20T08:28:15.6826063Z","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/ed74bd21-7ae7-4fe2-b610-3d59b818dadd","name":"ed74bd21-7ae7-4fe2-b610-3d59b818dadd","status":"Succeeded","startTime":"2022-03-16T10:03:40.266727Z","endTime":"2022-03-16T10:07:32.557302Z","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' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:28:16 GMT + - Wed, 16 Mar 2022 10:07:43 GMT expires: - '-1' pragma: @@ -1201,23 +1207,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A28%3A15.6766801Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"d70d43f2-270a-0356-4ff5-075448a4640a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_de25a144","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"d70d43f2-270a-0356-4ff5-075448a4640a","fileSystemId":"d70d43f2-270a-0356-4ff5-075448a4640a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T10%3A07%3A32.5481153Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:03:35.5766474Z"},"properties":{"fileSystemId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_16f0f9c0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","fileSystemId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:28:16 GMT + - Wed, 16 Mar 2022 10:07:43 GMT etag: - - W/"datetime'2021-10-20T08%3A28%3A15.6766801Z'" + - W/"datetime'2022-03-16T10%3A07%3A32.5481153Z'" expires: - '-1' pragma: @@ -1251,21 +1257,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:28:19 GMT + - Wed, 16 Mar 2022 10:07:44 GMT expires: - '-1' pragma: @@ -1299,23 +1305,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A28%3A15.6766801Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"d70d43f2-270a-0356-4ff5-075448a4640a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_de25a144","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"d70d43f2-270a-0356-4ff5-075448a4640a","fileSystemId":"d70d43f2-270a-0356-4ff5-075448a4640a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T10%3A07%3A32.5481153Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:03:35.5766474Z"},"properties":{"fileSystemId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_16f0f9c0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","fileSystemId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:28:20 GMT + - Wed, 16 Mar 2022 10:07:45 GMT etag: - - W/"datetime'2021-10-20T08%3A28%3A15.6766801Z'" + - W/"datetime'2022-03-16T10%3A07%3A32.5481153Z'" expires: - '-1' pragma: @@ -1324,10 +1330,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1336,9 +1338,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T10:03:35.5766474Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "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: @@ -1350,35 +1352,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '427' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A28%3A22.9528002Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"d70d43f2-270a-0356-4ff5-075448a4640a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_de25a144","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"d70d43f2-270a-0356-4ff5-075448a4640a","fileSystemId":"d70d43f2-270a-0356-4ff5-075448a4640a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T10%3A07%3A48.3009406Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:03:35.5766474Z"},"properties":{"provisioningState":"Patching","fileSystemId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_16f0f9c0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","fileSystemId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce3785b8-1bb3-40cd-b088-57e93571a691?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55712e63-782d-4912-b1b0-15d4274afbd0?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2146' + - '2070' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:28:22 GMT + - Wed, 16 Mar 2022 10:07:47 GMT etag: - - W/"datetime'2021-10-20T08%3A28%3A22.9528002Z'" + - W/"datetime'2022-03-16T10%3A07%3A48.3009406Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce3785b8-1bb3-40cd-b088-57e93571a691?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55712e63-782d-4912-b1b0-15d4274afbd0?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1408,21 +1410,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce3785b8-1bb3-40cd-b088-57e93571a691?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/55712e63-782d-4912-b1b0-15d4274afbd0?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ce3785b8-1bb3-40cd-b088-57e93571a691","name":"ce3785b8-1bb3-40cd-b088-57e93571a691","status":"Succeeded","startTime":"2021-10-20T08:28:22.9563464Z","endTime":"2021-10-20T08:28:34.4224426Z","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/55712e63-782d-4912-b1b0-15d4274afbd0","name":"55712e63-782d-4912-b1b0-15d4274afbd0","status":"Succeeded","startTime":"2022-03-16T10:07:48.3080202Z","endTime":"2022-03-16T10:07:51.8086079Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:28:53 GMT + - Wed, 16 Mar 2022 10:08:18 GMT expires: - '-1' pragma: @@ -1452,23 +1454,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-20T08%3A28%3A34.4178726Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"d70d43f2-270a-0356-4ff5-075448a4640a","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_de25a144","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"d70d43f2-270a-0356-4ff5-075448a4640a","fileSystemId":"d70d43f2-270a-0356-4ff5-075448a4640a","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T10%3A07%3A51.7966318Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:03:35.5766474Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_16f0f9c0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","fileSystemId":"00b48bb1-be6c-d1d3-2bd3-cb6ecb22c3f8","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:28:53 GMT + - Wed, 16 Mar 2022 10:08:18 GMT etag: - - W/"datetime'2021-10-20T08%3A28%3A34.4178726Z'" + - W/"datetime'2022-03-16T10%3A07%3A51.7966318Z'" expires: - '-1' pragma: @@ -1496,33 +1498,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9c748c0a-b755-4b91-b27c-146ac7b1494a?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82e5e83d-90c5-45de-be29-b9d2e3e19232?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '457' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:28:55 GMT + - Wed, 16 Mar 2022 10:08:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9c748c0a-b755-4b91-b27c-146ac7b1494a?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82e5e83d-90c5-45de-be29-b9d2e3e19232?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1532,7 +1534,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1552,21 +1554,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9c748c0a-b755-4b91-b27c-146ac7b1494a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82e5e83d-90c5-45de-be29-b9d2e3e19232?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9c748c0a-b755-4b91-b27c-146ac7b1494a","name":"9c748c0a-b755-4b91-b27c-146ac7b1494a","status":"Succeeded","startTime":"2021-10-20T08:28:55.7039323Z","endTime":"2021-10-20T08:28:56.0639279Z","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/82e5e83d-90c5-45de-be29-b9d2e3e19232","name":"82e5e83d-90c5-45de-be29-b9d2e3e19232","status":"Succeeded","startTime":"2022-03-16T10:08:19.7741121Z","endTime":"2022-03-16T10:08:20.0735798Z","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"}}' headers: cache-control: - no-cache content-length: - - '693' + - '604' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:29:25 GMT + - Wed, 16 Mar 2022 10:08:49 GMT expires: - '-1' pragma: @@ -1600,21 +1602,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-20T08:28:56Z","backupId":"040ea0fa-bd5c-406c-83ff-211c9ce97b7b","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T10:08:20Z","backupId":"5bd2a745-d592-52c2-cea0-32c21cf3444e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:29:25 GMT + - Wed, 16 Mar 2022 10:08:49 GMT expires: - '-1' pragma: @@ -1648,9 +1650,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/backupStatus?api-version=2021-08-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/backupStatus?api-version=2021-10-01 response: body: string: '{"healthy":false,"relationshipStatus":"Idle","mirrorState":"Uninitialized","unhealthyReason":"Backup @@ -1665,103 +1667,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:29:27 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 volume backup show - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -b - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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=2021-08-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":"southcentralusstage","properties":{"creationDate":"2021-10-20T08:28:56Z","backupId":"040ea0fa-bd5c-406c-83ff-211c9ce97b7b","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' - headers: - cache-control: - - no-cache - content-length: - - '792' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 08:29: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 volume backup show - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -b - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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=2021-08-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":"southcentralusstage","properties":{"creationDate":"2021-10-20T08:28:56Z","backupId":"040ea0fa-bd5c-406c-83ff-211c9ce97b7b","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' - headers: - cache-control: - - no-cache - content-length: - - '792' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 08:30:36 GMT + - Wed, 16 Mar 2022 10:08:50 GMT expires: - '-1' pragma: @@ -1770,10 +1676,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1795,21 +1697,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-20T08:28:56Z","backupId":"040ea0fa-bd5c-406c-83ff-211c9ce97b7b","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T10:08:20Z","backupId":"5bd2a745-d592-52c2-cea0-32c21cf3444e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:31:37 GMT + - Wed, 16 Mar 2022 10:08:51 GMT expires: - '-1' pragma: @@ -1843,21 +1745,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-20T08:29:02Z","backupId":"040ea0fa-bd5c-406c-83ff-211c9ce97b7b","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T10:08:23Z","backupId":"5bd2a745-d592-52c2-cea0-32c21cf3444e","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:32:39 GMT + - Wed, 16 Mar 2022 10:09:53 GMT expires: - '-1' pragma: @@ -1891,21 +1793,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-20T08:29:02Z","backupId":"040ea0fa-bd5c-406c-83ff-211c9ce97b7b","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T10:08:23Z","backupId":"5bd2a745-d592-52c2-cea0-32c21cf3444e","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:32:40 GMT + - Wed, 16 Mar 2022 10:09:54 GMT expires: - '-1' pragma: @@ -1939,9 +1841,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/backupStatus?api-version=2021-08-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/backupStatus?api-version=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalTransferBytes":271198,"lastTransferSize":271198,"lastTransferType":"initialize"}' @@ -1953,7 +1855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:32:42 GMT + - Wed, 16 Mar 2022 10:09:55 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml index 8aefaed67bb..b7d9bb951eb 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_pool_by_name.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A48%3A47.8602018Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:48:43.1812050Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:48:47.0774183Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:48:47.0774183Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A10.3310352Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:06.4372913Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:09.5606677Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:09.5606677Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47584f78-c3b1-4a94-a985-40271381f1ee?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/15576001-fc86-4df4-9f2e-3b343c8bdd1c?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:48:48 GMT + - Tue, 15 Mar 2022 10:56:10 GMT etag: - - W/"datetime'2022-01-07T08%3A48%3A47.8602018Z'" + - W/"datetime'2022-03-15T10%3A56%3A10.3310352Z'" expires: - '-1' pragma: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47584f78-c3b1-4a94-a985-40271381f1ee?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/15576001-fc86-4df4-9f2e-3b343c8bdd1c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/47584f78-c3b1-4a94-a985-40271381f1ee","name":"47584f78-c3b1-4a94-a985-40271381f1ee","status":"Succeeded","startTime":"2022-01-07T08:48:47.863649Z","endTime":"2022-01-07T08:48:47.8986861Z","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/southcentralusstage/operationResults/15576001-fc86-4df4-9f2e-3b343c8bdd1c","name":"15576001-fc86-4df4-9f2e-3b343c8bdd1c","status":"Succeeded","startTime":"2022-03-15T10:56:10.3357245Z","endTime":"2022-03-15T10:56:10.3669831Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: cache-control: - no-cache content-length: - - '529' + - '530' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:49:19 GMT + - Tue, 15 Mar 2022 10:56:40 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A48%3A47.8922049Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:48:43.1812050Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:48:47.0774183Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:48:47.0774183Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A10.3727419Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:06.4372913Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:09.5606677Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:09.5606677Z"}}' headers: cache-control: - no-cache content-length: - - '1135' + - '1156' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:49:19 GMT + - Tue, 15 Mar 2022 10:56:41 GMT etag: - - W/"datetime'2022-01-07T08%3A48%3A47.8922049Z'" + - W/"datetime'2022-03-15T10%3A56%3A10.3727419Z'" expires: - '-1' pragma: @@ -170,15 +170,15 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A49%3A27.0436406Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:49:21.7440642Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:49:26.1059329Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:49:26.1059329Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A49.8711461Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:44.6337931Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:48.9699092Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:48.9699092Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/402bb4b7-4ef4-468c-beeb-33b9c4bbe017?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61e6bd98-e5e8-471d-80d4-8dde7ccfe0ae?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -186,9 +186,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:49:27 GMT + - Tue, 15 Mar 2022 10:56:50 GMT etag: - - W/"datetime'2022-01-07T08%3A49%3A27.0436406Z'" + - W/"datetime'2022-03-15T10%3A56%3A49.8711461Z'" expires: - '-1' pragma: @@ -220,12 +220,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/402bb4b7-4ef4-468c-beeb-33b9c4bbe017?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61e6bd98-e5e8-471d-80d4-8dde7ccfe0ae?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/402bb4b7-4ef4-468c-beeb-33b9c4bbe017","name":"402bb4b7-4ef4-468c-beeb-33b9c4bbe017","status":"Succeeded","startTime":"2022-01-07T08:49:27.0469629Z","endTime":"2022-01-07T08:49:27.2219958Z","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/southcentralusstage/operationResults/61e6bd98-e5e8-471d-80d4-8dde7ccfe0ae","name":"61e6bd98-e5e8-471d-80d4-8dde7ccfe0ae","status":"Succeeded","startTime":"2022-03-15T10:56:49.8642603Z","endTime":"2022-03-15T10:56:50.0205057Z","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: cache-control: - no-cache @@ -234,7 +234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:49:57 GMT + - Tue, 15 Mar 2022 10:57:20 GMT expires: - '-1' pragma: @@ -243,10 +243,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -268,23 +264,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A49%3A27.2149873Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:49:21.7440642Z"},"properties":{"poolId":"ea61a30f-0e4d-a59a-c41d-093e5863794f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A56%3A50.0157947Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:44.6337931Z"},"properties":{"poolId":"7a31f0f1-ab3c-75a5-5f25-34745711b3c0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '679' + - '677' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:49:57 GMT + - Tue, 15 Mar 2022 10:57:20 GMT etag: - - W/"datetime'2022-01-07T08%3A49%3A27.2149873Z'" + - W/"datetime'2022-03-15T10%3A56%3A50.0157947Z'" expires: - '-1' pragma: @@ -293,10 +289,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -318,23 +310,23 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A49%3A27.2149873Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:49:21.7440642Z"},"properties":{"poolId":"ea61a30f-0e4d-a59a-c41d-093e5863794f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A56%3A50.0157947Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:44.6337931Z"},"properties":{"poolId":"7a31f0f1-ab3c-75a5-5f25-34745711b3c0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '679' + - '677' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:49:59 GMT + - Tue, 15 Mar 2022 10:57:22 GMT etag: - - W/"datetime'2022-01-07T08%3A49%3A27.2149873Z'" + - W/"datetime'2022-03-15T10%3A56%3A50.0157947Z'" expires: - '-1' pragma: @@ -368,23 +360,23 @@ interactions: ParameterSetName: - --ids User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A49%3A27.2149873Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:49:21.7440642Z"},"properties":{"poolId":"ea61a30f-0e4d-a59a-c41d-093e5863794f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A56%3A50.0157947Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:44.6337931Z"},"properties":{"poolId":"7a31f0f1-ab3c-75a5-5f25-34745711b3c0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '679' + - '677' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:50:00 GMT + - Tue, 15 Mar 2022 10:57:23 GMT etag: - - W/"datetime'2022-01-07T08%3A49%3A27.2149873Z'" + - W/"datetime'2022-03-15T10%3A56%3A50.0157947Z'" 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 2bfcec188d5..d7742e9478d 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_snapshot.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"0ec96df1-5613-4714-94c3-7add1447c6c7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a0e343bf-fff4-463c-a701-c1f42add9620\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:43:36.9420211Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:02:49.5728688Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"54e2073e-7f22-4060-ab97-6a2f974bfd8a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9450fc63-ac98-479c-a19d-781def57425b\",\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/0ea4fd5f-7dd2-40ee-afee-b6dab9194e36?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7b9aeec9-7d20-42af-9798-43dcf557a758?api-version=2021-05-01 cache-control: - no-cache content-length: - - '779' + - '773' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:43:42 GMT + - Tue, 15 Mar 2022 13:02:55 GMT expires: - '-1' pragma: @@ -58,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22993172-c158-4e3a-a601-c460b18f4fcb + - a28388aa-df05-4298-a99c-8a0606c5e69c x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -78,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/0ea4fd5f-7dd2-40ee-afee-b6dab9194e36?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7b9aeec9-7d20-42af-9798-43dcf557a758?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:43:45 GMT + - Tue, 15 Mar 2022 13:02:59 GMT expires: - '-1' pragma: @@ -102,14 +102,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6be4db16-3fe3-4845-8674-5757203a0496 + - cddf5778-b944-4992-a028-218017e8dc34 status: code: 200 message: OK @@ -127,17 +123,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"94aa8057-4d66-4bcf-91dc-2923a33dad4e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"72eadfaf-d0ea-4856-b0e8-08e7219b9914\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:43:36.9420211Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:02:49.5728688Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"54e2073e-7f22-4060-ab97-6a2f974bfd8a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9450fc63-ac98-479c-a19d-781def57425b\",\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\": @@ -146,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:43:45 GMT + - Tue, 15 Mar 2022 13:02:59 GMT etag: - - W/"94aa8057-4d66-4bcf-91dc-2923a33dad4e" + - W/"72eadfaf-d0ea-4856-b0e8-08e7219b9914" expires: - '-1' pragma: @@ -162,14 +158,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 28edebc2-f207-45b4-a84a-f9988e8495af + - 7ff4943f-a835-4625-9791-a7a5c6202f3f status: code: 200 message: OK @@ -187,17 +179,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"94aa8057-4d66-4bcf-91dc-2923a33dad4e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"72eadfaf-d0ea-4856-b0e8-08e7219b9914\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:43:36.9420211Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:02:49.5728688Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"54e2073e-7f22-4060-ab97-6a2f974bfd8a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9450fc63-ac98-479c-a19d-781def57425b\",\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\": @@ -206,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:43:46 GMT + - Tue, 15 Mar 2022 13:02:59 GMT etag: - - W/"94aa8057-4d66-4bcf-91dc-2923a33dad4e" + - W/"72eadfaf-d0ea-4856-b0e8-08e7219b9914" expires: - '-1' pragma: @@ -222,20 +214,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c0baf778-dab4-43e8-8d0e-25f0a67c52a1 + - 72c4a275-e4fc-4282-9df7-f6b961f39a22 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T13:43:36.9420211Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T13:02:49.5728688Z"}, "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": @@ -252,33 +240,33 @@ interactions: Connection: - keep-alive Content-Length: - - '705' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"68597d0c-284d-4598-b7cd-f5d289ddefb8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4f9d337f-2fa5-474e-9e73-d14dd1dea792\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:43:36.9420211Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:02:49.5728688Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"54e2073e-7f22-4060-ab97-6a2f974bfd8a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9450fc63-ac98-479c-a19d-781def57425b\",\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/\\\"68597d0c-284d-4598-b7cd-f5d289ddefb8\\\"\",\r\n + \ \"etag\": \"W/\\\"4f9d337f-2fa5-474e-9e73-d14dd1dea792\\\"\",\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/\\\"68597d0c-284d-4598-b7cd-f5d289ddefb8\\\"\",\r\n + \ \"etag\": \"W/\\\"4f9d337f-2fa5-474e-9e73-d14dd1dea792\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -293,15 +281,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fadd1853-8c6a-47f8-bbae-25d807e4d4ac?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/24b0129c-ae50-4564-8224-61b894754a34?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2277' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:43:48 GMT + - Tue, 15 Mar 2022 13:03:02 GMT expires: - '-1' pragma: @@ -311,14 +299,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9c5a9841-b247-4d68-9e6e-601bae45c1e7 + - 6612126c-9599-41a9-adb1-c21fdaf94fa5 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -338,9 +322,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/fadd1853-8c6a-47f8-bbae-25d807e4d4ac?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/24b0129c-ae50-4564-8224-61b894754a34?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -352,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:43:51 GMT + - Tue, 15 Mar 2022 13:03:06 GMT expires: - '-1' pragma: @@ -362,14 +346,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9f40000f-4b76-499a-b448-594c27b05832 + - ce741c76-d153-40b2-9cf1-920351455f80 status: code: 200 message: OK @@ -387,27 +367,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"4f3ac74a-4437-4500-ad71-d157771c8804\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6b4aedb1-efa7-449d-90fa-b6c3eaedb333\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:43:36.9420211Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:02:49.5728688Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"54e2073e-7f22-4060-ab97-6a2f974bfd8a\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9450fc63-ac98-479c-a19d-781def57425b\",\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/\\\"4f3ac74a-4437-4500-ad71-d157771c8804\\\"\",\r\n + \ \"etag\": \"W/\\\"6b4aedb1-efa7-449d-90fa-b6c3eaedb333\\\"\",\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/\\\"4f3ac74a-4437-4500-ad71-d157771c8804\\\"\",\r\n + \ \"etag\": \"W/\\\"6b4aedb1-efa7-449d-90fa-b6c3eaedb333\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -422,13 +402,13 @@ interactions: cache-control: - no-cache content-length: - - '2279' + - '2273' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:43:51 GMT + - Tue, 15 Mar 2022 13:03:06 GMT etag: - - W/"4f3ac74a-4437-4500-ad71-d157771c8804" + - W/"6b4aedb1-efa7-449d-90fa-b6c3eaedb333" expires: - '-1' pragma: @@ -438,14 +418,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a407953f-a85d-4ec3-93f7-6f9998dbda7b + - ce9d8b41-c5de-45df-9ca3-3221a9f2cff6 status: code: 200 message: OK @@ -461,31 +437,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A43%3A59.3298848Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:43:54.1233396Z"},"properties":{"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''2022-03-15T13%3A03%3A14.0262474Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:03:09.8127530Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ab0a6a0d-ffdd-4b52-9a98-09aea52a3428?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/96d47cd7-a761-4e6d-99e0-ba75dd9c9fba?api-version=2021-10-01 cache-control: - no-cache content-length: - - '421' + - '415' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:44:00 GMT + - Tue, 15 Mar 2022 13:03:15 GMT etag: - - W/"datetime'2022-01-07T13%3A43%3A59.3298848Z'" + - W/"datetime'2022-03-15T13%3A03%3A14.0262474Z'" expires: - '-1' pragma: @@ -497,7 +473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -517,21 +493,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ab0a6a0d-ffdd-4b52-9a98-09aea52a3428?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/96d47cd7-a761-4e6d-99e0-ba75dd9c9fba?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ab0a6a0d-ffdd-4b52-9a98-09aea52a3428","name":"ab0a6a0d-ffdd-4b52-9a98-09aea52a3428","status":"Succeeded","startTime":"2022-01-07T13:43:59.3366388Z","endTime":"2022-01-07T13:43:59.3765872Z","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/southcentralusstage/operationResults/96d47cd7-a761-4e6d-99e0-ba75dd9c9fba","name":"96d47cd7-a761-4e6d-99e0-ba75dd9c9fba","status":"Succeeded","startTime":"2022-03-15T13:03:14.0328857Z","endTime":"2022-03-15T13:03:14.0728549Z","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: cache-control: - no-cache content-length: - - '533' + - '527' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:44:30 GMT + - Tue, 15 Mar 2022 13:03:45 GMT expires: - '-1' pragma: @@ -565,23 +541,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A43%3A59.3707992Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:43:54.1233396Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T13%3A03%3A14.0637809Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:03:09.8127530Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '468' + - '462' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:44:30 GMT + - Tue, 15 Mar 2022 13:03:45 GMT etag: - - W/"datetime'2022-01-07T13%3A43%3A59.3707992Z'" + - W/"datetime'2022-03-15T13%3A03%3A14.0637809Z'" expires: - '-1' pragma: @@ -614,31 +590,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A44%3A38.4122304Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:44:32.4827589Z"},"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''2022-03-15T13%3A03%3A51.9362687Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:03:47.6969033Z"},"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/southcentralusstage/operationResults/d04ded93-d9b7-46b9-86f8-a49eaa612d0b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8a98d439-84ad-4ad3-a2cc-fa3c1eaaacf6?api-version=2021-10-01 cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:44:38 GMT + - Tue, 15 Mar 2022 13:03:52 GMT etag: - - W/"datetime'2022-01-07T13%3A44%3A38.4122304Z'" + - W/"datetime'2022-03-15T13%3A03%3A51.9362687Z'" expires: - '-1' pragma: @@ -670,21 +646,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d04ded93-d9b7-46b9-86f8-a49eaa612d0b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8a98d439-84ad-4ad3-a2cc-fa3c1eaaacf6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d04ded93-d9b7-46b9-86f8-a49eaa612d0b","name":"d04ded93-d9b7-46b9-86f8-a49eaa612d0b","status":"Succeeded","startTime":"2022-01-07T13:44:38.4191386Z","endTime":"2022-01-07T13:44:38.5155834Z","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/southcentralusstage/operationResults/8a98d439-84ad-4ad3-a2cc-fa3c1eaaacf6","name":"8a98d439-84ad-4ad3-a2cc-fa3c1eaaacf6","status":"Succeeded","startTime":"2022-03-15T13:03:51.9419393Z","endTime":"2022-03-15T13:03:52.2754311Z","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: cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:45:09 GMT + - Tue, 15 Mar 2022 13:04:22 GMT expires: - '-1' pragma: @@ -693,10 +669,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -718,23 +690,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A44%3A38.5084628Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:44:32.4827589Z"},"properties":{"poolId":"b05a470a-8235-eaec-392f-0533b63c6f90","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T13%3A03%3A52.264948Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:03:47.6969033Z"},"properties":{"poolId":"90e04ef2-7246-4b18-eb9b-54953c97cd24","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '699' + - '692' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:45:09 GMT + - Tue, 15 Mar 2022 13:04:23 GMT etag: - - W/"datetime'2022-01-07T13%3A44%3A38.5084628Z'" + - W/"datetime'2022-03-15T13%3A03%3A52.264948Z'" expires: - '-1' pragma: @@ -743,10 +715,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -756,7 +724,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -767,31 +736,31 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '372' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A45%3A16.4412891Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:45:11.6153782Z"},"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''2022-03-15T13%3A04%3A31.0393931Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:04:26.8395468Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 cache-control: - no-cache content-length: - - '820' + - '877' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:45:16 GMT + - Tue, 15 Mar 2022 13:04:31 GMT etag: - - W/"datetime'2022-01-07T13%3A45%3A16.4412891Z'" + - W/"datetime'2022-03-15T13%3A04%3A31.0393931Z'" expires: - '-1' pragma: @@ -803,7 +772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -823,21 +792,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e","name":"e54fb185-cd2a-4df8-9935-57b463d9351e","status":"Creating","startTime":"2022-01-07T13:45:16.448632Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","name":"1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","status":"Creating","startTime":"2022-03-15T13:04:31.050126Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:45:48 GMT + - Tue, 15 Mar 2022 13:05:02 GMT expires: - '-1' pragma: @@ -871,21 +840,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e","name":"e54fb185-cd2a-4df8-9935-57b463d9351e","status":"Creating","startTime":"2022-01-07T13:45:16.448632Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","name":"1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","status":"Creating","startTime":"2022-03-15T13:04:31.050126Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:46:18 GMT + - Tue, 15 Mar 2022 13:05:32 GMT expires: - '-1' pragma: @@ -919,21 +888,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e","name":"e54fb185-cd2a-4df8-9935-57b463d9351e","status":"Creating","startTime":"2022-01-07T13:45:16.448632Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","name":"1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","status":"Creating","startTime":"2022-03-15T13:04:31.050126Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:46:48 GMT + - Tue, 15 Mar 2022 13:06:02 GMT expires: - '-1' pragma: @@ -967,21 +936,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e","name":"e54fb185-cd2a-4df8-9935-57b463d9351e","status":"Creating","startTime":"2022-01-07T13:45:16.448632Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","name":"1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","status":"Creating","startTime":"2022-03-15T13:04:31.050126Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:47:18 GMT + - Tue, 15 Mar 2022 13:06:33 GMT expires: - '-1' pragma: @@ -1015,21 +984,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e","name":"e54fb185-cd2a-4df8-9935-57b463d9351e","status":"Creating","startTime":"2022-01-07T13:45:16.448632Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","name":"1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","status":"Creating","startTime":"2022-03-15T13:04:31.050126Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:47:48 GMT + - Tue, 15 Mar 2022 13:07:03 GMT expires: - '-1' pragma: @@ -1063,21 +1032,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e","name":"e54fb185-cd2a-4df8-9935-57b463d9351e","status":"Creating","startTime":"2022-01-07T13:45:16.448632Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","name":"1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","status":"Creating","startTime":"2022-03-15T13:04:31.050126Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:48:18 GMT + - Tue, 15 Mar 2022 13:07:33 GMT expires: - '-1' pragma: @@ -1111,21 +1080,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e","name":"e54fb185-cd2a-4df8-9935-57b463d9351e","status":"Creating","startTime":"2022-01-07T13:45:16.448632Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","name":"1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","status":"Creating","startTime":"2022-03-15T13:04:31.050126Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:48:49 GMT + - Tue, 15 Mar 2022 13:08:03 GMT expires: - '-1' pragma: @@ -1159,21 +1128,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e54fb185-cd2a-4df8-9935-57b463d9351e","name":"e54fb185-cd2a-4df8-9935-57b463d9351e","status":"Succeeded","startTime":"2022-01-07T13:45:16.448632Z","endTime":"2022-01-07T13:49:03.5305246Z","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/southcentralusstage/operationResults/1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","name":"1ffe457d-bcf9-4b43-ba33-05f6c81b5cd3","status":"Succeeded","startTime":"2022-03-15T13:04:31.050126Z","endTime":"2022-03-15T13:08:25.4029345Z","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: cache-control: - no-cache content-length: - - '585' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:49:19 GMT + - Tue, 15 Mar 2022 13:08:33 GMT expires: - '-1' pragma: @@ -1207,23 +1176,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A49%3A03.5253786Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:45:11.6153782Z"},"properties":{"fileSystemId":"ebd4b2bf-89ec-4aaf-29a2-287584a69ebc","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_64d6d6a4","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","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"ebd4b2bf-89ec-4aaf-29a2-287584a69ebc","fileSystemId":"ebd4b2bf-89ec-4aaf-29a2-287584a69ebc","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T13%3A08%3A25.3929138Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:04:26.8395468Z"},"properties":{"fileSystemId":"b6748424-d60a-75e6-52c9-f625b6836bb5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_eaf7c4f1","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","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b6748424-d60a-75e6-52c9-f625b6836bb5","fileSystemId":"b6748424-d60a-75e6-52c9-f625b6836bb5","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2054' + - '2081' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:49:19 GMT + - Tue, 15 Mar 2022 13:08:33 GMT etag: - - W/"datetime'2022-01-07T13%3A49%3A03.5253786Z'" + - W/"datetime'2022-03-15T13%3A08%3A25.3929138Z'" expires: - '-1' pragma: @@ -1255,33 +1224,33 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b6bf0c93-870e-4da7-aa88-59d154e64e1d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1fb29791-28f8-4acc-90c7-7277dfae15a5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '461' + - '455' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:49:20 GMT + - Tue, 15 Mar 2022 13:08:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b6bf0c93-870e-4da7-aa88-59d154e64e1d?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1fb29791-28f8-4acc-90c7-7277dfae15a5?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1311,21 +1280,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b6bf0c93-870e-4da7-aa88-59d154e64e1d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1fb29791-28f8-4acc-90c7-7277dfae15a5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b6bf0c93-870e-4da7-aa88-59d154e64e1d","name":"b6bf0c93-870e-4da7-aa88-59d154e64e1d","status":"Succeeded","startTime":"2022-01-07T13:49:21.4950404Z","endTime":"2022-01-07T13:49:24.220383Z","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/southcentralusstage/operationResults/1fb29791-28f8-4acc-90c7-7277dfae15a5","name":"1fb29791-28f8-4acc-90c7-7277dfae15a5","status":"Succeeded","startTime":"2022-03-15T13:08:36.385646Z","endTime":"2022-03-15T13:08:38.812513Z","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: cache-control: - no-cache content-length: - - '609' + - '602' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:49:51 GMT + - Tue, 15 Mar 2022 13:09:06 GMT expires: - '-1' pragma: @@ -1359,21 +1328,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"70717d9a-7319-6ca9-e3e0-d16b0598e661","created":"2022-01-07T13:49:21Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"a0728046-576c-2825-7024-d021dd1d636b","created":"2022-03-15T13:08:36Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:49:51 GMT + - Tue, 15 Mar 2022 13:09:07 GMT expires: - '-1' pragma: @@ -1407,21 +1376,21 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"70717d9a-7319-6ca9-e3e0-d16b0598e661","created":"2022-01-07T13:49:21Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"a0728046-576c-2825-7024-d021dd1d636b","created":"2022-03-15T13:08:36Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:49:53 GMT + - Tue, 15 Mar 2022 13:09:07 GMT expires: - '-1' pragma: @@ -1430,10 +1399,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1455,21 +1420,21 @@ interactions: ParameterSetName: - --ids User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"70717d9a-7319-6ca9-e3e0-d16b0598e661","created":"2022-01-07T13:49:21Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"a0728046-576c-2825-7024-d021dd1d636b","created":"2022-03-15T13:08:36Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:49:54 GMT + - Tue, 15 Mar 2022 13:09:08 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 dcc84d13f70..a7329a7c900 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 @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T13%3A42%3A11.1778165Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:42:05.1959631Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T13:42:10.4013937Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T13:42:10.4013937Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A20%3A43.7971982Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:20:38.6585843Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:20:42.979002Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:20:42.979002Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3b097a7e-16df-44a8-b9a5-b85297db50f7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e09f79e3-e371-47b0-a4ea-7ed8fc927a84?api-version=2021-10-01 cache-control: - no-cache content-length: - - '712' + - '710' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:42:12 GMT + - Tue, 15 Mar 2022 11:20:44 GMT etag: - - W/"datetime'2022-01-07T13%3A42%3A11.1778165Z'" + - W/"datetime'2022-03-15T11%3A20%3A43.7971982Z'" expires: - '-1' pragma: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3b097a7e-16df-44a8-b9a5-b85297db50f7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e09f79e3-e371-47b0-a4ea-7ed8fc927a84?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3b097a7e-16df-44a8-b9a5-b85297db50f7","name":"3b097a7e-16df-44a8-b9a5-b85297db50f7","status":"Succeeded","startTime":"2022-01-07T13:42:11.1807978Z","endTime":"2022-01-07T13:42:11.2407868Z","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/southcentralusstage/operationResults/e09f79e3-e371-47b0-a4ea-7ed8fc927a84","name":"e09f79e3-e371-47b0-a4ea-7ed8fc927a84","status":"Succeeded","startTime":"2022-03-15T11:20:43.7938157Z","endTime":"2022-03-15T11:20:43.8250971Z","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: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:42:42 GMT + - Tue, 15 Mar 2022 11:21:14 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T13%3A42%3A11.2341101Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:42:05.1959631Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T13:42:10.4013937Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T13:42:10.4013937Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A20%3A43.8298019Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:20:38.6585843Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:20:42.979002Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:20:42.979002Z"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1175' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:42:42 GMT + - Tue, 15 Mar 2022 11:21:15 GMT etag: - - W/"datetime'2022-01-07T13%3A42%3A11.2341101Z'" + - W/"datetime'2022-03-15T11%3A20%3A43.8298019Z'" expires: - '-1' pragma: @@ -171,15 +171,15 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T13%3A42%3A50.3415142Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:42:44.3789834Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T13:42:49.5820195Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T13:42:49.5820195Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A22.6505168Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:18.3259660Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:21.9390052Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:21.9390052Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e03d1fdc-20d3-4fa0-aaca-f515367f5437?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0a9f9ba3-2430-49a0-a771-064f8a73c349?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -187,9 +187,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:42:51 GMT + - Tue, 15 Mar 2022 11:21:23 GMT etag: - - W/"datetime'2022-01-07T13%3A42%3A50.3415142Z'" + - W/"datetime'2022-03-15T11%3A21%3A22.6505168Z'" expires: - '-1' pragma: @@ -201,7 +201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -221,12 +221,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T13%3A42%3A50.3879531Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:42:44.3789834Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T13:42:49.5820195Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T13:42:49.5820195Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A22.6753458Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:18.3259660Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:21.9390052Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:21.9390052Z"}}' headers: cache-control: - no-cache @@ -235,9 +235,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:42:52 GMT + - Tue, 15 Mar 2022 11:21:24 GMT etag: - - W/"datetime'2022-01-07T13%3A42%3A50.3879531Z'" + - W/"datetime'2022-03-15T11%3A21%3A22.6753458Z'" expires: - '-1' pragma: @@ -271,12 +271,12 @@ interactions: ParameterSetName: - --ids User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T13%3A42%3A50.3879531Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:42:44.3789834Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T13:42:49.5820195Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T13:42:49.5820195Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A22.6753458Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:18.3259660Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:21.9390052Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:21.9390052Z"}}' headers: cache-control: - no-cache @@ -285,9 +285,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:42:53 GMT + - Tue, 15 Mar 2022 11:21:25 GMT etag: - - W/"datetime'2022-01-07T13%3A42%3A50.3879531Z'" + - W/"datetime'2022-03-15T11%3A21%3A22.6753458Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml index d32bfb18d0a..4bd42b68f52 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_get_volume_by_name.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"5cfcb10c-87ba-410f-b2cb-28fcc832124e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"51005c22-8da5-4ca6-a332-da68d26da00e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:28:51.6661558Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:16:31.4135376Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"6bb3bbcc-bd26-4fed-98bd-8bce58d0e611\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9d2ad3a0-b3ca-4a40-97e3-a8e8f3c05eca\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a8242c76-ddc3-4540-9fb0-766ff61b5ded?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/64db27df-f465-4214-9b93-a0610545ec60?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '769' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:28:55 GMT + - Tue, 15 Mar 2022 14:16:36 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 24fca5ba-f322-4215-b43c-004350555728 + - 1656333c-019b-4da9-9589-313ae2c3b4a1 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -78,9 +78,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a8242c76-ddc3-4540-9fb0-766ff61b5ded?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/64db27df-f465-4214-9b93-a0610545ec60?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:28:58 GMT + - Tue, 15 Mar 2022 14:16:40 GMT expires: - '-1' pragma: @@ -102,17 +102,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d543613a-d65d-4100-942a-dee2836e754a + - feeaa451-1c7a-4f38-94c5-bcd5bd50d2d2 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -127,9 +123,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a8242c76-ddc3-4540-9fb0-766ff61b5ded?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/64db27df-f465-4214-9b93-a0610545ec60?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -141,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:08 GMT + - Tue, 15 Mar 2022 14:16:50 GMT expires: - '-1' pragma: @@ -151,17 +147,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ef5658e-f336-46c8-8d41-36e577a26d8a + - 25c71ce7-2b0f-493c-8e58-500300d160d6 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -176,17 +168,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"adc7d80c-2b06-4c6a-8a76-94053b8d6d5b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"04f07d87-7b48-4287-96fc-89c877388c26\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:28:51.6661558Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:16:31.4135376Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6bb3bbcc-bd26-4fed-98bd-8bce58d0e611\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9d2ad3a0-b3ca-4a40-97e3-a8e8f3c05eca\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -195,13 +187,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:08 GMT + - Tue, 15 Mar 2022 14:16:50 GMT etag: - - W/"adc7d80c-2b06-4c6a-8a76-94053b8d6d5b" + - W/"04f07d87-7b48-4287-96fc-89c877388c26" expires: - '-1' pragma: @@ -211,17 +203,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f6a064bb-1d06-497d-9e54-3dc311bb65c4 + - d95c3576-48c2-4998-b278-5d2df6fe76bf status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -236,17 +224,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"adc7d80c-2b06-4c6a-8a76-94053b8d6d5b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"04f07d87-7b48-4287-96fc-89c877388c26\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:28:51.6661558Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:16:31.4135376Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6bb3bbcc-bd26-4fed-98bd-8bce58d0e611\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9d2ad3a0-b3ca-4a40-97e3-a8e8f3c05eca\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -255,13 +243,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:09 GMT + - Tue, 15 Mar 2022 14:16:51 GMT etag: - - W/"adc7d80c-2b06-4c6a-8a76-94053b8d6d5b" + - W/"04f07d87-7b48-4287-96fc-89c877388c26" expires: - '-1' pragma: @@ -271,20 +259,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a1e316ff-52a8-4220-854e-c96ca7515d3b + - 82633a40-ab69-44b4-80fb-101d4ea78575 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T10:28:51.6661558Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T14:16:31.4135376Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -301,33 +285,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"2f202075-502a-4307-a906-16189d2d1ebc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ed7f35ea-efd3-47f7-a089-f9c54f72a531\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:28:51.6661558Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:16:31.4135376Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"6bb3bbcc-bd26-4fed-98bd-8bce58d0e611\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9d2ad3a0-b3ca-4a40-97e3-a8e8f3c05eca\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"2f202075-502a-4307-a906-16189d2d1ebc\\\"\",\r\n + \ \"etag\": \"W/\\\"ed7f35ea-efd3-47f7-a089-f9c54f72a531\\\"\",\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/\\\"2f202075-502a-4307-a906-16189d2d1ebc\\\"\",\r\n + \ \"etag\": \"W/\\\"ed7f35ea-efd3-47f7-a089-f9c54f72a531\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -342,15 +326,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a9c07cc3-5379-4c4f-bcd8-44fc9847a292?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/71fc0c94-7aea-43e7-9028-5c5de34d2768?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2258' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:10 GMT + - Tue, 15 Mar 2022 14:16:52 GMT expires: - '-1' pragma: @@ -360,19 +344,60 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 586f7929-4955-4403-ab1e-197dd471888e + - 9766477b-77d9-44e5-a0d9-15524bd0bcb9 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 200 - message: '' + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g --vnet-name --address-prefixes --delegations + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/71fc0c94-7aea-43e7-9028-5c5de34d2768?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 14:16:55 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: + - d9f2e38a-ea27-4970-9845-21091c9ceab1 + status: + code: 200 + message: OK - request: body: null headers: @@ -387,9 +412,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a9c07cc3-5379-4c4f-bcd8-44fc9847a292?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/71fc0c94-7aea-43e7-9028-5c5de34d2768?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -401,7 +426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:14 GMT + - Tue, 15 Mar 2022 14:17:07 GMT expires: - '-1' pragma: @@ -411,17 +436,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 69e6c588-842f-42ea-bfa2-cebf0fcdc523 + - 8c09d4d0-72db-48d2-a3d3-5aeb61a77be5 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -436,27 +457,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c141ff1b-32fc-4f4e-bb6c-b67068d29781\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"97c652b4-2525-42a7-ad35-c16cee6be365\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:28:51.6661558Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:16:31.4135376Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"6bb3bbcc-bd26-4fed-98bd-8bce58d0e611\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9d2ad3a0-b3ca-4a40-97e3-a8e8f3c05eca\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"c141ff1b-32fc-4f4e-bb6c-b67068d29781\\\"\",\r\n + \ \"etag\": \"W/\\\"97c652b4-2525-42a7-ad35-c16cee6be365\\\"\",\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/\\\"c141ff1b-32fc-4f4e-bb6c-b67068d29781\\\"\",\r\n + \ \"etag\": \"W/\\\"97c652b4-2525-42a7-ad35-c16cee6be365\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -471,13 +492,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2260' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:14 GMT + - Tue, 15 Mar 2022 14:17:07 GMT etag: - - W/"c141ff1b-32fc-4f4e-bb6c-b67068d29781" + - W/"97c652b4-2525-42a7-ad35-c16cee6be365" expires: - '-1' pragma: @@ -487,17 +508,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 298a4dad-f6af-4eaf-ac80-4be7144f985c + - b83ce4fc-feb8-4924-88a5-92d9d8c6deea status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -510,31 +527,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T10%3A29%3A21.5792146Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:29:15.6723227Z"},"properties":{"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''2022-03-15T14%3A17%3A10.9306562Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:17:08.6872902Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/88f57b8d-9f98-435d-a4b2-4913ebd50ea4?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9ed1ffc7-ddd8-42dd-bdd5-f77c2206e927?api-version=2021-10-01 cache-control: - no-cache content-length: - - '419' + - '413' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:22 GMT + - Tue, 15 Mar 2022 14:17:12 GMT etag: - - W/"datetime'2022-01-07T10%3A29%3A21.5792146Z'" + - W/"datetime'2022-03-15T14%3A17%3A10.9306562Z'" expires: - '-1' pragma: @@ -546,7 +563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -566,21 +583,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/88f57b8d-9f98-435d-a4b2-4913ebd50ea4?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9ed1ffc7-ddd8-42dd-bdd5-f77c2206e927?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/88f57b8d-9f98-435d-a4b2-4913ebd50ea4","name":"88f57b8d-9f98-435d-a4b2-4913ebd50ea4","status":"Succeeded","startTime":"2022-01-07T10:29:21.5840797Z","endTime":"2022-01-07T10:29:21.6190885Z","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/southcentralusstage/operationResults/9ed1ffc7-ddd8-42dd-bdd5-f77c2206e927","name":"9ed1ffc7-ddd8-42dd-bdd5-f77c2206e927","status":"Succeeded","startTime":"2022-03-15T14:17:10.9364265Z","endTime":"2022-03-15T14:17:10.9764192Z","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: cache-control: - no-cache content-length: - - '531' + - '525' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:52 GMT + - Tue, 15 Mar 2022 14:17:42 GMT expires: - '-1' pragma: @@ -589,10 +606,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -614,23 +627,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T10%3A29%3A21.6119379Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:29:15.6723227Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T14%3A17%3A10.9688909Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:17:08.6872902Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:29:52 GMT + - Tue, 15 Mar 2022 14:17:42 GMT etag: - - W/"datetime'2022-01-07T10%3A29%3A21.6119379Z'" + - W/"datetime'2022-03-15T14%3A17%3A10.9688909Z'" expires: - '-1' pragma: @@ -639,10 +652,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -651,8 +660,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "tags": {"Tag2": "Value1"}, "properties": - {"size": 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "tags": {"Tag2": "Value1"}, "properties": {"size": + 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -663,31 +672,31 @@ interactions: Connection: - keep-alive Content-Length: - - '123' + - '117' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T10%3A29%3A59.8910771Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-01-07T10:29:54.2303795Z"},"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''2022-03-15T14%3A17%3A48.1829202Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-03-15T14:17:43.8303625Z"},"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/southcentralusstage/operationResults/46b81b7e-a6a1-431c-98f4-08d09de88388?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5f378189-c34d-4e81-91b5-7a7db4c56af2?api-version=2021-10-01 cache-control: - no-cache content-length: - - '598' + - '592' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:30:00 GMT + - Tue, 15 Mar 2022 14:17:49 GMT etag: - - W/"datetime'2022-01-07T10%3A29%3A59.8910771Z'" + - W/"datetime'2022-03-15T14%3A17%3A48.1829202Z'" expires: - '-1' pragma: @@ -719,21 +728,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/46b81b7e-a6a1-431c-98f4-08d09de88388?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5f378189-c34d-4e81-91b5-7a7db4c56af2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/46b81b7e-a6a1-431c-98f4-08d09de88388","name":"46b81b7e-a6a1-431c-98f4-08d09de88388","status":"Succeeded","startTime":"2022-01-07T10:29:59.8954978Z","endTime":"2022-01-07T10:30:00.2777395Z","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/southcentralusstage/operationResults/5f378189-c34d-4e81-91b5-7a7db4c56af2","name":"5f378189-c34d-4e81-91b5-7a7db4c56af2","status":"Succeeded","startTime":"2022-03-15T14:17:48.1887029Z","endTime":"2022-03-15T14:17:48.5231483Z","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: cache-control: - no-cache content-length: - - '561' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:30:30 GMT + - Tue, 15 Mar 2022 14:18:19 GMT expires: - '-1' pragma: @@ -767,23 +776,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T10%3A30%3A00.2698893Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-01-07T10:29:54.2303795Z"},"properties":{"poolId":"26579be2-624b-f9a1-c002-02cc6ed1900d","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T14%3A17%3A48.4872705Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-03-15T14:17:43.8303625Z"},"properties":{"poolId":"cb8d2eea-3a2b-710d-70ec-07253622318e","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '713' + - '707' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:30:31 GMT + - Tue, 15 Mar 2022 14:18:19 GMT etag: - - W/"datetime'2022-01-07T10%3A30%3A00.2698893Z'" + - W/"datetime'2022-03-15T14%3A17%3A48.4872705Z'" expires: - '-1' pragma: @@ -804,11 +813,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "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"}}' + body: '{"location": "southcentralusstage", "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -819,7 +829,7 @@ interactions: Connection: - keep-alive Content-Length: - - '510' + - '536' Content-Type: - application/json ParameterSetName: @@ -827,25 +837,25 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A30%3A38.36785Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-01-07T10:30:32.5424452Z"},"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''2022-03-15T14%3A18%3A26.7219513Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-03-15T14:18:21.1667502Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1162' + - '1221' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:30:38 GMT + - Tue, 15 Mar 2022 14:18:27 GMT etag: - - W/"datetime'2022-01-07T10%3A30%3A38.36785Z'" + - W/"datetime'2022-03-15T14%3A18%3A26.7219513Z'" expires: - '-1' pragma: @@ -857,7 +867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -879,21 +889,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Creating","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Creating","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:31:09 GMT + - Tue, 15 Mar 2022 14:18:57 GMT expires: - '-1' pragma: @@ -929,21 +939,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Creating","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Creating","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:31:39 GMT + - Tue, 15 Mar 2022 14:19:28 GMT expires: - '-1' pragma: @@ -979,21 +989,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Creating","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Creating","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:32:09 GMT + - Tue, 15 Mar 2022 14:19:58 GMT expires: - '-1' pragma: @@ -1029,21 +1039,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Creating","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Creating","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:32:40 GMT + - Tue, 15 Mar 2022 14:20:29 GMT expires: - '-1' pragma: @@ -1079,21 +1089,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Creating","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Creating","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:33:10 GMT + - Tue, 15 Mar 2022 14:20:59 GMT expires: - '-1' pragma: @@ -1129,21 +1139,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Creating","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Creating","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:33:40 GMT + - Tue, 15 Mar 2022 14:21:29 GMT expires: - '-1' pragma: @@ -1179,21 +1189,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Creating","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Creating","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:34:10 GMT + - Tue, 15 Mar 2022 14:21:59 GMT expires: - '-1' pragma: @@ -1229,21 +1239,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Creating","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Creating","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:34:41 GMT + - Tue, 15 Mar 2022 14:22:30 GMT expires: - '-1' pragma: @@ -1279,21 +1289,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ef058a-5f8d-496d-8af2-004a5ad776a5","name":"82ef058a-5f8d-496d-8af2-004a5ad776a5","status":"Succeeded","startTime":"2022-01-07T10:30:38.3757583Z","endTime":"2022-01-07T10:34:59.6040254Z","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/southcentralusstage/operationResults/11485562-fcea-4616-9285-787a2605b001","name":"11485562-fcea-4616-9285-787a2605b001","status":"Succeeded","startTime":"2022-03-15T14:18:26.7341785Z","endTime":"2022-03-15T14:22:33.0791139Z","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: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:35:11 GMT + - Tue, 15 Mar 2022 14:23:01 GMT expires: - '-1' pragma: @@ -1329,23 +1339,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --protocol-types --tags --rule-index --allowed-clients User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A34%3A59.5901058Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-01-07T10:30:32.5424452Z"},"properties":{"fileSystemId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_278b86b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","fileSystemId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A22%3A33.0728302Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-03-15T14:18:21.1667502Z"},"properties":{"fileSystemId":"6a765da1-99ec-8190-6729-5f038f736031","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_eb549e6f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"6a765da1-99ec-8190-6729-5f038f736031","fileSystemId":"6a765da1-99ec-8190-6729-5f038f736031","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2094' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:35:11 GMT + - Tue, 15 Mar 2022 14:23:01 GMT etag: - - W/"datetime'2022-01-07T10%3A34%3A59.5901058Z'" + - W/"datetime'2022-03-15T14%3A22%3A33.0728302Z'" expires: - '-1' pragma: @@ -1379,23 +1389,23 @@ interactions: ParameterSetName: - --resource-group -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A34%3A59.5901058Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-01-07T10:30:32.5424452Z"},"properties":{"fileSystemId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_278b86b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","fileSystemId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A22%3A33.0728302Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-03-15T14:18:21.1667502Z"},"properties":{"fileSystemId":"6a765da1-99ec-8190-6729-5f038f736031","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_eb549e6f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"6a765da1-99ec-8190-6729-5f038f736031","fileSystemId":"6a765da1-99ec-8190-6729-5f038f736031","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2094' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:35:13 GMT + - Tue, 15 Mar 2022 14:23:03 GMT etag: - - W/"datetime'2022-01-07T10%3A34%3A59.5901058Z'" + - W/"datetime'2022-03-15T14%3A22%3A33.0728302Z'" expires: - '-1' pragma: @@ -1429,23 +1439,23 @@ interactions: ParameterSetName: - --ids User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A34%3A59.5901058Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-01-07T10:30:32.5424452Z"},"properties":{"fileSystemId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_278b86b7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","fileSystemId":"6e4912ca-f801-5684-edcc-58ad80fe02c1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A22%3A33.0728302Z''\"","location":"southcentralusstage","tags":{"Tag2":"Value1","CreatedOnDate":"2022-03-15T14:18:21.1667502Z"},"properties":{"fileSystemId":"6a765da1-99ec-8190-6729-5f038f736031","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv4.1"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_eb549e6f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"6a765da1-99ec-8190-6729-5f038f736031","fileSystemId":"6a765da1-99ec-8190-6729-5f038f736031","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2094' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:35:14 GMT + - Tue, 15 Mar 2022 14:23:03 GMT etag: - - W/"datetime'2022-01-07T10%3A34%3A59.5901058Z'" + - W/"datetime'2022-03-15T14%3A22%3A33.0728302Z'" expires: - '-1' pragma: @@ -1454,10 +1464,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 232645c48a0..d142d98f6af 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"729aae35-2e82-493b-ae4e-2e7e54ded662\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"b6b08cca-cdb9-4580-96ad-ba4618d3b04d\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"3f71f94b-d089-4be3-b97e-acb798237908\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:28:45.4514341Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"c4ddf611-eb68-475e-bcee-2e91dd337a6c\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1239b27e-93b6-4f67-863e-dd9f29112afa?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/f46dcbc7-8974-4fed-b15c-ad021ef3ff5f?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '789' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:51:49 GMT + - Tue, 15 Mar 2022 15:28:48 GMT expires: - '-1' pragma: @@ -57,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b3bde5b4-5976-4ba5-a132-bf963bfeaa8a + - dc300158-b392-4181-987e-5d58a3c12011 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1239b27e-93b6-4f67-863e-dd9f29112afa?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/f46dcbc7-8974-4fed-b15c-ad021ef3ff5f?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:51:52 GMT + - Tue, 15 Mar 2022 15:28:52 GMT expires: - '-1' pragma: @@ -101,14 +102,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fb65b45c-00fa-4fcb-bec7-949f496d382c + - abdf7233-3a33-4509-90a1-149a16e1222a status: code: 200 message: OK @@ -126,16 +123,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"a0db35f6-762e-4283-9c3e-e25925888b55\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b6b08cca-cdb9-4580-96ad-ba4618d3b04d\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"edc511c4-0dd2-49e9-b122-c33fa257297d\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:28:45.4514341Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"c4ddf611-eb68-475e-bcee-2e91dd337a6c\",\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\": @@ -144,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '790' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:51:53 GMT + - Tue, 15 Mar 2022 15:28:52 GMT etag: - - W/"a0db35f6-762e-4283-9c3e-e25925888b55" + - W/"edc511c4-0dd2-49e9-b122-c33fa257297d" expires: - '-1' pragma: @@ -160,14 +158,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcf8b728-ef6e-41a4-8e5a-e5e259128798 + - 5c0ed24d-e7f7-432f-ba06-c96d2126a960 status: code: 200 message: OK @@ -185,16 +179,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"a0db35f6-762e-4283-9c3e-e25925888b55\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b6b08cca-cdb9-4580-96ad-ba4618d3b04d\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"edc511c4-0dd2-49e9-b122-c33fa257297d\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:28:45.4514341Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"c4ddf611-eb68-475e-bcee-2e91dd337a6c\",\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\": @@ -203,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '790' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:51:53 GMT + - Tue, 15 Mar 2022 15:28:53 GMT etag: - - W/"a0db35f6-762e-4283-9c3e-e25925888b55" + - W/"edc511c4-0dd2-49e9-b122-c33fa257297d" expires: - '-1' pragma: @@ -226,18 +221,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9e18de50-2322-4cd5-af54-1d4fd46ad042 + - 021cef9a-10b3-4363-8750-0fc1f55cc90c status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T15:28:45.4514341Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +243,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"5e583d96-1cc8-43bf-97f6-583a50641994\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"b6b08cca-cdb9-4580-96ad-ba4618d3b04d\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"6455f461-29ba-4e33-937a-7300173b5433\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:28:45.4514341Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"c4ddf611-eb68-475e-bcee-2e91dd337a6c\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\",\r\n - \ \"etag\": \"W/\\\"5e583d96-1cc8-43bf-97f6-583a50641994\\\"\",\r\n + \ \"etag\": \"W/\\\"6455f461-29ba-4e33-937a-7300173b5433\\\"\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\",\r\n - \ \"etag\": \"W/\\\"5e583d96-1cc8-43bf-97f6-583a50641994\\\"\",\r\n + \ \"etag\": \"W/\\\"6455f461-29ba-4e33-937a-7300173b5433\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +284,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/be2fae51-5ec5-4916-b54c-b84b36a7a499?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/6f7eaee3-987b-4e69-9863-b5aeecda7529?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2276' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:51:55 GMT + - Tue, 15 Mar 2022 15:28:54 GMT expires: - '-1' pragma: @@ -313,9 +309,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8f6974fe-db17-4937-8369-98287f2d452c + - 45c450a5-d142-4dfe-a9a3-5a20d3ff33d6 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -333,9 +329,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/be2fae51-5ec5-4916-b54c-b84b36a7a499?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/6f7eaee3-987b-4e69-9863-b5aeecda7529?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:51:58 GMT + - Tue, 15 Mar 2022 15:28:57 GMT expires: - '-1' pragma: @@ -364,7 +360,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 38578f60-c6b6-4018-9c0f-6ba5753a61da + - 1870ed01-f35a-47cb-b15b-70f5de48903c status: code: 200 message: OK @@ -382,26 +378,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-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=2021-05-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\",\r\n - \ \"etag\": \"W/\\\"414d3966-9cdc-4254-84d6-16a72f43949a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"b6b08cca-cdb9-4580-96ad-ba4618d3b04d\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"79dbbf53-bdd5-4b40-abe0-759bc54b7dd2\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:28:45.4514341Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"c4ddf611-eb68-475e-bcee-2e91dd337a6c\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default\",\r\n - \ \"etag\": \"W/\\\"414d3966-9cdc-4254-84d6-16a72f43949a\\\"\",\r\n + \ \"etag\": \"W/\\\"79dbbf53-bdd5-4b40-abe0-759bc54b7dd2\\\"\",\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_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default/delegations/0\",\r\n - \ \"etag\": \"W/\\\"414d3966-9cdc-4254-84d6-16a72f43949a\\\"\",\r\n + \ \"etag\": \"W/\\\"79dbbf53-bdd5-4b40-abe0-759bc54b7dd2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +413,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2278' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:51:58 GMT + - Tue, 15 Mar 2022 15:28:58 GMT etag: - - W/"414d3966-9cdc-4254-84d6-16a72f43949a" + - W/"79dbbf53-bdd5-4b40-abe0-759bc54b7dd2" expires: - '-1' pragma: @@ -439,7 +436,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3b035b32-d80c-4314-b6a7-f1e037333d9a + - 99cd8997-65d4-4455-a049-f6ad6a5badd4 status: code: 200 message: OK @@ -455,31 +452,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-10-19T12%3A52%3A05.3819238Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T15%3A29%3A04.0976286Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:28:59.8665562Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bc9ac6fd-f249-41b3-b16b-60390627bb02?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/92da37ee-3bb3-492b-a743-e9386101f922?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '421' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:52:05 GMT + - Tue, 15 Mar 2022 15:29:05 GMT etag: - - W/"datetime'2021-10-19T12%3A52%3A05.3819238Z'" + - W/"datetime'2022-03-15T15%3A29%3A04.0976286Z'" expires: - '-1' pragma: @@ -511,21 +508,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bc9ac6fd-f249-41b3-b16b-60390627bb02?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/92da37ee-3bb3-492b-a743-e9386101f922?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bc9ac6fd-f249-41b3-b16b-60390627bb02","name":"bc9ac6fd-f249-41b3-b16b-60390627bb02","status":"Succeeded","startTime":"2021-10-19T12:52:05.3855792Z","endTime":"2021-10-19T12:52:05.4366671Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/92da37ee-3bb3-492b-a743-e9386101f922","name":"92da37ee-3bb3-492b-a743-e9386101f922","status":"Succeeded","startTime":"2022-03-15T15:29:04.1026662Z","endTime":"2022-03-15T15:29:04.1676215Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '588' + - '533' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:52:36 GMT + - Tue, 15 Mar 2022 15:29:35 GMT expires: - '-1' pragma: @@ -559,23 +556,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-10-19T12%3A52%3A05.4301411Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T15%3A29%3A04.1601143Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:28:59.8665562Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '468' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:52:36 GMT + - Tue, 15 Mar 2022 15:29:35 GMT etag: - - W/"datetime'2021-10-19T12%3A52%3A05.4301411Z'" + - W/"datetime'2022-03-15T15%3A29%3A04.1601143Z'" expires: - '-1' pragma: @@ -596,8 +593,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +605,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T12%3A52%3A44.0358633Z''\"","location":"southcentralusstage","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_account_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''2022-03-15T15%3A29%3A42.2413851Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:29:38.1074468Z"},"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/southcentralusstage/operationResults/16539220-63e9-453d-b591-b6888dbbfc52?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58502ab8-b466-4154-ad10-7eaa17699004?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '584' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:52:44 GMT + - Tue, 15 Mar 2022 15:29:43 GMT etag: - - W/"datetime'2021-10-19T12%3A52%3A44.0358633Z'" + - W/"datetime'2022-03-15T15%3A29%3A42.2413851Z'" expires: - '-1' pragma: @@ -644,7 +641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -664,21 +661,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/16539220-63e9-453d-b591-b6888dbbfc52?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/58502ab8-b466-4154-ad10-7eaa17699004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/16539220-63e9-453d-b591-b6888dbbfc52","name":"16539220-63e9-453d-b591-b6888dbbfc52","status":"Succeeded","startTime":"2021-10-19T12:52:44.0431979Z","endTime":"2021-10-19T12:52:44.3342378Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/58502ab8-b466-4154-ad10-7eaa17699004","name":"58502ab8-b466-4154-ad10-7eaa17699004","status":"Succeeded","startTime":"2022-03-15T15:29:42.2464683Z","endTime":"2022-03-15T15:29:42.5538448Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: cache-control: - no-cache content-length: - - '627' + - '563' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:53:15 GMT + - Tue, 15 Mar 2022 15:30:13 GMT expires: - '-1' pragma: @@ -687,10 +684,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -712,23 +705,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T12%3A52%3A44.3255582Z''\"","location":"southcentralusstage","properties":{"poolId":"f30854b0-2e32-6bf4-45ba-3d0496b92b2d","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A29%3A42.5326122Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:29:38.1074468Z"},"properties":{"poolId":"ba269900-8486-abb7-1aa9-30c6ceec3193","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '699' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:53:15 GMT + - Tue, 15 Mar 2022 15:30:13 GMT etag: - - W/"datetime'2021-10-19T12%3A52%3A44.3255582Z'" + - W/"datetime'2022-03-15T15%3A29%3A42.5326122Z'" expires: - '-1' pragma: @@ -737,10 +730,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -750,7 +739,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +751,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '345' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T12%3A53%3A20.9131933Z''\"","location":"southcentralusstage","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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_account_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''2022-03-15T15%3A30%3A20.0750602Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:30:15.3868571Z"},"properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '858' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:53:21 GMT + - Tue, 15 Mar 2022 15:30:21 GMT etag: - - W/"datetime'2021-10-19T12%3A53%3A20.9131933Z'" + - W/"datetime'2022-03-15T15%3A30%3A20.0750602Z'" expires: - '-1' pragma: @@ -797,7 +787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -817,21 +807,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f","name":"bb863662-a6d0-4676-967b-713cbab2a69f","status":"Creating","startTime":"2021-10-19T12:53:20.9298008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1002c475-7925-4f90-8e11-c288496e7d56","name":"1002c475-7925-4f90-8e11-c288496e7d56","status":"Creating","startTime":"2022-03-15T15:30:20.0808259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:53:51 GMT + - Tue, 15 Mar 2022 15:30:51 GMT expires: - '-1' pragma: @@ -865,21 +855,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f","name":"bb863662-a6d0-4676-967b-713cbab2a69f","status":"Creating","startTime":"2021-10-19T12:53:20.9298008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1002c475-7925-4f90-8e11-c288496e7d56","name":"1002c475-7925-4f90-8e11-c288496e7d56","status":"Creating","startTime":"2022-03-15T15:30:20.0808259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:54:22 GMT + - Tue, 15 Mar 2022 15:31:21 GMT expires: - '-1' pragma: @@ -913,21 +903,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f","name":"bb863662-a6d0-4676-967b-713cbab2a69f","status":"Creating","startTime":"2021-10-19T12:53:20.9298008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1002c475-7925-4f90-8e11-c288496e7d56","name":"1002c475-7925-4f90-8e11-c288496e7d56","status":"Creating","startTime":"2022-03-15T15:30:20.0808259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:54:52 GMT + - Tue, 15 Mar 2022 15:31:51 GMT expires: - '-1' pragma: @@ -961,21 +951,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f","name":"bb863662-a6d0-4676-967b-713cbab2a69f","status":"Creating","startTime":"2021-10-19T12:53:20.9298008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1002c475-7925-4f90-8e11-c288496e7d56","name":"1002c475-7925-4f90-8e11-c288496e7d56","status":"Creating","startTime":"2022-03-15T15:30:20.0808259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:55:23 GMT + - Tue, 15 Mar 2022 15:32:21 GMT expires: - '-1' pragma: @@ -1009,21 +999,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f","name":"bb863662-a6d0-4676-967b-713cbab2a69f","status":"Creating","startTime":"2021-10-19T12:53:20.9298008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1002c475-7925-4f90-8e11-c288496e7d56","name":"1002c475-7925-4f90-8e11-c288496e7d56","status":"Creating","startTime":"2022-03-15T15:30:20.0808259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:55:53 GMT + - Tue, 15 Mar 2022 15:32:51 GMT expires: - '-1' pragma: @@ -1057,21 +1047,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f","name":"bb863662-a6d0-4676-967b-713cbab2a69f","status":"Creating","startTime":"2021-10-19T12:53:20.9298008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1002c475-7925-4f90-8e11-c288496e7d56","name":"1002c475-7925-4f90-8e11-c288496e7d56","status":"Creating","startTime":"2022-03-15T15:30:20.0808259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:56:23 GMT + - Tue, 15 Mar 2022 15:33:21 GMT expires: - '-1' pragma: @@ -1105,21 +1095,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f","name":"bb863662-a6d0-4676-967b-713cbab2a69f","status":"Creating","startTime":"2021-10-19T12:53:20.9298008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1002c475-7925-4f90-8e11-c288496e7d56","name":"1002c475-7925-4f90-8e11-c288496e7d56","status":"Creating","startTime":"2022-03-15T15:30:20.0808259Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '575' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:56:53 GMT + - Tue, 15 Mar 2022 15:33:53 GMT expires: - '-1' pragma: @@ -1153,21 +1143,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1002c475-7925-4f90-8e11-c288496e7d56?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb863662-a6d0-4676-967b-713cbab2a69f","name":"bb863662-a6d0-4676-967b-713cbab2a69f","status":"Succeeded","startTime":"2021-10-19T12:53:20.9298008Z","endTime":"2021-10-19T12:57:23.4908861Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/1002c475-7925-4f90-8e11-c288496e7d56","name":"1002c475-7925-4f90-8e11-c288496e7d56","status":"Succeeded","startTime":"2022-03-15T15:30:20.0808259Z","endTime":"2022-03-15T15:34:18.0163151Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '586' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:57:24 GMT + - Tue, 15 Mar 2022 15:34:23 GMT expires: - '-1' pragma: @@ -1201,23 +1191,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T12%3A57%3A23.4883356Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6eec508d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A34%3A17.9489105Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:30:15.3868571Z"},"properties":{"fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_bf335606","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19951d6b-d063-0eea-53ec-76751035b31c","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2087' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:57:24 GMT + - Tue, 15 Mar 2022 15:34:23 GMT etag: - - W/"datetime'2021-10-19T12%3A57%3A23.4883356Z'" + - W/"datetime'2022-03-15T15%3A34%3A17.9489105Z'" expires: - '-1' pragma: @@ -1251,21 +1241,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '363' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:57:26 GMT + - Tue, 15 Mar 2022 15:34:24 GMT expires: - '-1' pragma: @@ -1299,23 +1289,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T12%3A57%3A23.4883356Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6eec508d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A34%3A17.9489105Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:30:15.3868571Z"},"properties":{"fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_bf335606","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19951d6b-d063-0eea-53ec-76751035b31c","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2087' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:57:33 GMT + - Tue, 15 Mar 2022 15:34:25 GMT etag: - - W/"datetime'2021-10-19T12%3A57%3A23.4883356Z'" + - W/"datetime'2022-03-15T15%3A34%3A17.9489105Z'" expires: - '-1' pragma: @@ -1336,9 +1326,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-15T15:30:15.3868571Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": true}}}}' headers: Accept: @@ -1350,35 +1340,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '435' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T12%3A57%3A35.4907989Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6eec508d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A34%3A28.9874188Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:30:15.3868571Z"},"properties":{"provisioningState":"Patching","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_bf335606","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19951d6b-d063-0eea-53ec-76751035b31c","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b788fb9f-8c2c-4671-84c7-4bddcbb05fed?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/72fdf50c-302b-49ac-8a39-c879512df819?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2146' + - '2086' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:57:35 GMT + - Tue, 15 Mar 2022 15:34:28 GMT etag: - - W/"datetime'2021-10-19T12%3A57%3A35.4907989Z'" + - W/"datetime'2022-03-15T15%3A34%3A28.9874188Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b788fb9f-8c2c-4671-84c7-4bddcbb05fed?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/72fdf50c-302b-49ac-8a39-c879512df819?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1388,7 +1378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1408,21 +1398,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b788fb9f-8c2c-4671-84c7-4bddcbb05fed?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/72fdf50c-302b-49ac-8a39-c879512df819?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b788fb9f-8c2c-4671-84c7-4bddcbb05fed","name":"b788fb9f-8c2c-4671-84c7-4bddcbb05fed","status":"Succeeded","startTime":"2021-10-19T12:57:35.4924716Z","endTime":"2021-10-19T12:57:40.8674516Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/72fdf50c-302b-49ac-8a39-c879512df819","name":"72fdf50c-302b-49ac-8a39-c879512df819","status":"Succeeded","startTime":"2022-03-15T15:34:28.9935961Z","endTime":"2022-03-15T15:34:32.1931213Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '586' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:58:05 GMT + - Tue, 15 Mar 2022 15:34:58 GMT expires: - '-1' pragma: @@ -1456,23 +1446,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T12%3A57%3A40.8615828Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6eec508d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A34%3A32.1704357Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:30:15.3868571Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_bf335606","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19951d6b-d063-0eea-53ec-76751035b31c","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2356' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:58:05 GMT + - Tue, 15 Mar 2022 15:34:59 GMT etag: - - W/"datetime'2021-10-19T12%3A57%3A40.8615828Z'" + - W/"datetime'2022-03-15T15%3A34%3A32.1704357Z'" expires: - '-1' pragma: @@ -1504,33 +1494,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4db585a7-a249-4fd8-903c-d689f40ab6cc?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e672b48a-aff5-49bb-9edc-d77d69a1fcf5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '465' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:58:07 GMT + - Tue, 15 Mar 2022 15:35:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4db585a7-a249-4fd8-903c-d689f40ab6cc?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e672b48a-aff5-49bb-9edc-d77d69a1fcf5?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1560,21 +1550,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4db585a7-a249-4fd8-903c-d689f40ab6cc?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e672b48a-aff5-49bb-9edc-d77d69a1fcf5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4db585a7-a249-4fd8-903c-d689f40ab6cc","name":"4db585a7-a249-4fd8-903c-d689f40ab6cc","status":"Succeeded","startTime":"2021-10-19T12:58:07.6099244Z","endTime":"2021-10-19T12:58:08.1878431Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/e672b48a-aff5-49bb-9edc-d77d69a1fcf5","name":"e672b48a-aff5-49bb-9edc-d77d69a1fcf5","status":"Succeeded","startTime":"2022-03-15T15:35:01.2629307Z","endTime":"2022-03-15T15:35:01.7784381Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005"}}' headers: cache-control: - no-cache content-length: - - '693' + - '612' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:58:37 GMT + - Tue, 15 Mar 2022 15:35:31 GMT expires: - '-1' pragma: @@ -1608,21 +1598,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T12:58:08Z","backupId":"80ba07bb-e294-c06b-2803-dd8a5dff9442","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:35:01Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:58:37 GMT + - Tue, 15 Mar 2022 15:35:31 GMT expires: - '-1' pragma: @@ -1656,23 +1646,67 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/accountBackups?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps266","name":"cli-acc-000002/ps266","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:11:20Z","backupId":"750af0a8-7223-5c69-2e7a-00a629bb92a9","size":0,"backupType":"Manual","label":"powershellBackupTest2","provisioningState":"Failed","failureReason":"Error + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/sdk-py-tests-backup-1","name":"cli-acc-000002/sdk-py-tests-backup-1","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-03-31T09:26:36Z","backupId":"66a0229d-a0af-a43c-7410-f2ec5dbba613","size":315392,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"sdk-py-tests-vol-1","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps6864","name":"cli-acc-000002/ps6864","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T21:33:46Z","backupId":"785b4edd-de9b-32d0-be7b-4096c48c9a85","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps8095","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps1789","name":"cli-acc-000002/ps1789","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T21:31:23Z","backupId":"78bcfc29-9f40-6ee3-6ef3-4409d2fbc19b","size":0,"backupType":"Manual","label":"powershellBackupTest2","provisioningState":"Failed","failureReason":"Error when creating - Could not spawn additional jobs for volume backup. Please - wait for the ongoing jobs to finish and try again.","volumeName":"ps7841","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps4177","name":"cli-acc-000002/ps4177","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:11:06Z","backupId":"2067f25e-8196-a565-1925-dad7bc499fcd","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps7841","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps2088","name":"cli-acc-000002/ps2088","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-07-13T16:38:44Z","backupId":"6a4f0ab3-dd7a-f7fa-363a-9f2cbaecb70d","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps5378","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-uzmz4lrcygk7i","name":"cli-acc-000002/cli-backup-uzmz4lrcygk7i","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-09-02T08:23:46Z","backupId":"a8940d64-0120-976e-03f7-58facea67a65","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-4x3scquh6so3aslw","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005","name":"cli-acc-000002/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T12:58:08Z","backupId":"80ba07bb-e294-c06b-2803-dd8a5dff9442","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' + wait for the ongoing jobs to finish and try again.","volumeName":"ps8095","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps1635","name":"cli-acc-000002/ps1635","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T22:33:13Z","backupId":"01ac4229-a5e2-dc02-45c1-76449a2f1b0f","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps8592","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps6503","name":"cli-acc-000002/ps6503","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T23:05:21Z","backupId":"fc5d4d7f-8f89-932b-6ccc-f539291415af","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps569","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps8714","name":"cli-acc-000002/ps8714","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-12T23:47:24Z","backupId":"9dffeb8a-5069-cbf6-993b-ddf2ad24dbf7","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps292","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/ps9492","name":"cli-acc-000002/ps9492","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-01-13T10:04:33Z","backupId":"f437ec82-e6e1-c1bf-3502-3edd275c8055","size":331776,"backupType":"Manual","label":"powershellBackupTest","provisioningState":"Succeeded","failureReason":"None","volumeName":"ps7917","useExistingSnapshot":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/accountBackups/cli-backup-000005","name":"cli-acc-000002/cli-backup-000005","type":"Microsoft.NetApp/netAppAccounts/accountBackups","location":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:35:01Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' headers: cache-control: - no-cache content-length: - - '3336' + - '4780' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:58:39 GMT + - Tue, 15 Mar 2022 15:35:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume backup show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -b + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:35:01Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 15:35:33 GMT expires: - '-1' pragma: @@ -1706,21 +1740,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T12:58:08Z","backupId":"80ba07bb-e294-c06b-2803-dd8a5dff9442","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:35:01Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:58:40 GMT + - Tue, 15 Mar 2022 15:36:34 GMT expires: - '-1' pragma: @@ -1754,21 +1788,65 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T12:58:08Z","backupId":"80ba07bb-e294-c06b-2803-dd8a5dff9442","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:35:01Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:59:42 GMT + - Tue, 15 Mar 2022 15:37:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume backup show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -b + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:35:01Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 15:38:36 GMT expires: - '-1' pragma: @@ -1802,21 +1880,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2021-10-19T12:58:12Z","backupId":"80ba07bb-e294-c06b-2803-dd8a5dff9442","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:35:01Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '665' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:00:44 GMT + - Tue, 15 Mar 2022 15:39:38 GMT expires: - '-1' pragma: @@ -1836,6 +1914,98 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume backup show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -b + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:35:01Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + headers: + cache-control: + - no-cache + content-length: + - '665' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 15:40:42 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 volume backup show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -b + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/backups/cli-backup-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"southcentralusstage","properties":{"creationDate":"2022-03-15T15:36:11Z","backupId":"3896ae18-9fea-6228-c801-85df29867260","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + headers: + cache-control: + - no-cache + content-length: + - '671' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 15:41:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK - request: body: null headers: @@ -1850,21 +2020,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '363' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:00:45 GMT + - Tue, 15 Mar 2022 15:41:43 GMT expires: - '-1' pragma: @@ -1898,23 +2068,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T12%3A57%3A40.8615828Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6eec508d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A34%3A32.1704357Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:30:15.3868571Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_bf335606","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19951d6b-d063-0eea-53ec-76751035b31c","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2356' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:00:52 GMT + - Tue, 15 Mar 2022 15:41:44 GMT etag: - - W/"datetime'2021-10-19T12%3A57%3A40.8615828Z'" + - W/"datetime'2022-03-15T15%3A34%3A32.1704357Z'" expires: - '-1' pragma: @@ -1923,10 +2093,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1935,9 +2101,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-15T15:30:15.3868571Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": false}}}}' headers: Accept: @@ -1949,35 +2115,35 @@ interactions: Connection: - keep-alive Content-Length: - - '420' + - '436' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A00%3A55.3586818Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6eec508d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A41%3A48.5542626Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:30:15.3868571Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_bf335606","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19951d6b-d063-0eea-53ec-76751035b31c","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ffebdd6e-b0db-43c7-8d87-a9d87264ef04?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/baec82b8-ccc2-4ebd-b94e-554a7fee8a78?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2458' + - '2355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:00:54 GMT + - Tue, 15 Mar 2022 15:41:48 GMT etag: - - W/"datetime'2021-10-19T13%3A00%3A55.3586818Z'" + - W/"datetime'2022-03-15T15%3A41%3A48.5542626Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ffebdd6e-b0db-43c7-8d87-a9d87264ef04?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/baec82b8-ccc2-4ebd-b94e-554a7fee8a78?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1987,7 +2153,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -2007,21 +2173,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ffebdd6e-b0db-43c7-8d87-a9d87264ef04?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/baec82b8-ccc2-4ebd-b94e-554a7fee8a78?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ffebdd6e-b0db-43c7-8d87-a9d87264ef04","name":"ffebdd6e-b0db-43c7-8d87-a9d87264ef04","status":"Succeeded","startTime":"2021-10-19T13:00:55.3659329Z","endTime":"2021-10-19T13:01:05.0208234Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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/baec82b8-ccc2-4ebd-b94e-554a7fee8a78","name":"baec82b8-ccc2-4ebd-b94e-554a7fee8a78","status":"Succeeded","startTime":"2022-03-15T15:41:48.5577638Z","endTime":"2022-03-15T15:41:53.5633216Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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' + - '586' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:01:25 GMT + - Tue, 15 Mar 2022 15:42:18 GMT expires: - '-1' pragma: @@ -2030,10 +2196,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2055,23 +2217,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-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.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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-10-19T13%3A01%3A05.0166982Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_6eec508d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","fileSystemId":"88dd6811-8ca2-0d85-7339-c9a3de717e20","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_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''2022-03-15T15%3A41%3A53.5582778Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:30:15.3868571Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Succeeded","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_bf335606","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"19951d6b-d063-0eea-53ec-76751035b31c","fileSystemId":"19951d6b-d063-0eea-53ec-76751035b31c","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2460' + - '2357' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 13:01:25 GMT + - Tue, 15 Mar 2022 15:42:18 GMT etag: - - W/"datetime'2021-10-19T13%3A01%3A05.0166982Z'" + - W/"datetime'2022-03-15T15%3A41%3A53.5582778Z'" expires: - '-1' pragma: @@ -2080,10 +2242,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 825561aacc0..c26ffa11af6 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 @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T15%3A08%3A20.5266559Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-06T15:08:15.6107151Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T15:08:19.7198321Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T15:08:19.7198321Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A41%3A55.9241501Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:41:49.8341685Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:41:55.1394948Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:41:55.1394948Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd520002-7b11-4354-b2d3-321f6d0641e5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/76c10ea8-57ca-48f7-9d94-9ec031c723e3?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:08:21 GMT + - Tue, 15 Mar 2022 10:41:57 GMT etag: - - W/"datetime'2022-01-06T15%3A08%3A20.5266559Z'" + - W/"datetime'2022-03-15T10%3A41%3A55.9241501Z'" expires: - '-1' pragma: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd520002-7b11-4354-b2d3-321f6d0641e5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/76c10ea8-57ca-48f7-9d94-9ec031c723e3?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bd520002-7b11-4354-b2d3-321f6d0641e5","name":"bd520002-7b11-4354-b2d3-321f6d0641e5","status":"Succeeded","startTime":"2022-01-06T15:08:20.5273941Z","endTime":"2022-01-06T15:08:20.5623596Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/76c10ea8-57ca-48f7-9d94-9ec031c723e3","name":"76c10ea8-57ca-48f7-9d94-9ec031c723e3","status":"Succeeded","startTime":"2022-03-15T10:41:55.9230355Z","endTime":"2022-03-15T10:41:56.0011455Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:08:52 GMT + - Tue, 15 Mar 2022 10:42:27 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T15%3A08%3A20.5544498Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-06T15:08:15.6107151Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T15:08:19.7198321Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T15:08:19.7198321Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A41%3A56.0045161Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:41:49.8341685Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:41:55.1394948Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:41:55.1394948Z"}}' headers: cache-control: - no-cache content-length: - - '1164' + - '1185' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:08:52 GMT + - Tue, 15 Mar 2022 10:42:27 GMT etag: - - W/"datetime'2022-01-06T15%3A08%3A20.5544498Z'" + - W/"datetime'2022-03-15T10%3A41%3A56.0045161Z'" expires: - '-1' pragma: @@ -169,15 +169,15 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T15%3A08%3A59.7281573Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-06T15:08:53.0355093Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T15:08:58.9490403Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T15:08:58.9490403Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A42%3A35.3910518Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:42:28.8099516Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:42:34.5801897Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:42:34.5801897Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/07d9c627-77b9-441a-8a81-8d2c7f2a3d57?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bdb52bf-e6d3-4d47-8073-0ffe0c1a5728?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -185,9 +185,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:09:00 GMT + - Tue, 15 Mar 2022 10:42:36 GMT etag: - - W/"datetime'2022-01-06T15%3A08%3A59.7281573Z'" + - W/"datetime'2022-03-15T10%3A42%3A35.3910518Z'" expires: - '-1' pragma: @@ -219,12 +219,12 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/07d9c627-77b9-441a-8a81-8d2c7f2a3d57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bdb52bf-e6d3-4d47-8073-0ffe0c1a5728?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/07d9c627-77b9-441a-8a81-8d2c7f2a3d57","name":"07d9c627-77b9-441a-8a81-8d2c7f2a3d57","status":"Succeeded","startTime":"2022-01-06T15:08:59.7319664Z","endTime":"2022-01-06T15:08:59.7676504Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bdb52bf-e6d3-4d47-8073-0ffe0c1a5728","name":"0bdb52bf-e6d3-4d47-8073-0ffe0c1a5728","status":"Succeeded","startTime":"2022-03-15T10:42:35.3865154Z","endTime":"2022-03-15T10:42:35.4335237Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' headers: cache-control: - no-cache @@ -233,7 +233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:09:30 GMT + - Tue, 15 Mar 2022 10:43:06 GMT expires: - '-1' pragma: @@ -242,10 +242,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -267,23 +263,23 @@ interactions: ParameterSetName: - -g -a -l --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T15%3A08%3A59.7593791Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-06T15:08:53.0355093Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T15:08:58.9490403Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T15:08:58.9490403Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A42%3A35.4377081Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:42:28.8099516Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:42:34.5801897Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:42:34.5801897Z"}}' headers: cache-control: - no-cache content-length: - - '1164' + - '1185' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:09:30 GMT + - Tue, 15 Mar 2022 10:43:06 GMT etag: - - W/"datetime'2022-01-06T15%3A08%3A59.7593791Z'" + - W/"datetime'2022-03-15T10%3A42%3A35.4377081Z'" expires: - '-1' pragma: @@ -292,10 +288,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -317,21 +309,21 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T15%3A08%3A20.5544498Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-06T15:08:15.6107151Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T15:08:19.7198321Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T15:08:19.7198321Z","lastModifiedByType":"Application"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-06T15%3A08%3A59.7593791Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-06T15:08:53.0355093Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-06T15:08:58.9490403Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-06T15:08:58.9490403Z","lastModifiedByType":"Application"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003","name":"cli-acc-000003","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A42%3A35.4377081Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:42:28.8099516Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:42:34.5801897Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:42:34.5801897Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A41%3A56.0045161Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:41:49.8341685Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:41:55.1394948Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:41:55.1394948Z"}}]}' headers: cache-control: - no-cache content-length: - - '2341' + - '2383' content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:09:32 GMT + - Tue, 15 Mar 2022 10:43:08 GMT expires: - '-1' pragma: @@ -367,25 +359,25 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d3a9e4a-cacc-443d-b719-0e21d6295fe0?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/505140d0-34cb-4af2-b71c-4ecbdd0caf65?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 06 Jan 2022 15:09:35 GMT + - Tue, 15 Mar 2022 10:43:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d3a9e4a-cacc-443d-b719-0e21d6295fe0?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/505140d0-34cb-4af2-b71c-4ecbdd0caf65?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -415,12 +407,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d3a9e4a-cacc-443d-b719-0e21d6295fe0?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/505140d0-34cb-4af2-b71c-4ecbdd0caf65?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d3a9e4a-cacc-443d-b719-0e21d6295fe0","name":"0d3a9e4a-cacc-443d-b719-0e21d6295fe0","status":"Succeeded","startTime":"2022-01-06T15:09:35.5438745Z","endTime":"2022-01-06T15:09:35.6039184Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/505140d0-34cb-4af2-b71c-4ecbdd0caf65","name":"505140d0-34cb-4af2-b71c-4ecbdd0caf65","status":"Succeeded","startTime":"2022-03-15T10:43:12.6761021Z","endTime":"2022-03-15T10:43:12.7073976Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache @@ -429,7 +421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:10:05 GMT + - Tue, 15 Mar 2022 10:43:42 GMT expires: - '-1' pragma: @@ -438,10 +430,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -465,25 +453,25 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c00f3d1-e053-4d2e-a100-0f5d03b4a4fa?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1d6b208-8d54-4bd9-9ba9-efab9816f0f4?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 06 Jan 2022 15:10:09 GMT + - Tue, 15 Mar 2022 10:43:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c00f3d1-e053-4d2e-a100-0f5d03b4a4fa?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1d6b208-8d54-4bd9-9ba9-efab9816f0f4?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -493,7 +481,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -513,12 +501,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c00f3d1-e053-4d2e-a100-0f5d03b4a4fa?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1d6b208-8d54-4bd9-9ba9-efab9816f0f4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3c00f3d1-e053-4d2e-a100-0f5d03b4a4fa","name":"3c00f3d1-e053-4d2e-a100-0f5d03b4a4fa","status":"Succeeded","startTime":"2022-01-06T15:10:09.6582055Z","endTime":"2022-01-06T15:10:09.7082091Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f1d6b208-8d54-4bd9-9ba9-efab9816f0f4","name":"f1d6b208-8d54-4bd9-9ba9-efab9816f0f4","status":"Succeeded","startTime":"2022-03-15T10:43:44.7856196Z","endTime":"2022-03-15T10:43:44.8168454Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' headers: cache-control: - no-cache @@ -527,7 +515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:10:39 GMT + - Tue, 15 Mar 2022 10:44:15 GMT expires: - '-1' pragma: @@ -536,10 +524,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -561,9 +545,9 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts?api-version=2021-10-01 response: body: string: '{"value":[]}' @@ -575,7 +559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 06 Jan 2022 15:10:40 GMT + - Tue, 15 Mar 2022 10:44:14 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 df99c372a7b..259f0109d34 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"31bd5d34-7c77-4fd9-bad3-2ad4a204320f\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"934ae799-1172-48f1-b660-c0389de3593f\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"5b115c83-5705-4a71-9502-cc6499e7f217\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:04:44.2402931Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"640101ce-6683-4d99-a9d6-c8c82eb43a51\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/71094695-1285-4331-9c7b-5c586d1bf5f9?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/123dcc88-8200-4853-a355-921c6a73f482?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '781' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:37:39 GMT + - Wed, 16 Mar 2022 09:04:51 GMT expires: - '-1' pragma: @@ -57,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e297d77-510b-4e96-bcfa-2915aebd29b9 + - 51b2fb7a-e0e5-4cef-92d2-f36ef9f61c8d x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/71094695-1285-4331-9c7b-5c586d1bf5f9?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/123dcc88-8200-4853-a355-921c6a73f482?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:37:42 GMT + - Wed, 16 Mar 2022 09:04:54 GMT expires: - '-1' pragma: @@ -101,14 +102,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4adeb10-714a-4c98-9569-5559b7979ee4 + - 36391047-60f7-425b-8407-b07bc587ea7d status: code: 200 message: OK @@ -126,16 +123,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c284db9b-704d-4f3f-bdd7-8c0e0870d56e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"934ae799-1172-48f1-b660-c0389de3593f\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"26d85b60-56a2-4a58-a044-ee517db58652\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:04:44.2402931Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"640101ce-6683-4d99-a9d6-c8c82eb43a51\",\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\": @@ -144,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:37:43 GMT + - Wed, 16 Mar 2022 09:04:54 GMT etag: - - W/"c284db9b-704d-4f3f-bdd7-8c0e0870d56e" + - W/"26d85b60-56a2-4a58-a044-ee517db58652" expires: - '-1' pragma: @@ -160,14 +158,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1936b110-e96f-450f-b58d-09fc9917aaf9 + - a5eb7799-8a94-438d-b0a3-3711c9bda079 status: code: 200 message: OK @@ -185,16 +179,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c284db9b-704d-4f3f-bdd7-8c0e0870d56e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"934ae799-1172-48f1-b660-c0389de3593f\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"26d85b60-56a2-4a58-a044-ee517db58652\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:04:44.2402931Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"640101ce-6683-4d99-a9d6-c8c82eb43a51\",\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\": @@ -203,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:37:44 GMT + - Wed, 16 Mar 2022 09:04:56 GMT etag: - - W/"c284db9b-704d-4f3f-bdd7-8c0e0870d56e" + - W/"26d85b60-56a2-4a58-a044-ee517db58652" expires: - '-1' pragma: @@ -219,25 +214,21 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba8ae4fb-0f9c-4a94-9e0a-3edbce3a5774 + - 336f6328-fe5e-46e5-8847-bbc8638a743f 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": "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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-16T09:04:44.2402931Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +239,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '691' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"a1b427af-085f-4762-bbd6-7e7d8c5e9def\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"934ae799-1172-48f1-b660-c0389de3593f\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"47a4789e-ed6d-48b8-bc33-72e4d0de7af1\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:04:44.2402931Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"640101ce-6683-4d99-a9d6-c8c82eb43a51\",\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/\\\"a1b427af-085f-4762-bbd6-7e7d8c5e9def\\\"\",\r\n + \ \"etag\": \"W/\\\"47a4789e-ed6d-48b8-bc33-72e4d0de7af1\\\"\",\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/\\\"a1b427af-085f-4762-bbd6-7e7d8c5e9def\\\"\",\r\n + \ \"etag\": \"W/\\\"47a4789e-ed6d-48b8-bc33-72e4d0de7af1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +280,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4607f880-1887-4f03-b1ec-d2e83acc7feb?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9a84c187-b461-4209-8d9d-b90040e0deb3?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2252' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:37:45 GMT + - Wed, 16 Mar 2022 09:04:58 GMT expires: - '-1' pragma: @@ -306,14 +298,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 780423c4-d994-454f-9da8-9bb29d0792b2 + - 190f8276-28de-4ec4-854a-c2509a4faba6 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -333,9 +321,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4607f880-1887-4f03-b1ec-d2e83acc7feb?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9a84c187-b461-4209-8d9d-b90040e0deb3?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:37:49 GMT + - Wed, 16 Mar 2022 09:05:01 GMT expires: - '-1' pragma: @@ -357,14 +345,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c0e67895-452c-4a01-8d1b-3e57ee1e751f + - 00cdd6aa-7e23-4aee-a1c0-4b96e978a21f status: code: 200 message: OK @@ -382,26 +366,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c593fbc5-1f9e-4ab9-a837-25eb61cefa56\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"934ae799-1172-48f1-b660-c0389de3593f\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"5d019646-d8c1-44dc-9485-c68f19aef989\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:04:44.2402931Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"640101ce-6683-4d99-a9d6-c8c82eb43a51\",\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/\\\"c593fbc5-1f9e-4ab9-a837-25eb61cefa56\\\"\",\r\n + \ \"etag\": \"W/\\\"5d019646-d8c1-44dc-9485-c68f19aef989\\\"\",\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/\\\"c593fbc5-1f9e-4ab9-a837-25eb61cefa56\\\"\",\r\n + \ \"etag\": \"W/\\\"5d019646-d8c1-44dc-9485-c68f19aef989\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +401,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2254' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:37:49 GMT + - Wed, 16 Mar 2022 09:05:01 GMT etag: - - W/"c593fbc5-1f9e-4ab9-a837-25eb61cefa56" + - W/"5d019646-d8c1-44dc-9485-c68f19aef989" expires: - '-1' pragma: @@ -432,14 +417,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b09ebb1a-714b-44d0-b418-d7164c955b87 + - 00511cb0-db71-4449-9cd7-1b0d749f0fc2 status: code: 200 message: OK @@ -455,31 +436,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A37%3A53.2366074Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A05%3A12.0629255Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:05:06.9351171Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ecf8965-5c7e-437a-ad4b-bf6d2f8d7ab0?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fdebde5f-6ca2-4434-b108-4ef443ee8705?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '413' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:37:54 GMT + - Wed, 16 Mar 2022 09:05:13 GMT etag: - - W/"datetime'2021-10-19T14%3A37%3A53.2366074Z'" + - W/"datetime'2022-03-16T09%3A05%3A12.0629255Z'" expires: - '-1' pragma: @@ -511,21 +492,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ecf8965-5c7e-437a-ad4b-bf6d2f8d7ab0?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fdebde5f-6ca2-4434-b108-4ef443ee8705?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ecf8965-5c7e-437a-ad4b-bf6d2f8d7ab0","name":"0ecf8965-5c7e-437a-ad4b-bf6d2f8d7ab0","status":"Succeeded","startTime":"2021-10-19T14:37:53.2397863Z","endTime":"2021-10-19T14:37:53.3318773Z","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/fdebde5f-6ca2-4434-b108-4ef443ee8705","name":"fdebde5f-6ca2-4434-b108-4ef443ee8705","status":"Succeeded","startTime":"2022-03-16T09:05:12.0673067Z","endTime":"2022-03-16T09:05:12.1022926Z","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: cache-control: - no-cache content-length: - - '588' + - '525' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:38:24 GMT + - Wed, 16 Mar 2022 09:05:43 GMT expires: - '-1' pragma: @@ -534,10 +515,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -559,23 +536,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A37%3A53.3272503Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"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''2022-03-16T09%3A05%3A12.093479Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:05:06.9351171Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:38:24 GMT + - Wed, 16 Mar 2022 09:05:44 GMT etag: - - W/"datetime'2021-10-19T14%3A37%3A53.3272503Z'" + - W/"datetime'2022-03-16T09%3A05%3A12.093479Z'" expires: - '-1' pragma: @@ -584,10 +561,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -596,8 +569,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +581,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A38%3A31.309677Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A05%3A50.5905003Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:05:46.0750608Z"},"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/southcentralusstage/operationResults/069c9438-ffee-4565-8bb1-ae0daa523d5e?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28e94140-5dd6-4211-b2f6-0d789189ab57?api-version=2021-10-01 cache-control: - no-cache content-length: - - '610' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:38:31 GMT + - Wed, 16 Mar 2022 09:05:51 GMT etag: - - W/"datetime'2021-10-19T14%3A38%3A31.309677Z'" + - W/"datetime'2022-03-16T09%3A05%3A50.5905003Z'" expires: - '-1' pragma: @@ -644,7 +617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -664,21 +637,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/069c9438-ffee-4565-8bb1-ae0daa523d5e?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28e94140-5dd6-4211-b2f6-0d789189ab57?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/069c9438-ffee-4565-8bb1-ae0daa523d5e","name":"069c9438-ffee-4565-8bb1-ae0daa523d5e","status":"Succeeded","startTime":"2021-10-19T14:38:31.3127705Z","endTime":"2021-10-19T14:38:31.6508733Z","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/28e94140-5dd6-4211-b2f6-0d789189ab57","name":"28e94140-5dd6-4211-b2f6-0d789189ab57","status":"Succeeded","startTime":"2022-03-16T09:05:50.5961726Z","endTime":"2022-03-16T09:05:50.7982989Z","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: cache-control: - no-cache content-length: - - '627' + - '555' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:39:02 GMT + - Wed, 16 Mar 2022 09:06:21 GMT expires: - '-1' pragma: @@ -712,23 +685,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A38%3A31.6402253Z''\"","location":"southcentralusstage","properties":{"poolId":"f8bfe1d7-642b-6687-fe2e-35c3c7de4791","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-16T09%3A05%3A50.7874807Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:05:46.0750608Z"},"properties":{"poolId":"9a879048-2ba2-3e6b-99a1-629f5f1405d4","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '691' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:39:02 GMT + - Wed, 16 Mar 2022 09:06:21 GMT etag: - - W/"datetime'2021-10-19T14%3A38%3A31.6402253Z'" + - W/"datetime'2022-03-16T09%3A05%3A50.7874807Z'" expires: - '-1' pragma: @@ -750,7 +723,8 @@ interactions: message: OK - request: 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"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +735,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '337' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A39%3A11.4824048Z''\"","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"}}' + 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''2022-03-16T09%3A06%3A28.1562703Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:06:24.0629418Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:39:12 GMT + - Wed, 16 Mar 2022 09:06:28 GMT etag: - - W/"datetime'2021-10-19T14%3A39%3A11.4824048Z'" + - W/"datetime'2022-03-16T09%3A06%3A28.1562703Z'" expires: - '-1' pragma: @@ -797,7 +771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -817,21 +791,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Creating","startTime":"2021-10-19T14:39:11.4882771Z","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/c4c11591-e2d2-404f-8a68-3a823fbf7753","name":"c4c11591-e2d2-404f-8a68-3a823fbf7753","status":"Creating","startTime":"2022-03-16T09:06:28.1609263Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:39:42 GMT + - Wed, 16 Mar 2022 09:06:59 GMT expires: - '-1' pragma: @@ -865,21 +839,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Creating","startTime":"2021-10-19T14:39:11.4882771Z","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/c4c11591-e2d2-404f-8a68-3a823fbf7753","name":"c4c11591-e2d2-404f-8a68-3a823fbf7753","status":"Creating","startTime":"2022-03-16T09:06:28.1609263Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:40:12 GMT + - Wed, 16 Mar 2022 09:07:29 GMT expires: - '-1' pragma: @@ -913,21 +887,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Creating","startTime":"2021-10-19T14:39:11.4882771Z","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/c4c11591-e2d2-404f-8a68-3a823fbf7753","name":"c4c11591-e2d2-404f-8a68-3a823fbf7753","status":"Creating","startTime":"2022-03-16T09:06:28.1609263Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:40:42 GMT + - Wed, 16 Mar 2022 09:07:59 GMT expires: - '-1' pragma: @@ -961,21 +935,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Creating","startTime":"2021-10-19T14:39:11.4882771Z","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/c4c11591-e2d2-404f-8a68-3a823fbf7753","name":"c4c11591-e2d2-404f-8a68-3a823fbf7753","status":"Creating","startTime":"2022-03-16T09:06:28.1609263Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:41:13 GMT + - Wed, 16 Mar 2022 09:08:29 GMT expires: - '-1' pragma: @@ -1009,21 +983,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Creating","startTime":"2021-10-19T14:39:11.4882771Z","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/c4c11591-e2d2-404f-8a68-3a823fbf7753","name":"c4c11591-e2d2-404f-8a68-3a823fbf7753","status":"Creating","startTime":"2022-03-16T09:06:28.1609263Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:41:43 GMT + - Wed, 16 Mar 2022 09:08:59 GMT expires: - '-1' pragma: @@ -1057,21 +1031,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Creating","startTime":"2021-10-19T14:39:11.4882771Z","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/c4c11591-e2d2-404f-8a68-3a823fbf7753","name":"c4c11591-e2d2-404f-8a68-3a823fbf7753","status":"Creating","startTime":"2022-03-16T09:06:28.1609263Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:42:13 GMT + - Wed, 16 Mar 2022 09:09:30 GMT expires: - '-1' pragma: @@ -1105,21 +1079,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Creating","startTime":"2021-10-19T14:39:11.4882771Z","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/c4c11591-e2d2-404f-8a68-3a823fbf7753","name":"c4c11591-e2d2-404f-8a68-3a823fbf7753","status":"Creating","startTime":"2022-03-16T09:06:28.1609263Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:42:44 GMT + - Wed, 16 Mar 2022 09:10:00 GMT expires: - '-1' pragma: @@ -1153,21 +1127,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c11591-e2d2-404f-8a68-3a823fbf7753?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Creating","startTime":"2021-10-19T14:39:11.4882771Z","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/c4c11591-e2d2-404f-8a68-3a823fbf7753","name":"c4c11591-e2d2-404f-8a68-3a823fbf7753","status":"Succeeded","startTime":"2022-03-16T09:06:28.1609263Z","endTime":"2022-03-16T09:10:19.4805835Z","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: - - '649' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:43:14 GMT + - Wed, 16 Mar 2022 09:10:31 GMT expires: - '-1' pragma: @@ -1201,71 +1175,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b?api-version=2021-08-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=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/54f77336-ab8f-40c7-b735-b600e434a98b","name":"54f77336-ab8f-40c7-b735-b600e434a98b","status":"Succeeded","startTime":"2021-10-19T14:39:11.4882771Z","endTime":"2021-10-19T14:43:17.3718426Z","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/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''2022-03-16T09%3A10%3A19.4724653Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:06:24.0629418Z"},"properties":{"fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_c7af086c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4dcb4719-1168-886f-6bc1-701605816697","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '660' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:43:44 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.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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=2021-08-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-10-19T14%3A43%3A17.3672408Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a6cfb44c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f7430348-79d6-b5ce-629c-e1945815fb0b","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '2147' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 14:43:45 GMT + - Wed, 16 Mar 2022 09:10:32 GMT etag: - - W/"datetime'2021-10-19T14%3A43%3A17.3672408Z'" + - W/"datetime'2022-03-16T09%3A10%3A19.4724653Z'" expires: - '-1' pragma: @@ -1299,21 +1225,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:43:46 GMT + - Wed, 16 Mar 2022 09:10:33 GMT expires: - '-1' pragma: @@ -1347,23 +1273,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A43%3A17.3672408Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a6cfb44c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f7430348-79d6-b5ce-629c-e1945815fb0b","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A10%3A19.4724653Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:06:24.0629418Z"},"properties":{"fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_c7af086c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4dcb4719-1168-886f-6bc1-701605816697","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:43:48 GMT + - Wed, 16 Mar 2022 09:10:33 GMT etag: - - W/"datetime'2021-10-19T14%3A43%3A17.3672408Z'" + - W/"datetime'2022-03-16T09%3A10%3A19.4724653Z'" expires: - '-1' pragma: @@ -1384,9 +1310,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:06:24.0629418Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "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: @@ -1398,35 +1324,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '427' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A43%3A51.2210749Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a6cfb44c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f7430348-79d6-b5ce-629c-e1945815fb0b","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A10%3A37.8765453Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:06:24.0629418Z"},"properties":{"provisioningState":"Patching","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_c7af086c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4dcb4719-1168-886f-6bc1-701605816697","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/111f399b-9a0e-445c-b68a-b03a4444ef1b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a07c2eb-2a55-47f9-8b62-cf2a37996061?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2146' + - '2070' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:43:51 GMT + - Wed, 16 Mar 2022 09:10:37 GMT etag: - - W/"datetime'2021-10-19T14%3A43%3A51.2210749Z'" + - W/"datetime'2022-03-16T09%3A10%3A37.8765453Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/111f399b-9a0e-445c-b68a-b03a4444ef1b?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a07c2eb-2a55-47f9-8b62-cf2a37996061?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1456,21 +1382,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/111f399b-9a0e-445c-b68a-b03a4444ef1b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6a07c2eb-2a55-47f9-8b62-cf2a37996061?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/111f399b-9a0e-445c-b68a-b03a4444ef1b","name":"111f399b-9a0e-445c-b68a-b03a4444ef1b","status":"Succeeded","startTime":"2021-10-19T14:43:51.2256964Z","endTime":"2021-10-19T14:43:57.1465197Z","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/6a07c2eb-2a55-47f9-8b62-cf2a37996061","name":"6a07c2eb-2a55-47f9-8b62-cf2a37996061","status":"Succeeded","startTime":"2022-03-16T09:10:37.8823621Z","endTime":"2022-03-16T09:10:40.8460023Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:44:20 GMT + - Wed, 16 Mar 2022 09:11:08 GMT expires: - '-1' pragma: @@ -1504,23 +1430,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A43%3A57.1382375Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"f7430348-79d6-b5ce-629c-e1945815fb0b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a6cfb44c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f7430348-79d6-b5ce-629c-e1945815fb0b","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A10%3A40.8365304Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:06:24.0629418Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"4dcb4719-1168-886f-6bc1-701605816697","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_c7af086c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4dcb4719-1168-886f-6bc1-701605816697","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:44:21 GMT + - Wed, 16 Mar 2022 09:11:08 GMT etag: - - W/"datetime'2021-10-19T14%3A43%3A57.1382375Z'" + - W/"datetime'2022-03-16T09%3A10%3A40.8365304Z'" expires: - '-1' pragma: @@ -1552,33 +1478,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7d9f928c-4e14-42ad-9f1d-450478e0c95a?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/963ad5bd-24f8-4a67-8a27-87691c2dda0d?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '457' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:44:22 GMT + - Wed, 16 Mar 2022 09:11:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7d9f928c-4e14-42ad-9f1d-450478e0c95a?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/963ad5bd-24f8-4a67-8a27-87691c2dda0d?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1608,21 +1534,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7d9f928c-4e14-42ad-9f1d-450478e0c95a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/963ad5bd-24f8-4a67-8a27-87691c2dda0d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7d9f928c-4e14-42ad-9f1d-450478e0c95a","name":"7d9f928c-4e14-42ad-9f1d-450478e0c95a","status":"Succeeded","startTime":"2021-10-19T14:44:23.6449967Z","endTime":"2021-10-19T14:44:26.4050803Z","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/963ad5bd-24f8-4a67-8a27-87691c2dda0d","name":"963ad5bd-24f8-4a67-8a27-87691c2dda0d","status":"Succeeded","startTime":"2022-03-16T09:11:09.5577419Z","endTime":"2022-03-16T09:11:09.8712799Z","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"}}' headers: cache-control: - no-cache content-length: - - '693' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:44:53 GMT + - Wed, 16 Mar 2022 09:11:39 GMT expires: - '-1' pragma: @@ -1656,21 +1582,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:44:26Z","backupId":"f120d78c-50b5-4940-5b0f-77bc8550df9e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:11:09Z","backupId":"9d75144b-0b9e-9caf-8171-ee01c76d0b44","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:44:54 GMT + - Wed, 16 Mar 2022 09:11:39 GMT expires: - '-1' pragma: @@ -1704,21 +1630,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:44:26Z","backupId":"f120d78c-50b5-4940-5b0f-77bc8550df9e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' + 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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:11:09Z","backupId":"9d75144b-0b9e-9caf-8171-ee01c76d0b44","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' headers: cache-control: - no-cache content-length: - - '804' + - '669' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:44:55 GMT + - Wed, 16 Mar 2022 09:11:40 GMT expires: - '-1' pragma: @@ -1727,10 +1653,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1752,21 +1674,65 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:44:26Z","backupId":"f120d78c-50b5-4940-5b0f-77bc8550df9e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:11:09Z","backupId":"9d75144b-0b9e-9caf-8171-ee01c76d0b44","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:44:57 GMT + - Wed, 16 Mar 2022 09:11:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume backup show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -b + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:11:09Z","backupId":"9d75144b-0b9e-9caf-8171-ee01c76d0b44","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' + headers: + cache-control: + - no-cache + content-length: + - '657' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 16 Mar 2022 09:12:43 GMT expires: - '-1' pragma: @@ -1775,10 +1741,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1800,21 +1762,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:44:26Z","backupId":"f120d78c-50b5-4940-5b0f-77bc8550df9e","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:11:09Z","backupId":"9d75144b-0b9e-9caf-8171-ee01c76d0b44","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:45:59 GMT + - Wed, 16 Mar 2022 09:13:44 GMT expires: - '-1' pragma: @@ -1848,21 +1810,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:44:32Z","backupId":"f120d78c-50b5-4940-5b0f-77bc8550df9e","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:11:12Z","backupId":"9d75144b-0b9e-9caf-8171-ee01c76d0b44","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:47:00 GMT + - Wed, 16 Mar 2022 09:14:46 GMT expires: - '-1' pragma: @@ -1894,33 +1856,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/62913686-99d4-42dd-a573-ccdc2d58c57d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/562c109b-3597-4a60-a0b7-32b311e86d62?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '457' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:47:02 GMT + - Wed, 16 Mar 2022 09:14:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/62913686-99d4-42dd-a573-ccdc2d58c57d?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/562c109b-3597-4a60-a0b7-32b311e86d62?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1950,21 +1912,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/62913686-99d4-42dd-a573-ccdc2d58c57d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/562c109b-3597-4a60-a0b7-32b311e86d62?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/62913686-99d4-42dd-a573-ccdc2d58c57d","name":"62913686-99d4-42dd-a573-ccdc2d58c57d","status":"Succeeded","startTime":"2021-10-19T14:47:02.6868524Z","endTime":"2021-10-19T14:47:03.1219981Z","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-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/562c109b-3597-4a60-a0b7-32b311e86d62","name":"562c109b-3597-4a60-a0b7-32b311e86d62","status":"Succeeded","startTime":"2022-03-16T09:14:48.0933741Z","endTime":"2022-03-16T09:14:49.0159098Z","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-000007"}}' headers: cache-control: - no-cache content-length: - - '693' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:47:33 GMT + - Wed, 16 Mar 2022 09:15:17 GMT expires: - '-1' pragma: @@ -1998,21 +1960,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:47:03Z","backupId":"4942562f-c322-e905-1d01-df8bd88f7a88","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:14:48Z","backupId":"88bec0d7-3bf2-2961-1460-06e252c22ab7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:47:33 GMT + - Wed, 16 Mar 2022 09:15:18 GMT expires: - '-1' pragma: @@ -2046,21 +2008,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:44:32Z","backupId":"f120d78c-50b5-4940-5b0f-77bc8550df9e","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}},{"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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:47:03Z","backupId":"4942562f-c322-e905-1d01-df8bd88f7a88","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' + 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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:11:12Z","backupId":"9d75144b-0b9e-9caf-8171-ee01c76d0b44","size":323584,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}},{"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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:14:48Z","backupId":"88bec0d7-3bf2-2961-1460-06e252c22ab7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}]}' headers: cache-control: - no-cache content-length: - - '1603' + - '1333' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:47:35 GMT + - Wed, 16 Mar 2022 09:15:19 GMT expires: - '-1' pragma: @@ -2094,21 +2056,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:47:03Z","backupId":"4942562f-c322-e905-1d01-df8bd88f7a88","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:14:48Z","backupId":"88bec0d7-3bf2-2961-1460-06e252c22ab7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:47:36 GMT + - Wed, 16 Mar 2022 09:15:20 GMT expires: - '-1' pragma: @@ -2142,21 +2104,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:47:03Z","backupId":"4942562f-c322-e905-1d01-df8bd88f7a88","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:14:48Z","backupId":"88bec0d7-3bf2-2961-1460-06e252c22ab7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:48:38 GMT + - Wed, 16 Mar 2022 09:16:22 GMT expires: - '-1' pragma: @@ -2165,10 +2127,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2190,21 +2148,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:47:03Z","backupId":"4942562f-c322-e905-1d01-df8bd88f7a88","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:14:48Z","backupId":"88bec0d7-3bf2-2961-1460-06e252c22ab7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:49:40 GMT + - Wed, 16 Mar 2022 09:17:22 GMT expires: - '-1' pragma: @@ -2238,21 +2196,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:47:03Z","backupId":"4942562f-c322-e905-1d01-df8bd88f7a88","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:14:48Z","backupId":"88bec0d7-3bf2-2961-1460-06e252c22ab7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:50:42 GMT + - Wed, 16 Mar 2022 09:18:23 GMT expires: - '-1' pragma: @@ -2286,21 +2244,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:47:03Z","backupId":"4942562f-c322-e905-1d01-df8bd88f7a88","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:14:48Z","backupId":"88bec0d7-3bf2-2961-1460-06e252c22ab7","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:51:44 GMT + - Wed, 16 Mar 2022 09:19:25 GMT expires: - '-1' pragma: @@ -2334,21 +2292,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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/cli-backup-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2021-10-19T14:47:07Z","backupId":"4942562f-c322-e905-1d01-df8bd88f7a88","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/backups/cli-backup-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-backup-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups","location":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:14:51Z","backupId":"88bec0d7-3bf2-2961-1460-06e252c22ab7","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:52:45 GMT + - Wed, 16 Mar 2022 09:20:28 GMT expires: - '-1' pragma: @@ -2382,21 +2340,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:52:46 GMT + - Wed, 16 Mar 2022 09:20:29 GMT expires: - '-1' pragma: @@ -2430,23 +2388,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A43%3A57.1382375Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"f7430348-79d6-b5ce-629c-e1945815fb0b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a6cfb44c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f7430348-79d6-b5ce-629c-e1945815fb0b","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A10%3A40.8365304Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:06:24.0629418Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"4dcb4719-1168-886f-6bc1-701605816697","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_c7af086c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4dcb4719-1168-886f-6bc1-701605816697","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:52:48 GMT + - Wed, 16 Mar 2022 09:20:30 GMT etag: - - W/"datetime'2021-10-19T14%3A43%3A57.1382375Z'" + - W/"datetime'2022-03-16T09%3A10%3A40.8365304Z'" expires: - '-1' pragma: @@ -2467,9 +2425,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:06:24.0629418Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": false}}}}' headers: Accept: @@ -2481,35 +2439,35 @@ interactions: Connection: - keep-alive Content-Length: - - '420' + - '428' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A52%3A55.7931095Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a6cfb44c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f7430348-79d6-b5ce-629c-e1945815fb0b","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A20%3A32.8222074Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:06:24.0629418Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_c7af086c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4dcb4719-1168-886f-6bc1-701605816697","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d33b6f8-65f7-4d39-ae7e-c7672eef877c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7886bf50-90d6-4b53-a973-7d3ed22a8958?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2458' + - '2331' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:52:55 GMT + - Wed, 16 Mar 2022 09:20:32 GMT etag: - - W/"datetime'2021-10-19T14%3A52%3A55.7931095Z'" + - W/"datetime'2022-03-16T09%3A20%3A32.8222074Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d33b6f8-65f7-4d39-ae7e-c7672eef877c?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7886bf50-90d6-4b53-a973-7d3ed22a8958?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2519,7 +2477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -2539,21 +2497,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d33b6f8-65f7-4d39-ae7e-c7672eef877c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7886bf50-90d6-4b53-a973-7d3ed22a8958?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0d33b6f8-65f7-4d39-ae7e-c7672eef877c","name":"0d33b6f8-65f7-4d39-ae7e-c7672eef877c","status":"Succeeded","startTime":"2021-10-19T14:52:55.8023835Z","endTime":"2021-10-19T14:53:05.915643Z","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/7886bf50-90d6-4b53-a973-7d3ed22a8958","name":"7886bf50-90d6-4b53-a973-7d3ed22a8958","status":"Succeeded","startTime":"2022-03-16T09:20:32.8277762Z","endTime":"2022-03-16T09:20:38.4702318Z","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: - - '659' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:53:25 GMT + - Wed, 16 Mar 2022 09:21:02 GMT expires: - '-1' pragma: @@ -2587,23 +2545,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T14%3A53%3A05.9091731Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"f7430348-79d6-b5ce-629c-e1945815fb0b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_a6cfb44c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f7430348-79d6-b5ce-629c-e1945815fb0b","fileSystemId":"f7430348-79d6-b5ce-629c-e1945815fb0b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A20%3A38.460452Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:06:24.0629418Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"4dcb4719-1168-886f-6bc1-701605816697","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_c7af086c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4dcb4719-1168-886f-6bc1-701605816697","fileSystemId":"4dcb4719-1168-886f-6bc1-701605816697","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2460' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 14:53:26 GMT + - Wed, 16 Mar 2022 09:21:02 GMT etag: - - W/"datetime'2021-10-19T14%3A53%3A05.9091731Z'" + - W/"datetime'2022-03-16T09%3A20%3A38.460452Z'" expires: - '-1' pragma: 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 9606a2ab98b..d67b33acd9f 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 @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A41%3A05.0969629Z''\"","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A31%3A56.8933983Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:31:53.8989937Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:31:56.2781015Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:31:56.2781015Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/478fa582-6654-4720-8e61-fd4cfdda42c0?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/d5eecf65-bcfc-40d6-b108-28fe328f0526?api-version=2021-10-01 cache-control: - no-cache content-length: - - '422' + - '702' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:41:05 GMT + - Tue, 15 Mar 2022 11:31:57 GMT etag: - - W/"datetime'2021-10-20T08%3A41%3A05.0969629Z'" + - W/"datetime'2022-03-15T11%3A31%3A56.8933983Z'" expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/478fa582-6654-4720-8e61-fd4cfdda42c0?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/d5eecf65-bcfc-40d6-b108-28fe328f0526?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/478fa582-6654-4720-8e61-fd4cfdda42c0","name":"478fa582-6654-4720-8e61-fd4cfdda42c0","status":"Succeeded","startTime":"2021-10-20T08:41:05.1035859Z","endTime":"2021-10-20T08:41:05.1385894Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/d5eecf65-bcfc-40d6-b108-28fe328f0526","name":"d5eecf65-bcfc-40d6-b108-28fe328f0526","status":"Succeeded","startTime":"2022-03-15T11:31:56.896774Z","endTime":"2022-03-15T11:31:56.933825Z","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' + - '534' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:41:36 GMT + - Tue, 15 Mar 2022 11:32:27 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A41%3A05.1322584Z''\"","location":"eastus2euap","properties":{"activeDirectories":[{"activeDirectoryId":"07f0c290-65d4-f42b-f996-3adf389c0b0e","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.12.3.4","status":"Created","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A31%3A56.9311964Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:31:53.8989937Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"ce84edd3-4475-9dc9-1818-763d9c54b8cc","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.34.0.4","status":"InUse","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","kdcIP":"10.34.0.4","adName":"ANFReg.netapp.com","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:31:56.2781015Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:31:56.2781015Z"}}' headers: cache-control: - no-cache content-length: - - '852' + - '1200' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:41:36 GMT + - Tue, 15 Mar 2022 11:32:28 GMT etag: - - W/"datetime'2021-10-20T08%3A41%3A05.1322584Z'" + - W/"datetime'2022-03-15T11%3A31%3A56.9311964Z'" expires: - '-1' pragma: @@ -170,25 +170,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A41%3A43.9183502Z''\"","location":"eastus2euap","properties":{"enabled":true,"dailyBackupsToKeep":1,"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A32%3A32.9240311Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:29.6470192Z"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:32.295776Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:32.295776Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/839028c3-5398-43f4-a18c-1af14f0ccbeb?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4ee980bb-cb30-461d-b72d-9b946e644b60?api-version=2021-10-01 cache-control: - no-cache content-length: - - '524' + - '788' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:41:44 GMT + - Tue, 15 Mar 2022 11:32:34 GMT etag: - - W/"datetime'2021-10-20T08%3A41%3A43.9183502Z'" + - W/"datetime'2022-03-15T11%3A32%3A32.9240311Z'" expires: - '-1' pragma: @@ -200,7 +200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -220,21 +220,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/839028c3-5398-43f4-a18c-1af14f0ccbeb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4ee980bb-cb30-461d-b72d-9b946e644b60?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/839028c3-5398-43f4-a18c-1af14f0ccbeb","name":"839028c3-5398-43f4-a18c-1af14f0ccbeb","status":"Succeeded","startTime":"2021-10-20T08:41:43.922846Z","endTime":"2021-10-20T08:41:44.2213262Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/4ee980bb-cb30-461d-b72d-9b946e644b60","name":"4ee980bb-cb30-461d-b72d-9b946e644b60","status":"Succeeded","startTime":"2022-03-15T11:32:32.9284532Z","endTime":"2022-03-15T11:32:33.1159552Z","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: - - '611' + - '561' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:42:14 GMT + - Tue, 15 Mar 2022 11:33:04 GMT expires: - '-1' pragma: @@ -268,23 +268,23 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A41%3A44.2168505Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"8bac127e-3181-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A32%3A33.1173349Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:29.6470192Z"},"properties":{"enabled":true,"backupPolicyId":"9afb590d-a453-11ec-a45c-263999ef5744","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:32.295776Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:32.295776Z"}}' headers: cache-control: - no-cache content-length: - - '630' + - '914' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:42:15 GMT + - Tue, 15 Mar 2022 11:33:04 GMT etag: - - W/"datetime'2021-10-20T08%3A41%3A44.2168505Z'" + - W/"datetime'2022-03-15T11%3A32%3A33.1173349Z'" expires: - '-1' pragma: @@ -323,25 +323,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A42%3A24.5328686Z''\"","location":"eastus2euap","properties":{"enabled":true,"dailyBackupsToKeep":1,"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A33%3A12.8143378Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:33:06.6414285Z"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:33:12.2607783Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:12.2607783Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/215375ec-68d9-4720-9dfb-7828ae0c2053?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d896a57-2a3b-4dce-a27b-264d04e6f463?api-version=2021-10-01 cache-control: - no-cache content-length: - - '524' + - '790' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:42:25 GMT + - Tue, 15 Mar 2022 11:33:14 GMT etag: - - W/"datetime'2021-10-20T08%3A42%3A24.5328686Z'" + - W/"datetime'2022-03-15T11%3A33%3A12.8143378Z'" expires: - '-1' pragma: @@ -373,21 +373,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/215375ec-68d9-4720-9dfb-7828ae0c2053?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d896a57-2a3b-4dce-a27b-264d04e6f463?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/215375ec-68d9-4720-9dfb-7828ae0c2053","name":"215375ec-68d9-4720-9dfb-7828ae0c2053","status":"Succeeded","startTime":"2021-10-20T08:42:24.5368366Z","endTime":"2021-10-20T08:42:24.6118351Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d896a57-2a3b-4dce-a27b-264d04e6f463","name":"9d896a57-2a3b-4dce-a27b-264d04e6f463","status":"Succeeded","startTime":"2022-03-15T11:33:12.8119648Z","endTime":"2022-03-15T11:33:12.905677Z","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' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:42:55 GMT + - Tue, 15 Mar 2022 11:33:44 GMT expires: - '-1' pragma: @@ -421,23 +421,23 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A42%3A24.6063623Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"a3c02ba4-3181-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A33%3A12.9034097Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:33:06.6414285Z"},"properties":{"enabled":true,"backupPolicyId":"b2b2450c-a453-11ec-a45c-263999ef5744","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:33:12.2607783Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:12.2607783Z"}}' headers: cache-control: - no-cache content-length: - - '630' + - '916' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:42:55 GMT + - Tue, 15 Mar 2022 11:33:44 GMT etag: - - W/"datetime'2021-10-20T08%3A42%3A24.6063623Z'" + - W/"datetime'2022-03-15T11%3A33%3A12.9034097Z'" expires: - '-1' pragma: @@ -476,25 +476,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A43%3A03.1187883Z''\"","location":"eastus2euap","properties":{"enabled":true,"dailyBackupsToKeep":1,"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A33%3A51.7970183Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:33:46.4274059Z"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:33:51.221065Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:51.221065Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2b7bcf87-e457-4757-a8c3-f2c632144ff7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/71afab1e-0c1e-49fd-9016-d6802bceb0ba?api-version=2021-10-01 cache-control: - no-cache content-length: - - '524' + - '788' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:43:04 GMT + - Tue, 15 Mar 2022 11:33:52 GMT etag: - - W/"datetime'2021-10-20T08%3A43%3A03.1187883Z'" + - W/"datetime'2022-03-15T11%3A33%3A51.7970183Z'" expires: - '-1' pragma: @@ -506,7 +506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -526,21 +526,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2b7bcf87-e457-4757-a8c3-f2c632144ff7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/71afab1e-0c1e-49fd-9016-d6802bceb0ba?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2b7bcf87-e457-4757-a8c3-f2c632144ff7","name":"2b7bcf87-e457-4757-a8c3-f2c632144ff7","status":"Succeeded","startTime":"2021-10-20T08:43:03.1216768Z","endTime":"2021-10-20T08:43:03.2151937Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/71afab1e-0c1e-49fd-9016-d6802bceb0ba","name":"71afab1e-0c1e-49fd-9016-d6802bceb0ba","status":"Succeeded","startTime":"2022-03-15T11:33:51.8001258Z","endTime":"2022-03-15T11:33:51.8939483Z","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' + - '561' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:43:34 GMT + - Tue, 15 Mar 2022 11:34:23 GMT expires: - '-1' pragma: @@ -574,23 +574,23 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l --daily-backups --enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A43%3A03.2116162Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"bac2c8da-3181-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A33%3A51.8939516Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:33:46.4274059Z"},"properties":{"enabled":true,"backupPolicyId":"c9effaef-a453-11ec-9f49-02322dfd4404","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:33:51.221065Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:51.221065Z"}}' headers: cache-control: - no-cache content-length: - - '630' + - '914' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:43:34 GMT + - Tue, 15 Mar 2022 11:34:23 GMT etag: - - W/"datetime'2021-10-20T08%3A43%3A03.2116162Z'" + - W/"datetime'2022-03-15T11%3A33%3A51.8939516Z'" expires: - '-1' pragma: @@ -624,21 +624,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A41%3A44.2168505Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"8bac127e-3181-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":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-10-20T08%3A43%3A03.2116162Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"bac2c8da-3181-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":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-10-20T08%3A42%3A24.6063623Z''\"","location":"eastus2euap","properties":{"enabled":true,"backupPolicyId":"a3c02ba4-3181-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"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''2022-03-15T11%3A33%3A51.8939516Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:33:46.4274059Z"},"properties":{"enabled":true,"backupPolicyId":"c9effaef-a453-11ec-9f49-02322dfd4404","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:33:51.221065Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:51.221065Z"}},{"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''2022-03-15T11%3A32%3A33.1173349Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:29.6470192Z"},"properties":{"enabled":true,"backupPolicyId":"9afb590d-a453-11ec-a45c-263999ef5744","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:32.295776Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:32.295776Z"}},{"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''2022-03-15T11%3A33%3A12.9034097Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:33:06.6414285Z"},"properties":{"enabled":true,"backupPolicyId":"b2b2450c-a453-11ec-a45c-263999ef5744","dailyBackupsToKeep":1,"weeklyBackupsToKeep":0,"monthlyBackupsToKeep":0,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:33:12.2607783Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:12.2607783Z"}}]}' headers: cache-control: - no-cache content-length: - - '1904' + - '2758' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:43:36 GMT + - Tue, 15 Mar 2022 11:34:24 GMT expires: - '-1' pragma: @@ -674,25 +674,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9c0fdcd0-a4a8-4b21-8c72-4bbe7871a1a8?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/155e2a66-66f9-462a-860e-fd0581e2c23f?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 08:43:38 GMT + - Tue, 15 Mar 2022 11:34:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9c0fdcd0-a4a8-4b21-8c72-4bbe7871a1a8?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/155e2a66-66f9-462a-860e-fd0581e2c23f?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -702,7 +702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -722,21 +722,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9c0fdcd0-a4a8-4b21-8c72-4bbe7871a1a8?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/155e2a66-66f9-462a-860e-fd0581e2c23f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9c0fdcd0-a4a8-4b21-8c72-4bbe7871a1a8","name":"9c0fdcd0-a4a8-4b21-8c72-4bbe7871a1a8","status":"Succeeded","startTime":"2021-10-20T08:43:38.8636046Z","endTime":"2021-10-20T08:43:39.2518141Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/155e2a66-66f9-462a-860e-fd0581e2c23f","name":"155e2a66-66f9-462a-860e-fd0581e2c23f","status":"Succeeded","startTime":"2022-03-15T11:34:28.0220693Z","endTime":"2022-03-15T11:34:28.3220446Z","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' + - '561' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:44:08 GMT + - Tue, 15 Mar 2022 11:34:58 GMT expires: - '-1' pragma: @@ -772,25 +772,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2ffcbb77-50b8-470b-9faa-d210c71f56f9?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b73d61b1-c3c3-4d15-bbbb-a8a526204baf?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 08:44:12 GMT + - Tue, 15 Mar 2022 11:35:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2ffcbb77-50b8-470b-9faa-d210c71f56f9?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b73d61b1-c3c3-4d15-bbbb-a8a526204baf?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -820,21 +820,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2ffcbb77-50b8-470b-9faa-d210c71f56f9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b73d61b1-c3c3-4d15-bbbb-a8a526204baf?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2ffcbb77-50b8-470b-9faa-d210c71f56f9","name":"2ffcbb77-50b8-470b-9faa-d210c71f56f9","status":"Succeeded","startTime":"2021-10-20T08:44:11.9623502Z","endTime":"2021-10-20T08:44:12.3256077Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b73d61b1-c3c3-4d15-bbbb-a8a526204baf","name":"b73d61b1-c3c3-4d15-bbbb-a8a526204baf","status":"Succeeded","startTime":"2022-03-15T11:35:01.9162312Z","endTime":"2022-03-15T11:35:02.2121316Z","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' + - '561' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:44:42 GMT + - Tue, 15 Mar 2022 11:35:31 GMT expires: - '-1' pragma: @@ -843,10 +843,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -870,25 +866,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fe77538a-6a1c-4765-b915-2f345cef8048?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c1cd57df-6789-4e67-ab74-ef5db95cfccc?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 08:44:46 GMT + - Tue, 15 Mar 2022 11:35:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fe77538a-6a1c-4765-b915-2f345cef8048?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c1cd57df-6789-4e67-ab74-ef5db95cfccc?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -898,7 +894,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -918,21 +914,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fe77538a-6a1c-4765-b915-2f345cef8048?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c1cd57df-6789-4e67-ab74-ef5db95cfccc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fe77538a-6a1c-4765-b915-2f345cef8048","name":"fe77538a-6a1c-4765-b915-2f345cef8048","status":"Succeeded","startTime":"2021-10-20T08:44:46.088346Z","endTime":"2021-10-20T08:44:46.5602049Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c1cd57df-6789-4e67-ab74-ef5db95cfccc","name":"c1cd57df-6789-4e67-ab74-ef5db95cfccc","status":"Succeeded","startTime":"2022-03-15T11:35:35.9575985Z","endTime":"2022-03-15T11:35:36.2232007Z","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' + - '561' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:45:16 GMT + - Tue, 15 Mar 2022 11:36:06 GMT expires: - '-1' pragma: @@ -941,10 +937,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -966,9 +958,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-01 response: body: string: '{"value":[]}' @@ -980,7 +972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:45:17 GMT + - Tue, 15 Mar 2022 11:36:07 GMT expires: - '-1' pragma: @@ -989,10 +981,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 eeac4106cc0..b42acffc638 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_pools.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A45%3A23.6777167Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:45:17.9064582Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:45:22.9217274Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:45:22.9217274Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A06.3080526Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:00.6376437Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:05.5397342Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:05.5397342Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12feab43-bad2-4fb1-8674-befa68f5d32d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/73d920e4-d146-4232-8398-462c448f02b1?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:45:24 GMT + - Tue, 15 Mar 2022 10:56:08 GMT etag: - - W/"datetime'2022-01-07T08%3A45%3A23.6777167Z'" + - W/"datetime'2022-03-15T10%3A56%3A06.3080526Z'" expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12feab43-bad2-4fb1-8674-befa68f5d32d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/73d920e4-d146-4232-8398-462c448f02b1?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/12feab43-bad2-4fb1-8674-befa68f5d32d","name":"12feab43-bad2-4fb1-8674-befa68f5d32d","status":"Succeeded","startTime":"2022-01-07T08:45:23.677696Z","endTime":"2022-01-07T08:45:23.7276593Z","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/southcentralusstage/operationResults/73d920e4-d146-4232-8398-462c448f02b1","name":"73d920e4-d146-4232-8398-462c448f02b1","status":"Succeeded","startTime":"2022-03-15T10:56:06.3133619Z","endTime":"2022-03-15T10:56:06.329036Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:45:54 GMT + - Tue, 15 Mar 2022 10:56:38 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A45%3A23.7203012Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:45:17.9064582Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:45:22.9217274Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:45:22.9217274Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A06.334081Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:00.6376437Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:05.5397342Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:05.5397342Z"}}' headers: cache-control: - no-cache content-length: - - '1135' + - '1155' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:45:54 GMT + - Tue, 15 Mar 2022 10:56:38 GMT etag: - - W/"datetime'2022-01-07T08%3A45%3A23.7203012Z'" + - W/"datetime'2022-03-15T10%3A56%3A06.334081Z'" expires: - '-1' pragma: @@ -170,15 +170,15 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A46%3A00.0582052Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:45:56.0857519Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:45:59.0658881Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:45:59.0658881Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A44.1954364Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:56:39.1039696Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:43.2880215Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:43.2880215Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e7ae69c-c3d8-4f3c-9dda-f4333643eea7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bf6edddd-9021-49f7-9213-58a71c549912?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -186,9 +186,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:46:01 GMT + - Tue, 15 Mar 2022 10:56:44 GMT etag: - - W/"datetime'2022-01-07T08%3A46%3A00.0582052Z'" + - W/"datetime'2022-03-15T10%3A56%3A44.1954364Z'" expires: - '-1' pragma: @@ -220,21 +220,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e7ae69c-c3d8-4f3c-9dda-f4333643eea7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bf6edddd-9021-49f7-9213-58a71c549912?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e7ae69c-c3d8-4f3c-9dda-f4333643eea7","name":"5e7ae69c-c3d8-4f3c-9dda-f4333643eea7","status":"Succeeded","startTime":"2022-01-07T08:46:00.0645168Z","endTime":"2022-01-07T08:46:00.32452Z","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/southcentralusstage/operationResults/bf6edddd-9021-49f7-9213-58a71c549912","name":"bf6edddd-9021-49f7-9213-58a71c549912","status":"Succeeded","startTime":"2022-03-15T10:56:44.1878794Z","endTime":"2022-03-15T10:56:44.562883Z","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: cache-control: - no-cache content-length: - - '552' + - '553' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:46:31 GMT + - Tue, 15 Mar 2022 10:57:14 GMT expires: - '-1' pragma: @@ -268,23 +268,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A46%3A00.3147144Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:45:56.0857519Z"},"properties":{"poolId":"01bb1d89-b283-cf0f-acff-1c7116dc2659","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A56%3A44.5559554Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:56:39.1039696Z"},"properties":{"poolId":"3589778c-cc6f-ff44-087a-8deae3e48da0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '695' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:46:31 GMT + - Tue, 15 Mar 2022 10:57:15 GMT etag: - - W/"datetime'2022-01-07T08%3A46%3A00.3147144Z'" + - W/"datetime'2022-03-15T10%3A56%3A44.5559554Z'" expires: - '-1' pragma: @@ -323,25 +323,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A46%3A39.1376658Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:46:32.9184445Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:46:38.1512519Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:46:38.1512519Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A57%3A23.663327Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:57:17.2621082Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:57:22.6889445Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:57:22.6889445Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d64a730-0a9a-4d9f-8d40-ba3a8df25ca5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/76837990-5b3a-406a-a881-da04c68cca9d?api-version=2021-10-01 cache-control: - no-cache content-length: - - '858' + - '857' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:46:39 GMT + - Tue, 15 Mar 2022 10:57:24 GMT etag: - - W/"datetime'2022-01-07T08%3A46%3A39.1376658Z'" + - W/"datetime'2022-03-15T10%3A57%3A23.663327Z'" expires: - '-1' pragma: @@ -373,21 +373,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d64a730-0a9a-4d9f-8d40-ba3a8df25ca5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/76837990-5b3a-406a-a881-da04c68cca9d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d64a730-0a9a-4d9f-8d40-ba3a8df25ca5","name":"8d64a730-0a9a-4d9f-8d40-ba3a8df25ca5","status":"Succeeded","startTime":"2022-01-07T08:46:39.1464271Z","endTime":"2022-01-07T08:46:39.2814766Z","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/southcentralusstage/operationResults/76837990-5b3a-406a-a881-da04c68cca9d","name":"76837990-5b3a-406a-a881-da04c68cca9d","status":"Succeeded","startTime":"2022-03-15T10:57:23.669269Z","endTime":"2022-03-15T10:57:23.8099228Z","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: cache-control: - no-cache content-length: - - '554' + - '553' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:47:10 GMT + - Tue, 15 Mar 2022 10:57:54 GMT expires: - '-1' pragma: @@ -396,10 +396,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -421,23 +417,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A46%3A39.2707769Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:46:32.9184445Z"},"properties":{"poolId":"a87104ef-fe72-d665-e658-77bc09230025","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A57%3A23.8042408Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:57:17.2621082Z"},"properties":{"poolId":"611a87bc-2942-00d4-9264-a98a2da5b401","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '695' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:47:10 GMT + - Tue, 15 Mar 2022 10:57:55 GMT etag: - - W/"datetime'2022-01-07T08%3A46%3A39.2707769Z'" + - W/"datetime'2022-03-15T10%3A57%3A23.8042408Z'" expires: - '-1' pragma: @@ -446,10 +442,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -471,21 +463,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A46%3A00.3147144Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:45:56.0857519Z"},"properties":{"poolId":"01bb1d89-b283-cf0f-acff-1c7116dc2659","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A46%3A39.2707769Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:46:32.9184445Z"},"properties":{"poolId":"a87104ef-fe72-d665-e658-77bc09230025","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-15T10%3A56%3A44.5559554Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:56:39.1039696Z"},"properties":{"poolId":"3589778c-cc6f-ff44-087a-8deae3e48da0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004","name":"cli000002/cli000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-15T10%3A57%3A23.8042408Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:57:17.2621082Z"},"properties":{"poolId":"611a87bc-2942-00d4-9264-a98a2da5b401","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '1403' + - '1399' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:47:12 GMT + - Tue, 15 Mar 2022 10:57:56 GMT expires: - '-1' pragma: @@ -521,25 +513,25 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60f19f85-0807-4b21-9a6e-1a4d83617648?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b68bc89-0ff2-4894-9839-c682231de714?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 08:47:14 GMT + - Tue, 15 Mar 2022 10:58:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60f19f85-0807-4b21-9a6e-1a4d83617648?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b68bc89-0ff2-4894-9839-c682231de714?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -569,21 +561,21 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60f19f85-0807-4b21-9a6e-1a4d83617648?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b68bc89-0ff2-4894-9839-c682231de714?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60f19f85-0807-4b21-9a6e-1a4d83617648","name":"60f19f85-0807-4b21-9a6e-1a4d83617648","status":"Succeeded","startTime":"2022-01-07T08:47:14.3308887Z","endTime":"2022-01-07T08:47:16.1390243Z","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/southcentralusstage/operationResults/9b68bc89-0ff2-4894-9839-c682231de714","name":"9b68bc89-0ff2-4894-9839-c682231de714","status":"Succeeded","startTime":"2022-03-15T10:58:00.8080586Z","endTime":"2022-03-15T10:58:02.46438Z","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: cache-control: - no-cache content-length: - - '554' + - '552' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:47:44 GMT + - Tue, 15 Mar 2022 10:58:30 GMT expires: - '-1' pragma: @@ -592,10 +584,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -619,25 +607,25 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000004?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9af38b58-ccff-4e04-891d-b90ba73181dd?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/42bb0b70-86e1-449f-9e2b-23472b269f2a?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 08:47:47 GMT + - Tue, 15 Mar 2022 10:58:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9af38b58-ccff-4e04-891d-b90ba73181dd?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/42bb0b70-86e1-449f-9e2b-23472b269f2a?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -667,12 +655,12 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9af38b58-ccff-4e04-891d-b90ba73181dd?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/42bb0b70-86e1-449f-9e2b-23472b269f2a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9af38b58-ccff-4e04-891d-b90ba73181dd","name":"9af38b58-ccff-4e04-891d-b90ba73181dd","status":"Succeeded","startTime":"2022-01-07T08:47:47.4687641Z","endTime":"2022-01-07T08:47:49.1303424Z","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/southcentralusstage/operationResults/42bb0b70-86e1-449f-9e2b-23472b269f2a","name":"42bb0b70-86e1-449f-9e2b-23472b269f2a","status":"Succeeded","startTime":"2022-03-15T10:58:34.2897818Z","endTime":"2022-03-15T10:58:37.0398895Z","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: cache-control: - no-cache @@ -681,7 +669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:48:17 GMT + - Tue, 15 Mar 2022 10:59:04 GMT expires: - '-1' pragma: @@ -715,9 +703,9 @@ interactions: ParameterSetName: - --resource-group -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools?api-version=2021-10-01 response: body: string: '{"value":[]}' @@ -729,7 +717,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:48:18 GMT + - Tue, 15 Mar 2022 10:59:05 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 dabb6ad5c9e..4b383fab4b4 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 @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T08%3A59%3A37.2556017Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:59:33.3488744Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:59:36.5117431Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:59:36.5117431Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A20%3A29.6326243Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:20:24.3043500Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:20:28.7833502Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:20:28.7833502Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2308b8e1-8d4e-4d63-9bbb-6c8ea94e7e14?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fa0637ea-b6e2-4308-a5a5-0132ddbcfec0?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:59:38 GMT + - Tue, 15 Mar 2022 11:20:30 GMT etag: - - W/"datetime'2022-01-07T08%3A59%3A37.2556017Z'" + - W/"datetime'2022-03-15T11%3A20%3A29.6326243Z'" expires: - '-1' pragma: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2308b8e1-8d4e-4d63-9bbb-6c8ea94e7e14?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fa0637ea-b6e2-4308-a5a5-0132ddbcfec0?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2308b8e1-8d4e-4d63-9bbb-6c8ea94e7e14","name":"2308b8e1-8d4e-4d63-9bbb-6c8ea94e7e14","status":"Succeeded","startTime":"2022-01-07T08:59:37.2602993Z","endTime":"2022-01-07T08:59:37.306527Z","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/southcentralusstage/operationResults/fa0637ea-b6e2-4308-a5a5-0132ddbcfec0","name":"fa0637ea-b6e2-4308-a5a5-0132ddbcfec0","status":"Succeeded","startTime":"2022-03-15T11:20:29.6257853Z","endTime":"2022-03-15T11:20:29.672648Z","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: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:00:08 GMT + - Tue, 15 Mar 2022 11:21:00 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T08%3A59%3A37.3026987Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:59:33.3488744Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:59:36.5117431Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:59:36.5117431Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A20%3A29.676984Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:20:24.3043500Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:20:28.7833502Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:20:28.7833502Z"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1176' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:00:08 GMT + - Tue, 15 Mar 2022 11:21:01 GMT etag: - - W/"datetime'2022-01-07T08%3A59%3A37.3026987Z'" + - W/"datetime'2022-03-15T11%3A20%3A29.676984Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -171,15 +163,15 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A00%3A15.6008836Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:00:10.6432962Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:00:14.7552125Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:00:14.7552125Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A07.4471517Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:02.2705497Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:06.7364223Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:06.7364223Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/16d0277b-bac1-41b4-8580-a56a855b804e?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7807adfe-0ea4-456c-abee-563d93a8cf76?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -187,9 +179,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:00:16 GMT + - Tue, 15 Mar 2022 11:21:08 GMT etag: - - W/"datetime'2022-01-07T09%3A00%3A15.6008836Z'" + - W/"datetime'2022-03-15T11%3A21%3A07.4471517Z'" expires: - '-1' pragma: @@ -201,7 +193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -227,25 +219,25 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A00%3A21.958427Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:00:18.0351445Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:00:21.1795263Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:00:21.1795263Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A14.0613952Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:10.1001403Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:13.3149117Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:13.3149117Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/65fec0b7-3fe5-4ab3-b57a-a8f3e557f1f9?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ee665b6e-e962-4a07-a967-ec8bfb221c0c?api-version=2021-10-01 cache-control: - no-cache content-length: - - '892' + - '893' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:00:22 GMT + - Tue, 15 Mar 2022 11:21:15 GMT etag: - - W/"datetime'2022-01-07T09%3A00%3A21.958427Z'" + - W/"datetime'2022-03-15T11%3A21%3A14.0613952Z'" expires: - '-1' pragma: @@ -257,7 +249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -283,15 +275,15 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A00%3A25.0786442Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:00:23.8487925Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:00:24.9495368Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:00:24.9495368Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A20.1432722Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:15.8697516Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:19.4146741Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:19.4146741Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5c4deff8-0842-4d14-aad2-5f0aa588c9c1?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d37a7e0b-2920-49ad-8560-f4dc273d532a?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -299,9 +291,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:00:25 GMT + - Tue, 15 Mar 2022 11:21:21 GMT etag: - - W/"datetime'2022-01-07T09%3A00%3A25.0786442Z'" + - W/"datetime'2022-03-15T11%3A21%3A20.1432722Z'" expires: - '-1' pragma: @@ -313,7 +305,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -333,12 +325,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A00%3A15.6391728Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:00:10.6432962Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:00:14.7552125Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:00:14.7552125Z","lastModifiedByType":"Application"}},{"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''2022-01-07T09%3A00%3A22.0175883Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:00:18.0351445Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:00:21.1795263Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:00:21.1795263Z","lastModifiedByType":"Application"}},{"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''2022-01-07T09%3A00%3A25.1118499Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:00:23.8487925Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:00:24.9495368Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:00:24.9495368Z","lastModifiedByType":"Application"}}]}' + string: '{"value":[{"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''2022-03-15T11%3A21%3A14.0973046Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:10.1001403Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:13.3149117Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:13.3149117Z"}},{"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''2022-03-15T11%3A21%3A07.4861264Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:02.2705497Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:06.7364223Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:06.7364223Z"}},{"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''2022-03-15T11%3A21%3A20.1757918Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:21:15.8697516Z"},"properties":{"enabled":false,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:19.4146741Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:19.4146741Z"}}]}' headers: cache-control: - no-cache @@ -347,7 +339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:00:27 GMT + - Tue, 15 Mar 2022 11:21:22 GMT expires: - '-1' pragma: @@ -356,10 +348,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -383,25 +371,25 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61f3cdda-8088-4c3d-8710-984fd13149b9?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/20064f5b-345b-4de9-b78e-14803e9ef596?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 09:00:29 GMT + - Tue, 15 Mar 2022 11:21:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61f3cdda-8088-4c3d-8710-984fd13149b9?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/20064f5b-345b-4de9-b78e-14803e9ef596?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -431,21 +419,21 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61f3cdda-8088-4c3d-8710-984fd13149b9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/20064f5b-345b-4de9-b78e-14803e9ef596?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/61f3cdda-8088-4c3d-8710-984fd13149b9","name":"61f3cdda-8088-4c3d-8710-984fd13149b9","status":"Succeeded","startTime":"2022-01-07T09:00:30.3795789Z","endTime":"2022-01-07T09:00:30.4045994Z","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/southcentralusstage/operationResults/20064f5b-345b-4de9-b78e-14803e9ef596","name":"20064f5b-345b-4de9-b78e-14803e9ef596","status":"Succeeded","startTime":"2022-03-15T11:21:25.1548179Z","endTime":"2022-03-15T11:21:25.16652Z","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: cache-control: - no-cache content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:00:59 GMT + - Tue, 15 Mar 2022 11:21:55 GMT expires: - '-1' pragma: @@ -481,25 +469,25 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3549d4bf-1132-4770-9672-3445278af0bb?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/35830e5f-0dbf-4502-aa16-72f8cb520fbe?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 09:01:03 GMT + - Tue, 15 Mar 2022 11:21:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3549d4bf-1132-4770-9672-3445278af0bb?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/35830e5f-0dbf-4502-aa16-72f8cb520fbe?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -509,7 +497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -529,21 +517,21 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3549d4bf-1132-4770-9672-3445278af0bb?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/35830e5f-0dbf-4502-aa16-72f8cb520fbe?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3549d4bf-1132-4770-9672-3445278af0bb","name":"3549d4bf-1132-4770-9672-3445278af0bb","status":"Succeeded","startTime":"2022-01-07T09:01:04.023897Z","endTime":"2022-01-07T09:01:04.0638573Z","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/southcentralusstage/operationResults/35830e5f-0dbf-4502-aa16-72f8cb520fbe","name":"35830e5f-0dbf-4502-aa16-72f8cb520fbe","status":"Succeeded","startTime":"2022-03-15T11:21:58.1133629Z","endTime":"2022-03-15T11:21:58.1289569Z","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: cache-control: - no-cache content-length: - - '572' + - '573' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:01:33 GMT + - Tue, 15 Mar 2022 11:22:28 GMT expires: - '-1' pragma: @@ -552,10 +540,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -579,25 +563,25 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6235b05c-49d1-4ca0-8851-29117dd7749d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/513a671e-2fd3-4619-b413-707c2d21babc?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 09:01:36 GMT + - Tue, 15 Mar 2022 11:22:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6235b05c-49d1-4ca0-8851-29117dd7749d?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/513a671e-2fd3-4619-b413-707c2d21babc?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -627,21 +611,21 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6235b05c-49d1-4ca0-8851-29117dd7749d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/513a671e-2fd3-4619-b413-707c2d21babc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6235b05c-49d1-4ca0-8851-29117dd7749d","name":"6235b05c-49d1-4ca0-8851-29117dd7749d","status":"Succeeded","startTime":"2022-01-07T09:01:37.0324036Z","endTime":"2022-01-07T09:01:37.057406Z","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/southcentralusstage/operationResults/513a671e-2fd3-4619-b413-707c2d21babc","name":"513a671e-2fd3-4619-b413-707c2d21babc","status":"Succeeded","startTime":"2022-03-15T11:22:30.2184646Z","endTime":"2022-03-15T11:22:30.2497168Z","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: cache-control: - no-cache content-length: - - '572' + - '573' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:02:06 GMT + - Tue, 15 Mar 2022 11:23:00 GMT expires: - '-1' pragma: @@ -675,9 +659,9 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '{"value":[]}' @@ -689,7 +673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:02:08 GMT + - Tue, 15 Mar 2022 11:23:01 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 4ad0945a8ab..6dc832e205f 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_snapshots.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"2b0a949c-7694-44cc-a40c-ea6cc9fe509a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"825359eb-dd27-4db2-b94f-7ce6b6969892\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:34:52.9061315Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:53:25.3374007Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"286759df-a129-4851-bc8c-4c17ce57adec\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4fa8460a-629e-4c1f-8b27-4389c9bb55b5\",\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4677e9c4-6f9d-4921-b702-3c1da7fcee0f?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/c94b0538-bb17-4ecc-8f27-de93dc91182d?api-version=2021-05-01 cache-control: - no-cache content-length: - - '779' + - '773' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:34:55 GMT + - Tue, 15 Mar 2022 12:53:30 GMT expires: - '-1' pragma: @@ -58,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6bae1902-8871-4026-b400-38e58c74e6b2 + - 299c3c51-217f-4f5d-9b58-dc0fd071c080 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -78,58 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4677e9c4-6f9d-4921-b702-3c1da7fcee0f?api-version=2021-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 13:34:59 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: - - ddb8c1f3-d3d3-4231-8f1d-a7635676c0bf - 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.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4677e9c4-6f9d-4921-b702-3c1da7fcee0f?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/c94b0538-bb17-4ecc-8f27-de93dc91182d?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -141,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:09 GMT + - Tue, 15 Mar 2022 12:53:33 GMT expires: - '-1' pragma: @@ -151,14 +102,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9a6c59e3-cf0e-41b5-bb53-0eb38d88cbe8 + - ad0a8063-3232-439e-80c5-bae481c776cc status: code: 200 message: OK @@ -176,17 +123,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"3ea7185f-f2cf-40b0-9260-d9a0befff113\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b64220a2-f786-43c8-9daf-bed4a84580a2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:34:52.9061315Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:53:25.3374007Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"286759df-a129-4851-bc8c-4c17ce57adec\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4fa8460a-629e-4c1f-8b27-4389c9bb55b5\",\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\": @@ -195,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:09 GMT + - Tue, 15 Mar 2022 12:53:34 GMT etag: - - W/"3ea7185f-f2cf-40b0-9260-d9a0befff113" + - W/"b64220a2-f786-43c8-9daf-bed4a84580a2" expires: - '-1' pragma: @@ -211,14 +158,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 43a30b1d-8f56-4b6c-ad12-acfa56d90d02 + - 390ddffe-ba5c-4ee5-b7ba-a712aee362fb status: code: 200 message: OK @@ -236,17 +179,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"3ea7185f-f2cf-40b0-9260-d9a0befff113\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b64220a2-f786-43c8-9daf-bed4a84580a2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:34:52.9061315Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:53:25.3374007Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"286759df-a129-4851-bc8c-4c17ce57adec\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4fa8460a-629e-4c1f-8b27-4389c9bb55b5\",\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\": @@ -255,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:10 GMT + - Tue, 15 Mar 2022 12:53:34 GMT etag: - - W/"3ea7185f-f2cf-40b0-9260-d9a0befff113" + - W/"b64220a2-f786-43c8-9daf-bed4a84580a2" expires: - '-1' pragma: @@ -271,20 +214,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d3b2aa9c-d501-450f-ac9d-38464cb6327a + - 7b414ba4-90b4-40a7-89a1-ca0e57cc35cd status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T13:34:52.9061315Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T12:53:25.3374007Z"}, "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": @@ -301,33 +240,33 @@ interactions: Connection: - keep-alive Content-Length: - - '705' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"17e7c6d0-9833-498c-98f0-3464c2a23348\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"aeb8b593-eb5d-4c91-8600-60ba2aa43dfd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:34:52.9061315Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:53:25.3374007Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"286759df-a129-4851-bc8c-4c17ce57adec\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4fa8460a-629e-4c1f-8b27-4389c9bb55b5\",\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/\\\"17e7c6d0-9833-498c-98f0-3464c2a23348\\\"\",\r\n + \ \"etag\": \"W/\\\"aeb8b593-eb5d-4c91-8600-60ba2aa43dfd\\\"\",\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/\\\"17e7c6d0-9833-498c-98f0-3464c2a23348\\\"\",\r\n + \ \"etag\": \"W/\\\"aeb8b593-eb5d-4c91-8600-60ba2aa43dfd\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -342,15 +281,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3fce5f05-1ca9-4fc2-961f-11de7d56f7b9?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a0923aa2-de22-4be9-883c-3420382fa0a2?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2277' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:11 GMT + - Tue, 15 Mar 2022 12:53:36 GMT expires: - '-1' pragma: @@ -360,14 +299,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9c04626b-3fc3-43a6-a459-4babbe0ea7db + - ce94dd80-ec54-4f52-865d-88920f388703 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -387,9 +322,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3fce5f05-1ca9-4fc2-961f-11de7d56f7b9?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a0923aa2-de22-4be9-883c-3420382fa0a2?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -401,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:14 GMT + - Tue, 15 Mar 2022 12:53:39 GMT expires: - '-1' pragma: @@ -411,14 +346,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1760f6fc-2523-4165-9a7f-d39f3bb26b1f + - d04e12a1-1c71-4c51-96ff-5c4f78a04b0c status: code: 200 message: OK @@ -436,27 +367,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"a07a3199-4621-4c4a-98b2-18cff8463fbd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"620a1675-4db2-4134-aa2a-6b53047d9c4f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:34:52.9061315Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:53:25.3374007Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"286759df-a129-4851-bc8c-4c17ce57adec\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"4fa8460a-629e-4c1f-8b27-4389c9bb55b5\",\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/\\\"a07a3199-4621-4c4a-98b2-18cff8463fbd\\\"\",\r\n + \ \"etag\": \"W/\\\"620a1675-4db2-4134-aa2a-6b53047d9c4f\\\"\",\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/\\\"a07a3199-4621-4c4a-98b2-18cff8463fbd\\\"\",\r\n + \ \"etag\": \"W/\\\"620a1675-4db2-4134-aa2a-6b53047d9c4f\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -471,13 +402,13 @@ interactions: cache-control: - no-cache content-length: - - '2279' + - '2273' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:15 GMT + - Tue, 15 Mar 2022 12:53:39 GMT etag: - - W/"a07a3199-4621-4c4a-98b2-18cff8463fbd" + - W/"620a1675-4db2-4134-aa2a-6b53047d9c4f" expires: - '-1' pragma: @@ -487,14 +418,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73df5239-2c65-4ea6-b2d2-15dfac5231c9 + - 2ff7159a-27c2-4b61-9cf0-c2ce02a4bbf2 status: code: 200 message: OK @@ -510,31 +437,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A35%3A20.0587591Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:35:16.4750877Z"},"properties":{"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''2022-03-15T12%3A53%3A46.6025205Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:53:42.5187579Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb93382f-86b8-4b0b-b53f-dd883692357c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d6c6ebe0-7c7d-46a9-9b4e-94ac94f7994f?api-version=2021-10-01 cache-control: - no-cache content-length: - - '421' + - '415' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:20 GMT + - Tue, 15 Mar 2022 12:53:47 GMT etag: - - W/"datetime'2022-01-07T13%3A35%3A20.0587591Z'" + - W/"datetime'2022-03-15T12%3A53%3A46.6025205Z'" expires: - '-1' pragma: @@ -566,21 +493,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb93382f-86b8-4b0b-b53f-dd883692357c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d6c6ebe0-7c7d-46a9-9b4e-94ac94f7994f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fb93382f-86b8-4b0b-b53f-dd883692357c","name":"fb93382f-86b8-4b0b-b53f-dd883692357c","status":"Succeeded","startTime":"2022-01-07T13:35:20.0610175Z","endTime":"2022-01-07T13:35:20.1495188Z","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/southcentralusstage/operationResults/d6c6ebe0-7c7d-46a9-9b4e-94ac94f7994f","name":"d6c6ebe0-7c7d-46a9-9b4e-94ac94f7994f","status":"Succeeded","startTime":"2022-03-15T12:53:46.6081733Z","endTime":"2022-03-15T12:53:46.6531743Z","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: cache-control: - no-cache content-length: - - '533' + - '527' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:51 GMT + - Tue, 15 Mar 2022 12:54:18 GMT expires: - '-1' pragma: @@ -614,23 +541,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A35%3A20.1399825Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:35:16.4750877Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T12%3A53%3A46.6468962Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:53:42.5187579Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '468' + - '462' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:51 GMT + - Tue, 15 Mar 2022 12:54:18 GMT etag: - - W/"datetime'2022-01-07T13%3A35%3A20.1399825Z'" + - W/"datetime'2022-03-15T12%3A53%3A46.6468962Z'" expires: - '-1' pragma: @@ -663,31 +590,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A35%3A58.1679Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:35:53.3732514Z"},"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''2022-03-15T12%3A54%3A26.0037213Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:54:19.7976034Z"},"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/southcentralusstage/operationResults/51f0952a-7d11-45f8-866c-4296d444fc32?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8a9e5870-0e9d-448d-be48-1453442ea2cc?api-version=2021-10-01 cache-control: - no-cache content-length: - - '581' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:35:58 GMT + - Tue, 15 Mar 2022 12:54:26 GMT etag: - - W/"datetime'2022-01-07T13%3A35%3A58.1679Z'" + - W/"datetime'2022-03-15T12%3A54%3A26.0037213Z'" expires: - '-1' pragma: @@ -719,21 +646,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/51f0952a-7d11-45f8-866c-4296d444fc32?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8a9e5870-0e9d-448d-be48-1453442ea2cc?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/51f0952a-7d11-45f8-866c-4296d444fc32","name":"51f0952a-7d11-45f8-866c-4296d444fc32","status":"Succeeded","startTime":"2022-01-07T13:35:58.1724778Z","endTime":"2022-01-07T13:35:58.2833469Z","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/southcentralusstage/operationResults/8a9e5870-0e9d-448d-be48-1453442ea2cc","name":"8a9e5870-0e9d-448d-be48-1453442ea2cc","status":"Succeeded","startTime":"2022-03-15T12:54:26.0128224Z","endTime":"2022-03-15T12:54:26.4222102Z","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: cache-control: - no-cache content-length: - - '563' + - '557' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:36:28 GMT + - Tue, 15 Mar 2022 12:54:56 GMT expires: - '-1' pragma: @@ -767,23 +694,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A35%3A58.2742456Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:35:53.3732514Z"},"properties":{"poolId":"d7455967-0aaa-d6c3-f3aa-b00d6d387dfb","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T12%3A54%3A26.4143352Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:54:19.7976034Z"},"properties":{"poolId":"a1de13c5-5442-0ab2-8dbf-58430fd87d9d","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '699' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:36:29 GMT + - Tue, 15 Mar 2022 12:54:56 GMT etag: - - W/"datetime'2022-01-07T13%3A35%3A58.2742456Z'" + - W/"datetime'2022-03-15T12%3A54%3A26.4143352Z'" expires: - '-1' pragma: @@ -805,7 +732,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -816,31 +744,31 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '372' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A36%3A37.6306168Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:36:33.3061788Z"},"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''2022-03-15T12%3A55%3A06.3288537Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:55:01.6119700Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 cache-control: - no-cache content-length: - - '820' + - '877' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:36:38 GMT + - Tue, 15 Mar 2022 12:55:07 GMT etag: - - W/"datetime'2022-01-07T13%3A36%3A37.6306168Z'" + - W/"datetime'2022-03-15T12%3A55%3A06.3288537Z'" expires: - '-1' pragma: @@ -872,21 +800,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3","name":"4daf4d55-0c51-47c6-a88b-751a177c1dd3","status":"Creating","startTime":"2022-01-07T13:36:37.636683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53","name":"4292662a-a617-4b88-b6f2-7ef687d48f53","status":"Creating","startTime":"2022-03-15T12:55:06.3373896Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:37:08 GMT + - Tue, 15 Mar 2022 12:55:37 GMT expires: - '-1' pragma: @@ -920,21 +848,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3","name":"4daf4d55-0c51-47c6-a88b-751a177c1dd3","status":"Creating","startTime":"2022-01-07T13:36:37.636683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53","name":"4292662a-a617-4b88-b6f2-7ef687d48f53","status":"Creating","startTime":"2022-03-15T12:55:06.3373896Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:37:39 GMT + - Tue, 15 Mar 2022 12:56:08 GMT expires: - '-1' pragma: @@ -968,21 +896,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3","name":"4daf4d55-0c51-47c6-a88b-751a177c1dd3","status":"Creating","startTime":"2022-01-07T13:36:37.636683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53","name":"4292662a-a617-4b88-b6f2-7ef687d48f53","status":"Creating","startTime":"2022-03-15T12:55:06.3373896Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:38:09 GMT + - Tue, 15 Mar 2022 12:56:38 GMT expires: - '-1' pragma: @@ -1016,21 +944,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3","name":"4daf4d55-0c51-47c6-a88b-751a177c1dd3","status":"Creating","startTime":"2022-01-07T13:36:37.636683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53","name":"4292662a-a617-4b88-b6f2-7ef687d48f53","status":"Creating","startTime":"2022-03-15T12:55:06.3373896Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:38:39 GMT + - Tue, 15 Mar 2022 12:57:08 GMT expires: - '-1' pragma: @@ -1064,21 +992,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3","name":"4daf4d55-0c51-47c6-a88b-751a177c1dd3","status":"Creating","startTime":"2022-01-07T13:36:37.636683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53","name":"4292662a-a617-4b88-b6f2-7ef687d48f53","status":"Creating","startTime":"2022-03-15T12:55:06.3373896Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:39:10 GMT + - Tue, 15 Mar 2022 12:57:38 GMT expires: - '-1' pragma: @@ -1112,21 +1040,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3","name":"4daf4d55-0c51-47c6-a88b-751a177c1dd3","status":"Creating","startTime":"2022-01-07T13:36:37.636683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53","name":"4292662a-a617-4b88-b6f2-7ef687d48f53","status":"Creating","startTime":"2022-03-15T12:55:06.3373896Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:39:40 GMT + - Tue, 15 Mar 2022 12:58:08 GMT expires: - '-1' pragma: @@ -1160,21 +1088,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3","name":"4daf4d55-0c51-47c6-a88b-751a177c1dd3","status":"Creating","startTime":"2022-01-07T13:36:37.636683Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53","name":"4292662a-a617-4b88-b6f2-7ef687d48f53","status":"Creating","startTime":"2022-03-15T12:55:06.3373896Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:40:10 GMT + - Tue, 15 Mar 2022 12:58:38 GMT expires: - '-1' pragma: @@ -1208,21 +1136,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4daf4d55-0c51-47c6-a88b-751a177c1dd3","name":"4daf4d55-0c51-47c6-a88b-751a177c1dd3","status":"Succeeded","startTime":"2022-01-07T13:36:37.636683Z","endTime":"2022-01-07T13:40:40.5622883Z","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/southcentralusstage/operationResults/4292662a-a617-4b88-b6f2-7ef687d48f53","name":"4292662a-a617-4b88-b6f2-7ef687d48f53","status":"Succeeded","startTime":"2022-03-15T12:55:06.3373896Z","endTime":"2022-03-15T12:58:57.2069531Z","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: cache-control: - no-cache content-length: - - '585' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:40:40 GMT + - Tue, 15 Mar 2022 12:59:09 GMT expires: - '-1' pragma: @@ -1256,23 +1184,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A40%3A40.5592457Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:36:33.3061788Z"},"properties":{"fileSystemId":"afce39c7-c184-8c41-d106-a582ab68c948","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_902a9b23","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","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"afce39c7-c184-8c41-d106-a582ab68c948","fileSystemId":"afce39c7-c184-8c41-d106-a582ab68c948","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T12%3A58%3A57.1982071Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:55:01.6119700Z"},"properties":{"fileSystemId":"4fafa841-b24d-4a50-699f-c3259a544941","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_28749f2b","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","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4fafa841-b24d-4a50-699f-c3259a544941","fileSystemId":"4fafa841-b24d-4a50-699f-c3259a544941","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2054' + - '2081' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:40:40 GMT + - Tue, 15 Mar 2022 12:59:09 GMT etag: - - W/"datetime'2022-01-07T13%3A40%3A40.5592457Z'" + - W/"datetime'2022-03-15T12%3A58%3A57.1982071Z'" expires: - '-1' pragma: @@ -1304,33 +1232,33 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb64aa4d-7624-4dbd-9ffe-eebc6990ed34?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02782341-c211-4245-a1d9-4858ae2618a9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '461' + - '455' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:40:42 GMT + - Tue, 15 Mar 2022 12:59:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb64aa4d-7624-4dbd-9ffe-eebc6990ed34?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02782341-c211-4245-a1d9-4858ae2618a9?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1360,21 +1288,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb64aa4d-7624-4dbd-9ffe-eebc6990ed34?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/02782341-c211-4245-a1d9-4858ae2618a9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bb64aa4d-7624-4dbd-9ffe-eebc6990ed34","name":"bb64aa4d-7624-4dbd-9ffe-eebc6990ed34","status":"Succeeded","startTime":"2022-01-07T13:40:42.6285379Z","endTime":"2022-01-07T13:40:44.7482507Z","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/southcentralusstage/operationResults/02782341-c211-4245-a1d9-4858ae2618a9","name":"02782341-c211-4245-a1d9-4858ae2618a9","status":"Succeeded","startTime":"2022-03-15T12:59:12.0161191Z","endTime":"2022-03-15T12:59:14.5093776Z","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: cache-control: - no-cache content-length: - - '610' + - '604' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:41:12 GMT + - Tue, 15 Mar 2022 12:59:41 GMT expires: - '-1' pragma: @@ -1408,21 +1336,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"8e441b25-ef83-0cdf-7a5d-bd2703496087","created":"2022-01-07T13:40:42Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"627fe4d7-fcbd-6898-3894-20b197b2727a","created":"2022-03-15T12:59:12Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:41:13 GMT + - Tue, 15 Mar 2022 12:59:41 GMT expires: - '-1' pragma: @@ -1454,33 +1382,33 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2021-10-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3ff37014-19ee-4291-8966-df23111bb110?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c995d550-7e8b-4d86-a64e-9b84225f6cd5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '461' + - '455' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:41:15 GMT + - Tue, 15 Mar 2022 12:59:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3ff37014-19ee-4291-8966-df23111bb110?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c995d550-7e8b-4d86-a64e-9b84225f6cd5?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1490,7 +1418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1510,21 +1438,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3ff37014-19ee-4291-8966-df23111bb110?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c995d550-7e8b-4d86-a64e-9b84225f6cd5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3ff37014-19ee-4291-8966-df23111bb110","name":"3ff37014-19ee-4291-8966-df23111bb110","status":"Succeeded","startTime":"2022-01-07T13:41:14.9417844Z","endTime":"2022-01-07T13:41:17.751762Z","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/southcentralusstage/operationResults/c995d550-7e8b-4d86-a64e-9b84225f6cd5","name":"c995d550-7e8b-4d86-a64e-9b84225f6cd5","status":"Succeeded","startTime":"2022-03-15T12:59:44.1649421Z","endTime":"2022-03-15T12:59:46.313353Z","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: cache-control: - no-cache content-length: - - '609' + - '603' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:41:45 GMT + - Tue, 15 Mar 2022 13:00:14 GMT expires: - '-1' pragma: @@ -1533,10 +1461,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1558,21 +1482,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"767f0416-7cec-2973-b326-505a99defe79","created":"2022-01-07T13:41:15Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"f1880a17-a1ae-f504-c500-d6ee058c7cb5","created":"2022-03-15T12:59:44Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:41:45 GMT + - Tue, 15 Mar 2022 13:00:14 GMT expires: - '-1' pragma: @@ -1581,10 +1505,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1606,21 +1526,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"8e441b25-ef83-0cdf-7a5d-bd2703496087","created":"2022-01-07T13:40:42Z"}},{"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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"767f0416-7cec-2973-b326-505a99defe79","created":"2022-01-07T13:41:15Z"}}]}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"627fe4d7-fcbd-6898-3894-20b197b2727a","created":"2022-03-15T12:59:12Z"}},{"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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"f1880a17-a1ae-f504-c500-d6ee058c7cb5","created":"2022-03-15T12:59:44Z"}}]}' headers: cache-control: - no-cache content-length: - - '1107' + - '1095' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:41:46 GMT + - Tue, 15 Mar 2022 13:00:23 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 9bec1107a3c..231537bc3bf 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,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"14bcb549-806c-46fd-8fbd-4a36fa1e581d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"bbb82f0c-19e9-4ee1-852c-fdf2079d83dc\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"67719e76-dd77-44b9-815b-7e95d90c3124\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:35:39.4900355Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"0cb25377-6d38-42f3-b748-7874935d8491\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7773564f-8f85-4fba-a976-d65240958496?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/78270fe1-e436-4f07-9c3b-b443eafe5fb1?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '773' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:44:26 GMT + - Tue, 15 Mar 2022 11:35:45 GMT expires: - '-1' pragma: @@ -57,9 +58,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0234841c-6f15-4f72-8d20-b2e5cbb0f54e + - cb49cd9d-cde9-4dbf-a4cd-b84b1bf178c5 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7773564f-8f85-4fba-a976-d65240958496?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/78270fe1-e436-4f07-9c3b-b443eafe5fb1?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:44:30 GMT + - Tue, 15 Mar 2022 11:35:48 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a25b7df7-0299-4169-956b-d0a38bcb6d8d + - 6d635870-bc90-4719-bcdc-043c0a733655 status: code: 200 message: OK @@ -126,16 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"c142c9fc-3cd2-4e02-a20f-5b2fb9cfa1b9\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"bbb82f0c-19e9-4ee1-852c-fdf2079d83dc\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"6cdbe6b5-8d10-44de-909f-6bac41b416a1\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:35:39.4900355Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"0cb25377-6d38-42f3-b748-7874935d8491\",\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\": @@ -144,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '774' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:44:30 GMT + - Tue, 15 Mar 2022 11:35:48 GMT etag: - - W/"c142c9fc-3cd2-4e02-a20f-5b2fb9cfa1b9" + - W/"6cdbe6b5-8d10-44de-909f-6bac41b416a1" expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3adb8105-0863-4987-9542-7a645cb954d7 + - b21e0606-7c9a-425d-ab51-cf29325e5711 status: code: 200 message: OK @@ -185,16 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"c142c9fc-3cd2-4e02-a20f-5b2fb9cfa1b9\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"bbb82f0c-19e9-4ee1-852c-fdf2079d83dc\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"6cdbe6b5-8d10-44de-909f-6bac41b416a1\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:35:39.4900355Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"0cb25377-6d38-42f3-b748-7874935d8491\",\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\": @@ -203,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '774' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:44:35 GMT + - Tue, 15 Mar 2022 11:35:49 GMT etag: - - W/"c142c9fc-3cd2-4e02-a20f-5b2fb9cfa1b9" + - W/"6cdbe6b5-8d10-44de-909f-6bac41b416a1" expires: - '-1' pragma: @@ -226,16 +229,17 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 593f2afd-1061-4a06-80d8-1e56f4f67048 + - 6c3bbb1c-3ec9-4a87-9ddd-5a96de39a07b status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "southcentralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.5.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", - "properties": {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", - "properties": {"serviceName": "Microsoft.Netapp/volumes"}}], "privateEndpointNetworkPolicies": + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T11:35:39.4900355Z"}, + "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": + {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", "properties": + {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": + {"serviceName": "Microsoft.Netapp/volumes"}}], "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: @@ -248,32 +252,33 @@ interactions: Connection: - keep-alive Content-Length: - - '712' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"e7c0235a-d2f3-4394-92c5-a5fd67546dce\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"bbb82f0c-19e9-4ee1-852c-fdf2079d83dc\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"f767c893-1e98-49e5-a5c3-b8b1838673a9\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:35:39.4900355Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"0cb25377-6d38-42f3-b748-7874935d8491\",\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-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"e7c0235a-d2f3-4394-92c5-a5fd67546dce\\\"\",\r\n + \ \"etag\": \"W/\\\"f767c893-1e98-49e5-a5c3-b8b1838673a9\\\"\",\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_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"e7c0235a-d2f3-4394-92c5-a5fd67546dce\\\"\",\r\n + \ \"etag\": \"W/\\\"f767c893-1e98-49e5-a5c3-b8b1838673a9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +293,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e2076f12-47d8-4629-af6a-3dcdeefd08ec?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/864afcaf-38c1-4dd9-8ea9-af58640bfa83?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2388' + - '2270' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:44:37 GMT + - Tue, 15 Mar 2022 11:35:50 GMT expires: - '-1' pragma: @@ -313,9 +318,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55016911-3da5-4180-8619-e3078045ed80 + - 232764e3-1aab-428b-92d3-37509198b14a x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -333,9 +338,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e2076f12-47d8-4629-af6a-3dcdeefd08ec?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/864afcaf-38c1-4dd9-8ea9-af58640bfa83?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:44:40 GMT + - Tue, 15 Mar 2022 11:35:53 GMT expires: - '-1' pragma: @@ -364,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 58dfa176-bc29-4f5f-b624-c84ba295a7a1 + - 200224e6-4162-417e-8a5f-08ebcabd05b2 status: code: 200 message: OK @@ -382,26 +387,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005\",\r\n - \ \"etag\": \"W/\\\"c7fd24aa-ec84-4225-b4c0-9bfc3cc57925\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"bbb82f0c-19e9-4ee1-852c-fdf2079d83dc\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"4245e03e-0439-4ddd-819c-29f4c4015cd6\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:35:39.4900355Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"0cb25377-6d38-42f3-b748-7874935d8491\",\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-000006\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006\",\r\n - \ \"etag\": \"W/\\\"c7fd24aa-ec84-4225-b4c0-9bfc3cc57925\\\"\",\r\n + \ \"etag\": \"W/\\\"4245e03e-0439-4ddd-819c-29f4c4015cd6\\\"\",\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_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006/delegations/0\",\r\n - \ \"etag\": \"W/\\\"c7fd24aa-ec84-4225-b4c0-9bfc3cc57925\\\"\",\r\n + \ \"etag\": \"W/\\\"4245e03e-0439-4ddd-819c-29f4c4015cd6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +422,13 @@ interactions: cache-control: - no-cache content-length: - - '2390' + - '2272' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:44:40 GMT + - Tue, 15 Mar 2022 11:35:53 GMT etag: - - W/"c7fd24aa-ec84-4225-b4c0-9bfc3cc57925" + - W/"4245e03e-0439-4ddd-819c-29f4c4015cd6" expires: - '-1' pragma: @@ -439,7 +445,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 525a90a4-522c-4c5e-8367-57cc089147fb + - aa6a0ff9-0b11-4688-a995-b6f262b15300 status: code: 200 message: OK @@ -455,31 +461,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-10-19T12%3A44%3A48.2249168Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T11%3A35%3A57.6246996Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:35:54.7797800Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ae8640f-1729-47cd-854b-252194d61db9?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1766d5ec-d311-47cf-bb7f-af4a14c09f41?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '417' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:44:49 GMT + - Tue, 15 Mar 2022 11:35:58 GMT etag: - - W/"datetime'2021-10-19T12%3A44%3A48.2249168Z'" + - W/"datetime'2022-03-15T11%3A35%3A57.6246996Z'" expires: - '-1' pragma: @@ -511,21 +517,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ae8640f-1729-47cd-854b-252194d61db9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1766d5ec-d311-47cf-bb7f-af4a14c09f41?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1ae8640f-1729-47cd-854b-252194d61db9","name":"1ae8640f-1729-47cd-854b-252194d61db9","status":"Succeeded","startTime":"2021-10-19T12:44:48.2316891Z","endTime":"2021-10-19T12:44:48.2667324Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1766d5ec-d311-47cf-bb7f-af4a14c09f41","name":"1766d5ec-d311-47cf-bb7f-af4a14c09f41","status":"Succeeded","startTime":"2022-03-15T11:35:57.6323262Z","endTime":"2022-03-15T11:35:57.6873227Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '588' + - '529' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:45:19 GMT + - Tue, 15 Mar 2022 11:36:28 GMT expires: - '-1' pragma: @@ -559,23 +565,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2021-10-19T12%3A44%3A48.2649459Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T11%3A35%3A57.6757376Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:35:54.7797800Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '464' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:45:20 GMT + - Tue, 15 Mar 2022 11:36:28 GMT etag: - - W/"datetime'2021-10-19T12%3A44%3A48.2649459Z'" + - W/"datetime'2022-03-15T11%3A35%3A57.6757376Z'" expires: - '-1' pragma: @@ -596,8 +602,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +614,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.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-10-19T12%3A45%3A26.7839373Z''\"","location":"southcentralusstage","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_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-15T11%3A36%3A34.8703088Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:36:30.8278655Z"},"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/southcentralusstage/operationResults/9cacbb39-9435-47de-b790-f898c024e95c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b063eb50-cc95-4530-9889-f75b77abcf47?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '580' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:45:26 GMT + - Tue, 15 Mar 2022 11:36:35 GMT etag: - - W/"datetime'2021-10-19T12%3A45%3A26.7839373Z'" + - W/"datetime'2022-03-15T11%3A36%3A34.8703088Z'" expires: - '-1' pragma: @@ -644,7 +650,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -664,21 +670,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9cacbb39-9435-47de-b790-f898c024e95c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b063eb50-cc95-4530-9889-f75b77abcf47?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9cacbb39-9435-47de-b790-f898c024e95c","name":"9cacbb39-9435-47de-b790-f898c024e95c","status":"Succeeded","startTime":"2021-10-19T12:45:26.7884733Z","endTime":"2021-10-19T12:45:27.0890991Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_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/b063eb50-cc95-4530-9889-f75b77abcf47","name":"b063eb50-cc95-4530-9889-f75b77abcf47","status":"Succeeded","startTime":"2022-03-15T11:36:34.8748005Z","endTime":"2022-03-15T11:36:35.1647931Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' headers: cache-control: - no-cache content-length: - - '627' + - '559' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:45:57 GMT + - Tue, 15 Mar 2022 11:37:06 GMT expires: - '-1' pragma: @@ -687,10 +693,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -712,23 +714,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.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-10-19T12%3A45%3A27.0813003Z''\"","location":"southcentralusstage","properties":{"poolId":"3828e7ee-aaed-1517-ef1d-a09123bff18a","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-15T11%3A36%3A35.1501019Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:36:30.8278655Z"},"properties":{"poolId":"33b10204-5640-415d-80c8-e0e95cb1638e","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '695' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:45:57 GMT + - Tue, 15 Mar 2022 11:37:06 GMT etag: - - W/"datetime'2021-10-19T12%3A45%3A27.0813003Z'" + - W/"datetime'2022-03-15T11%3A36%3A35.1501019Z'" expires: - '-1' pragma: @@ -737,10 +739,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -750,7 +748,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +760,31 @@ interactions: Connection: - keep-alive Content-Length: - - '388' + - '345' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-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-10-19T12%3A46%3A08.8967627Z''\"","location":"southcentralusstage","properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_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_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A37%3A11.8114964Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:37:08.2526685Z"},"properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 cache-control: - no-cache content-length: - - '905' + - '854' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:46:09 GMT + - Tue, 15 Mar 2022 11:37:13 GMT etag: - - W/"datetime'2021-10-19T12%3A46%3A08.8967627Z'" + - W/"datetime'2022-03-15T11%3A37%3A11.8114964Z'" expires: - '-1' pragma: @@ -797,7 +796,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -817,69 +816,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Creating","startTime":"2021-10-19T12:46:08.903547Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - cache-control: - - no-cache - content-length: - - '648' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 12:46: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 volume create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Creating","startTime":"2021-10-19T12:46:08.903547Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/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/764be97b-7f39-45e3-a9ba-df9c0923cb2f","name":"764be97b-7f39-45e3-a9ba-df9c0923cb2f","status":"Creating","startTime":"2022-03-15T11:37:11.820286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '648' + - '570' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:47:09 GMT + - Tue, 15 Mar 2022 11:37:43 GMT expires: - '-1' pragma: @@ -913,21 +864,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Creating","startTime":"2021-10-19T12:46:08.903547Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/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/764be97b-7f39-45e3-a9ba-df9c0923cb2f","name":"764be97b-7f39-45e3-a9ba-df9c0923cb2f","status":"Creating","startTime":"2022-03-15T11:37:11.820286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '648' + - '570' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:47:40 GMT + - Tue, 15 Mar 2022 11:38:13 GMT expires: - '-1' pragma: @@ -961,21 +912,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Creating","startTime":"2021-10-19T12:46:08.903547Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/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/764be97b-7f39-45e3-a9ba-df9c0923cb2f","name":"764be97b-7f39-45e3-a9ba-df9c0923cb2f","status":"Creating","startTime":"2022-03-15T11:37:11.820286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '648' + - '570' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:48:11 GMT + - Tue, 15 Mar 2022 11:38:43 GMT expires: - '-1' pragma: @@ -1009,21 +960,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Creating","startTime":"2021-10-19T12:46:08.903547Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/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/764be97b-7f39-45e3-a9ba-df9c0923cb2f","name":"764be97b-7f39-45e3-a9ba-df9c0923cb2f","status":"Creating","startTime":"2022-03-15T11:37:11.820286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '648' + - '570' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:48:41 GMT + - Tue, 15 Mar 2022 11:39:13 GMT expires: - '-1' pragma: @@ -1057,21 +1008,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Creating","startTime":"2021-10-19T12:46:08.903547Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/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/764be97b-7f39-45e3-a9ba-df9c0923cb2f","name":"764be97b-7f39-45e3-a9ba-df9c0923cb2f","status":"Creating","startTime":"2022-03-15T11:37:11.820286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '648' + - '570' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:49:11 GMT + - Tue, 15 Mar 2022 11:39:43 GMT expires: - '-1' pragma: @@ -1105,21 +1056,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Creating","startTime":"2021-10-19T12:46:08.903547Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/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/764be97b-7f39-45e3-a9ba-df9c0923cb2f","name":"764be97b-7f39-45e3-a9ba-df9c0923cb2f","status":"Creating","startTime":"2022-03-15T11:37:11.820286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '648' + - '570' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:49:41 GMT + - Tue, 15 Mar 2022 11:40:13 GMT expires: - '-1' pragma: @@ -1153,21 +1104,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Creating","startTime":"2021-10-19T12:46:08.903547Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/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/764be97b-7f39-45e3-a9ba-df9c0923cb2f","name":"764be97b-7f39-45e3-a9ba-df9c0923cb2f","status":"Creating","startTime":"2022-03-15T11:37:11.820286Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '648' + - '570' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:50:11 GMT + - Tue, 15 Mar 2022 11:40:43 GMT expires: - '-1' pragma: @@ -1201,21 +1152,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/764be97b-7f39-45e3-a9ba-df9c0923cb2f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","name":"11ad3bed-05b4-4dfc-b25c-4440bdccfe9b","status":"Succeeded","startTime":"2021-10-19T12:46:08.903547Z","endTime":"2021-10-19T12:50:18.6111011Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/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/764be97b-7f39-45e3-a9ba-df9c0923cb2f","name":"764be97b-7f39-45e3-a9ba-df9c0923cb2f","status":"Succeeded","startTime":"2022-03-15T11:37:11.820286Z","endTime":"2022-03-15T11:41:05.9851334Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '659' + - '581' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:50:42 GMT + - Tue, 15 Mar 2022 11:41:15 GMT expires: - '-1' pragma: @@ -1249,23 +1200,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-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-10-19T12%3A50%3A18.6088409Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"96debce4-d20c-ff39-0db9-37d68b353b94","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_07a0b92c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"96debce4-d20c-ff39-0db9-37d68b353b94","fileSystemId":"96debce4-d20c-ff39-0db9-37d68b353b94","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A41%3A05.977184Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:37:08.2526685Z"},"properties":{"fileSystemId":"9ce92c38-6876-54a9-0fd6-762812a0a99e","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_80a60438","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"9ce92c38-6876-54a9-0fd6-762812a0a99e","fileSystemId":"9ce92c38-6876-54a9-0fd6-762812a0a99e","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2164' + - '2082' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:50:42 GMT + - Tue, 15 Mar 2022 11:41:15 GMT etag: - - W/"datetime'2021-10-19T12%3A50%3A18.6088409Z'" + - W/"datetime'2022-03-15T11%3A41%3A05.977184Z'" expires: - '-1' pragma: @@ -1299,21 +1250,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_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"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_vault_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault","name":"cli-acc-000002/cbsvault","type":"Microsoft.NetApp/netAppAccounts/vaults","properties":{"enabled":true,"vaultId":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '359' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 12:50:44 GMT + - Tue, 15 Mar 2022 11:41:15 GMT expires: - '-1' pragma: @@ -1322,10 +1273,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 20e1b0da024..649e26ac64d 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_list_volumes.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"276fb8f6-b69b-4197-b5b5-6a265dad9ed4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4148bfc6-c048-4f33-8d96-bcdb63699490\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:19:56.0928730Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:07:54.4815394Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f64a0747-6303-4215-8d26-164d02ccd7b6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f3db0e17-a28f-4e25-9c58-434022fe0f89\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/91db5528-d971-4be1-86e6-43aa6edeb6e1?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/25af5c97-d2e2-47ff-bc04-b5546e8d57b4?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '769' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:02 GMT + - Tue, 15 Mar 2022 14:08:00 GMT expires: - '-1' pragma: @@ -58,12 +58,61 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4bb158c0-4f5d-4fc2-b47f-f7b8bd44350a + - 895da45c-4311-47fe-8de2-3e51feaa47e5 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 - message: '' + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n --resource-group -l --address-prefix + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/25af5c97-d2e2-47ff-bc04-b5546e8d57b4?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 14:08:03 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: + - 5429c84f-93ca-4002-ab78-d04ce378a1d0 + status: + code: 200 + message: OK - request: body: null headers: @@ -78,9 +127,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/91db5528-d971-4be1-86e6-43aa6edeb6e1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/25af5c97-d2e2-47ff-bc04-b5546e8d57b4?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +141,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:05 GMT + - Tue, 15 Mar 2022 14:08:13 GMT expires: - '-1' pragma: @@ -109,10 +158,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92e1a4c1-89c9-47e1-977d-5e92e8bfcda1 + - 3685cec0-266d-4c23-bb0b-cd1c5d2ef248 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -127,17 +176,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"30287d1d-568c-4fa1-8a51-5c00c65723ba\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"88e466af-7b7d-42f9-a35e-1d2b88b0702a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:19:56.0928730Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:07:54.4815394Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f64a0747-6303-4215-8d26-164d02ccd7b6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f3db0e17-a28f-4e25-9c58-434022fe0f89\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -146,13 +195,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:05 GMT + - Tue, 15 Mar 2022 14:08:14 GMT etag: - - W/"30287d1d-568c-4fa1-8a51-5c00c65723ba" + - W/"88e466af-7b7d-42f9-a35e-1d2b88b0702a" expires: - '-1' pragma: @@ -169,10 +218,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 510cf507-0b44-421b-99e6-67141094d17f + - dd9994cb-ba3f-4201-bb0d-840224197f06 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -187,17 +236,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"30287d1d-568c-4fa1-8a51-5c00c65723ba\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"88e466af-7b7d-42f9-a35e-1d2b88b0702a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:19:56.0928730Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:07:54.4815394Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f64a0747-6303-4215-8d26-164d02ccd7b6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f3db0e17-a28f-4e25-9c58-434022fe0f89\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -206,13 +255,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:06 GMT + - Tue, 15 Mar 2022 14:08:14 GMT etag: - - W/"30287d1d-568c-4fa1-8a51-5c00c65723ba" + - W/"88e466af-7b7d-42f9-a35e-1d2b88b0702a" expires: - '-1' pragma: @@ -222,20 +271,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fee69d64-b650-4c5b-84f0-253140da3533 + - 67264941-8614-4dca-9af1-0c1d6ea2ee57 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T10:19:56.0928730Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T14:07:54.4815394Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000007", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -252,33 +297,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c8883d4b-c3b6-4af5-aeba-1bf49b91d9a6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"98f2dc50-fc3e-4293-9999-90782853ab29\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:19:56.0928730Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:07:54.4815394Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f64a0747-6303-4215-8d26-164d02ccd7b6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f3db0e17-a28f-4e25-9c58-434022fe0f89\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"c8883d4b-c3b6-4af5-aeba-1bf49b91d9a6\\\"\",\r\n + \ \"etag\": \"W/\\\"98f2dc50-fc3e-4293-9999-90782853ab29\\\"\",\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/\\\"c8883d4b-c3b6-4af5-aeba-1bf49b91d9a6\\\"\",\r\n + \ \"etag\": \"W/\\\"98f2dc50-fc3e-4293-9999-90782853ab29\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -293,15 +338,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4c4e5cfb-87c3-4d70-81ff-30bc5ad09d09?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7bcb769b-5bad-4d20-94d5-43b6f87bf365?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2258' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:07 GMT + - Tue, 15 Mar 2022 14:08:16 GMT expires: - '-1' pragma: @@ -311,19 +356,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ccd37c4-e052-44d6-9739-f65eb3d4064d + - 28829356-d333-4556-85e6-cafd0428039f x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -338,9 +379,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4c4e5cfb-87c3-4d70-81ff-30bc5ad09d09?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7bcb769b-5bad-4d20-94d5-43b6f87bf365?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -352,7 +393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:11 GMT + - Tue, 15 Mar 2022 14:08:19 GMT expires: - '-1' pragma: @@ -362,17 +403,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 82183f86-4ade-4a1e-bbbd-faa5b2757dad + - bc246806-7983-4d24-905e-a8c23598bd9e status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -387,27 +424,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"12474c57-5a37-4adc-9683-6a074bf98dc1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e98456ad-60a6-4a5a-bd7b-84524b9b1749\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:19:56.0928730Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:07:54.4815394Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f64a0747-6303-4215-8d26-164d02ccd7b6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"f3db0e17-a28f-4e25-9c58-434022fe0f89\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"12474c57-5a37-4adc-9683-6a074bf98dc1\\\"\",\r\n + \ \"etag\": \"W/\\\"e98456ad-60a6-4a5a-bd7b-84524b9b1749\\\"\",\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/\\\"12474c57-5a37-4adc-9683-6a074bf98dc1\\\"\",\r\n + \ \"etag\": \"W/\\\"e98456ad-60a6-4a5a-bd7b-84524b9b1749\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -422,13 +459,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2260' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:11 GMT + - Tue, 15 Mar 2022 14:08:19 GMT etag: - - W/"12474c57-5a37-4adc-9683-6a074bf98dc1" + - W/"e98456ad-60a6-4a5a-bd7b-84524b9b1749" expires: - '-1' pragma: @@ -438,17 +475,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d759c687-5f32-4075-9877-b2b5cabf9f83 + - 946da66c-3707-4de6-80e5-7dbd017529ec status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -461,31 +494,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T10%3A20%3A17.9623985Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:20:12.0595315Z"},"properties":{"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''2022-03-15T14%3A08%3A28.5202551Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:08:22.5948953Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/07988a08-f815-4aab-9958-5456d88d12b7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/03d318a1-d67a-4ecb-a6be-e81d070c0c05?api-version=2021-10-01 cache-control: - no-cache content-length: - - '419' + - '413' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:18 GMT + - Tue, 15 Mar 2022 14:08:29 GMT etag: - - W/"datetime'2022-01-07T10%3A20%3A17.9623985Z'" + - W/"datetime'2022-03-15T14%3A08%3A28.5202551Z'" expires: - '-1' pragma: @@ -517,21 +550,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/07988a08-f815-4aab-9958-5456d88d12b7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/03d318a1-d67a-4ecb-a6be-e81d070c0c05?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/07988a08-f815-4aab-9958-5456d88d12b7","name":"07988a08-f815-4aab-9958-5456d88d12b7","status":"Succeeded","startTime":"2022-01-07T10:20:17.9664939Z","endTime":"2022-01-07T10:20:17.9964266Z","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/southcentralusstage/operationResults/03d318a1-d67a-4ecb-a6be-e81d070c0c05","name":"03d318a1-d67a-4ecb-a6be-e81d070c0c05","status":"Succeeded","startTime":"2022-03-15T14:08:28.5255552Z","endTime":"2022-03-15T14:08:28.5705486Z","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: cache-control: - no-cache content-length: - - '531' + - '525' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:48 GMT + - Tue, 15 Mar 2022 14:09:00 GMT expires: - '-1' pragma: @@ -540,10 +573,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -565,23 +594,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T10%3A20%3A17.9897584Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:20:12.0595315Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T14%3A08%3A28.5628375Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:08:22.5948953Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:49 GMT + - Tue, 15 Mar 2022 14:09:00 GMT etag: - - W/"datetime'2022-01-07T10%3A20%3A17.9897584Z'" + - W/"datetime'2022-03-15T14%3A08%3A28.5628375Z'" expires: - '-1' pragma: @@ -590,10 +619,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -602,8 +627,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1"}, "properties": - {"size": 4398046511104, "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1"}, "properties": {"size": + 4398046511104, "serviceLevel": "Premium"}}' headers: Accept: - application/json @@ -614,31 +639,31 @@ interactions: Connection: - keep-alive Content-Length: - - '123' + - '117' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T10%3A20%3A56.1493044Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:20:50.5061190Z"},"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''2022-03-15T14%3A09%3A06.7393639Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:09:01.5772953Z"},"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/southcentralusstage/operationResults/44c31fd1-ddf1-4d84-afc7-0c722c1e78f3?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d3f73f4b-ff8f-463a-93d9-d74b1b2441b6?api-version=2021-10-01 cache-control: - no-cache content-length: - - '598' + - '592' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:20:56 GMT + - Tue, 15 Mar 2022 14:09:13 GMT etag: - - W/"datetime'2022-01-07T10%3A20%3A56.1493044Z'" + - W/"datetime'2022-03-15T14%3A09%3A06.7393639Z'" expires: - '-1' pragma: @@ -670,21 +695,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44c31fd1-ddf1-4d84-afc7-0c722c1e78f3?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d3f73f4b-ff8f-463a-93d9-d74b1b2441b6?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/44c31fd1-ddf1-4d84-afc7-0c722c1e78f3","name":"44c31fd1-ddf1-4d84-afc7-0c722c1e78f3","status":"Succeeded","startTime":"2022-01-07T10:20:56.1564398Z","endTime":"2022-01-07T10:20:56.4893759Z","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/southcentralusstage/operationResults/d3f73f4b-ff8f-463a-93d9-d74b1b2441b6","name":"d3f73f4b-ff8f-463a-93d9-d74b1b2441b6","status":"Succeeded","startTime":"2022-03-15T14:09:06.7447721Z","endTime":"2022-03-15T14:09:06.8982224Z","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: cache-control: - no-cache content-length: - - '561' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:21:27 GMT + - Tue, 15 Mar 2022 14:09:43 GMT expires: - '-1' pragma: @@ -693,10 +718,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -718,23 +739,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T10%3A20%3A56.48279Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:20:50.5061190Z"},"properties":{"poolId":"a3966d72-95d3-1a63-437a-326c99a81c54","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T14%3A09%3A06.8864853Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:09:01.5772953Z"},"properties":{"poolId":"6d59638e-fabb-f192-0a92-86695c937198","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '711' + - '707' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:21:27 GMT + - Tue, 15 Mar 2022 14:09:43 GMT etag: - - W/"datetime'2022-01-07T10%3A20%3A56.48279Z'" + - W/"datetime'2022-03-15T14%3A09%3A06.8864853Z'" expires: - '-1' pragma: @@ -743,10 +764,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -755,9 +772,10 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1"}, "properties": - {"creationToken": "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": - 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' + body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1"}, "properties": {"creationToken": + "cli-vol-000004", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -768,32 +786,32 @@ interactions: Connection: - keep-alive Content-Length: - - '370' + - '396' Content-Type: - 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A21%3A34.2212634Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:21:28.7397371Z"},"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''2022-03-15T14%3A09%3A50.598811Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:09:44.9161874Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 cache-control: - no-cache content-length: - - '830' + - '886' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:21:35 GMT + - Tue, 15 Mar 2022 14:09:51 GMT etag: - - W/"datetime'2022-01-07T10%3A21%3A34.2212634Z'" + - W/"datetime'2022-03-15T14%3A09%3A50.598811Z'" expires: - '-1' pragma: @@ -826,21 +844,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Creating","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:22:05 GMT + - Tue, 15 Mar 2022 14:10:21 GMT expires: - '-1' pragma: @@ -875,21 +893,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Creating","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:22:35 GMT + - Tue, 15 Mar 2022 14:10:51 GMT expires: - '-1' pragma: @@ -924,21 +942,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Creating","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:23:05 GMT + - Tue, 15 Mar 2022 14:11:22 GMT expires: - '-1' pragma: @@ -973,21 +991,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Creating","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:23:36 GMT + - Tue, 15 Mar 2022 14:11:52 GMT expires: - '-1' pragma: @@ -1022,21 +1040,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Creating","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:24:06 GMT + - Tue, 15 Mar 2022 14:12:22 GMT expires: - '-1' pragma: @@ -1071,21 +1089,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Creating","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:24:36 GMT + - Tue, 15 Mar 2022 14:12:52 GMT expires: - '-1' pragma: @@ -1120,21 +1138,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Creating","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:25:06 GMT + - Tue, 15 Mar 2022 14:13:23 GMT expires: - '-1' pragma: @@ -1169,21 +1187,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Creating","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:25:37 GMT + - Tue, 15 Mar 2022 14:13:53 GMT expires: - '-1' pragma: @@ -1218,21 +1236,21 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","name":"4ced853a-75c6-4c7c-8846-6ea1d7d7c8ae","status":"Succeeded","startTime":"2022-01-07T10:21:34.2286074Z","endTime":"2022-01-07T10:25:58.7156999Z","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/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Creating","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '584' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:26:07 GMT + - Tue, 15 Mar 2022 14:14:23 GMT expires: - '-1' pragma: @@ -1267,23 +1285,72 @@ 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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A25%3A58.708606Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:21:28.7397371Z"},"properties":{"fileSystemId":"f396630f-3d11-badb-a78d-72b760f35fe7","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_b2c3e4ac","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f396630f-3d11-badb-a78d-72b760f35fe7","fileSystemId":"f396630f-3d11-badb-a78d-72b760f35fe7","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/140a6a1a-a39c-4eee-86f7-a23127b6d582","name":"140a6a1a-a39c-4eee-86f7-a23127b6d582","status":"Succeeded","startTime":"2022-03-15T14:09:50.6090142Z","endTime":"2022-03-15T14:14:33.8095891Z","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: cache-control: - no-cache content-length: - - '2063' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:26:07 GMT + - Tue, 15 Mar 2022 14:14:54 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: + - --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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A14%3A33.8002408Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:09:44.9161874Z"},"properties":{"fileSystemId":"0ffb6606-6a06-4706-8859-273d276ac9e5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_e6dfb679","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0ffb6606-6a06-4706-8859-273d276ac9e5","fileSystemId":"0ffb6606-6a06-4706-8859-273d276ac9e5","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2091' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 15 Mar 2022 14:14:54 GMT etag: - - W/"datetime'2022-01-07T10%3A25%3A58.708606Z'" + - W/"datetime'2022-03-15T14%3A14%3A33.8002408Z'" expires: - '-1' pragma: @@ -1304,9 +1371,10 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1"}, "properties": - {"creationToken": "cli-vol-000005", "serviceLevel": "Premium", "usageThreshold": - 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007"}}' + body: '{"location": "southcentralusstage", "tags": {"Tag1": "Value1"}, "properties": {"creationToken": + "cli-vol-000005", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -1317,32 +1385,32 @@ interactions: Connection: - keep-alive Content-Length: - - '370' + - '396' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A26%3A15.2819765Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:26:09.0582516Z"},"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''2022-03-15T14%3A15%3A00.9110861Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:14:56.0442882Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ac246e08-dd69-4242-bbba-0f655958a340?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7e57cdbf-0f4f-4687-a8ab-8983bbf014ff?api-version=2021-10-01 cache-control: - no-cache content-length: - - '830' + - '887' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:26:15 GMT + - Tue, 15 Mar 2022 14:15:02 GMT etag: - - W/"datetime'2022-01-07T10%3A26%3A15.2819765Z'" + - W/"datetime'2022-03-15T14%3A15%3A00.9110861Z'" expires: - '-1' pragma: @@ -1375,21 +1443,21 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ac246e08-dd69-4242-bbba-0f655958a340?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7e57cdbf-0f4f-4687-a8ab-8983bbf014ff?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ac246e08-dd69-4242-bbba-0f655958a340","name":"ac246e08-dd69-4242-bbba-0f655958a340","status":"Succeeded","startTime":"2022-01-07T10:26:15.2819274Z","endTime":"2022-01-07T10:26:37.2979086Z","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/southcentralusstage/operationResults/7e57cdbf-0f4f-4687-a8ab-8983bbf014ff","name":"7e57cdbf-0f4f-4687-a8ab-8983bbf014ff","status":"Succeeded","startTime":"2022-03-15T14:15:00.9173636Z","endTime":"2022-03-15T14:15:10.9467972Z","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: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:26:46 GMT + - Tue, 15 Mar 2022 14:15:33 GMT expires: - '-1' pragma: @@ -1398,10 +1466,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1424,23 +1488,23 @@ interactions: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A26%3A37.292621Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:26:09.0582516Z"},"properties":{"fileSystemId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_b2c3e4ac","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","fileSystemId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A15%3A10.9370754Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:14:56.0442882Z"},"properties":{"fileSystemId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_e6dfb679","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","fileSystemId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2063' + - '2091' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:26:46 GMT + - Tue, 15 Mar 2022 14:15:33 GMT etag: - - W/"datetime'2022-01-07T10%3A26%3A37.292621Z'" + - W/"datetime'2022-03-15T14%3A15%3A10.9370754Z'" expires: - '-1' pragma: @@ -1449,10 +1513,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1474,21 +1534,21 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A25%3A58.708606Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:21:28.7397371Z"},"properties":{"fileSystemId":"f396630f-3d11-badb-a78d-72b760f35fe7","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_b2c3e4ac","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f396630f-3d11-badb-a78d-72b760f35fe7","fileSystemId":"f396630f-3d11-badb-a78d-72b760f35fe7","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-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''2022-01-07T10%3A26%3A37.292621Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:26:09.0582516Z"},"properties":{"fileSystemId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_b2c3e4ac","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","fileSystemId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}]}' + 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''2022-03-15T14%3A14%3A33.8002408Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:09:44.9161874Z"},"properties":{"fileSystemId":"0ffb6606-6a06-4706-8859-273d276ac9e5","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_e6dfb679","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0ffb6606-6a06-4706-8859-273d276ac9e5","fileSystemId":"0ffb6606-6a06-4706-8859-273d276ac9e5","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-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''2022-03-15T14%3A15%3A10.9370754Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:14:56.0442882Z"},"properties":{"fileSystemId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_e6dfb679","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","fileSystemId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '4139' + - '4195' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:26:47 GMT + - Tue, 15 Mar 2022 14:15:34 GMT expires: - '-1' pragma: @@ -1497,10 +1557,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1524,25 +1580,25 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2cca05c0-6135-4b8d-8379-696fc9852f3d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3514cdae-5cea-41be-b55b-906f833ec785?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 10:26:49 GMT + - Tue, 15 Mar 2022 14:15:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2cca05c0-6135-4b8d-8379-696fc9852f3d?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3514cdae-5cea-41be-b55b-906f833ec785?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1572,21 +1628,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2cca05c0-6135-4b8d-8379-696fc9852f3d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3514cdae-5cea-41be-b55b-906f833ec785?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2cca05c0-6135-4b8d-8379-696fc9852f3d","name":"2cca05c0-6135-4b8d-8379-696fc9852f3d","status":"Succeeded","startTime":"2022-01-07T10:26:50.5812273Z","endTime":"2022-01-07T10:26:58.370782Z","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/southcentralusstage/operationResults/3514cdae-5cea-41be-b55b-906f833ec785","name":"3514cdae-5cea-41be-b55b-906f833ec785","status":"Succeeded","startTime":"2022-03-15T14:15:39.5511745Z","endTime":"2022-03-15T14:15:42.9927786Z","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: cache-control: - no-cache content-length: - - '583' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:27:20 GMT + - Tue, 15 Mar 2022 14:16:10 GMT expires: - '-1' pragma: @@ -1595,10 +1651,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1620,21 +1672,21 @@ interactions: ParameterSetName: - -g -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A26%3A37.292621Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T10:26:09.0582516Z"},"properties":{"fileSystemId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_b2c3e4ac","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","fileSystemId":"e0dc6bb2-a4c9-ffbf-3cd3-bbc768de4bc1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}]}' + 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''2022-03-15T14%3A15%3A10.9370754Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T14:14:56.0442882Z"},"properties":{"fileSystemId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_e6dfb679","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","fileSystemId":"4f5e4cdf-30b5-181f-fa87-16faba40d854","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '2075' + - '2103' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:27:21 GMT + - Tue, 15 Mar 2022 14:16:10 GMT expires: - '-1' pragma: @@ -1643,10 +1695,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 ef520ff290a..cd47615757f 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": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"8102a55e-e097-44c4-8b75-e0a1dbff8c4f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b91c9df9-bd57-4d27-8f1c-9ec2e00b4c22\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:04:45.8175871Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:52:52.2473871Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d1571adf-2197-4896-861e-bb3d99ef519d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ca6b5b41-59a9-43f6-bac2-b6de9ac50531\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/48794f31-9265-4ce8-aac1-309aff27323b?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/6b6a7837-b5e2-47be-8fbc-2b8b27bb3eb9?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '769' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:04:52 GMT + - Tue, 15 Mar 2022 14:52:57 GMT expires: - '-1' pragma: @@ -58,12 +58,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 74b74ca0-69f9-45ed-8183-9f8236305f00 + - 8561e0c9-6d86-49db-8891-cf0d4a032caa x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -78,9 +78,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/48794f31-9265-4ce8-aac1-309aff27323b?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/6b6a7837-b5e2-47be-8fbc-2b8b27bb3eb9?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:04:55 GMT + - Tue, 15 Mar 2022 14:53:00 GMT expires: - '-1' pragma: @@ -102,17 +102,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ce325e66-ffce-4770-b47c-7f84fec38e81 + - a7c49603-b853-4f8f-b5c2-35d3bd9abc1c status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -127,17 +123,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"105f9d9b-5919-4e53-8a4b-dbf1944e77d7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a0a32ddc-02f5-4937-a88e-6346ec07c045\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:04:45.8175871Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:52:52.2473871Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d1571adf-2197-4896-861e-bb3d99ef519d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ca6b5b41-59a9-43f6-bac2-b6de9ac50531\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -146,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:04:55 GMT + - Tue, 15 Mar 2022 14:53:01 GMT etag: - - W/"105f9d9b-5919-4e53-8a4b-dbf1944e77d7" + - W/"a0a32ddc-02f5-4937-a88e-6346ec07c045" expires: - '-1' pragma: @@ -162,17 +158,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bd7308e1-3f8f-4979-af20-60eaa1ffdb2a + - d37b4f5b-9348-4210-bc21-9f7621963ffd status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -187,17 +179,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"105f9d9b-5919-4e53-8a4b-dbf1944e77d7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a0a32ddc-02f5-4937-a88e-6346ec07c045\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:04:45.8175871Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:52:52.2473871Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d1571adf-2197-4896-861e-bb3d99ef519d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ca6b5b41-59a9-43f6-bac2-b6de9ac50531\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -206,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:04:55 GMT + - Tue, 15 Mar 2022 14:53:01 GMT etag: - - W/"105f9d9b-5919-4e53-8a4b-dbf1944e77d7" + - W/"a0a32ddc-02f5-4937-a88e-6346ec07c045" expires: - '-1' pragma: @@ -229,13 +221,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 41052a11-d095-4b8c-85e6-5db66e2bae1f + - 608682f2-33fd-4186-9f67-8668ec8c0c62 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T11:04:45.8175871Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T14:52:52.2473871Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -252,33 +244,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"754251a0-b5a8-474d-88c6-676967abd454\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2d7eaa20-cacc-412a-a77b-6f3391f7dea3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:04:45.8175871Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:52:52.2473871Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d1571adf-2197-4896-861e-bb3d99ef519d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ca6b5b41-59a9-43f6-bac2-b6de9ac50531\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"754251a0-b5a8-474d-88c6-676967abd454\\\"\",\r\n + \ \"etag\": \"W/\\\"2d7eaa20-cacc-412a-a77b-6f3391f7dea3\\\"\",\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/\\\"754251a0-b5a8-474d-88c6-676967abd454\\\"\",\r\n + \ \"etag\": \"W/\\\"2d7eaa20-cacc-412a-a77b-6f3391f7dea3\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -293,15 +285,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/5d4a9715-97ea-4e04-a03d-972796003dd1?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/566265a4-68cf-4dea-9a03-55ccb88a38c4?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2258' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:04:57 GMT + - Tue, 15 Mar 2022 14:53:03 GMT expires: - '-1' pragma: @@ -318,12 +310,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb280b6a-2721-4e54-a730-0f65412821ac + - ccd68111-2eb6-4dd4-8950-dbd19040aa6f x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -338,9 +330,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/5d4a9715-97ea-4e04-a03d-972796003dd1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/566265a4-68cf-4dea-9a03-55ccb88a38c4?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -352,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:05:00 GMT + - Tue, 15 Mar 2022 14:53:06 GMT expires: - '-1' pragma: @@ -369,10 +361,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e98cfbea-821f-4c2e-b4ac-deaa88a5f6ba + - 6d9ed5a0-1946-4549-ad0f-799a27b58e45 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -387,27 +379,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"93cf5543-60a0-4cc7-a8e9-0c022b543336\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"06387f46-382a-4556-a2f5-e9222bb2dfe8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:04:45.8175871Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:52:52.2473871Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d1571adf-2197-4896-861e-bb3d99ef519d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"ca6b5b41-59a9-43f6-bac2-b6de9ac50531\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"93cf5543-60a0-4cc7-a8e9-0c022b543336\\\"\",\r\n + \ \"etag\": \"W/\\\"06387f46-382a-4556-a2f5-e9222bb2dfe8\\\"\",\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/\\\"93cf5543-60a0-4cc7-a8e9-0c022b543336\\\"\",\r\n + \ \"etag\": \"W/\\\"06387f46-382a-4556-a2f5-e9222bb2dfe8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -422,13 +414,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2260' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:05:00 GMT + - Tue, 15 Mar 2022 14:53:06 GMT etag: - - W/"93cf5543-60a0-4cc7-a8e9-0c022b543336" + - W/"06387f46-382a-4556-a2f5-e9222bb2dfe8" expires: - '-1' pragma: @@ -445,10 +437,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 432f97f0-3bcc-4a1f-8089-44a4f404c4b2 + - f2e39a41-a951-44f8-a0b8-3942867b54e6 status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -461,31 +453,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T11%3A05%3A08.9848163Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:05:05.0608020Z"},"properties":{"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''2022-03-15T14%3A53%3A14.3482489Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:53:10.1692474Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/902b2855-519e-4a1d-8a0c-69ce47a920e5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cf5b3227-3e9d-4a80-8e51-ec67306853b5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '419' + - '413' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:05:09 GMT + - Tue, 15 Mar 2022 14:53:15 GMT etag: - - W/"datetime'2022-01-07T11%3A05%3A08.9848163Z'" + - W/"datetime'2022-03-15T14%3A53%3A14.3482489Z'" expires: - '-1' pragma: @@ -497,7 +489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -517,21 +509,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/902b2855-519e-4a1d-8a0c-69ce47a920e5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cf5b3227-3e9d-4a80-8e51-ec67306853b5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/902b2855-519e-4a1d-8a0c-69ce47a920e5","name":"902b2855-519e-4a1d-8a0c-69ce47a920e5","status":"Succeeded","startTime":"2022-01-07T11:05:08.9902347Z","endTime":"2022-01-07T11:05:09.0202717Z","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/southcentralusstage/operationResults/cf5b3227-3e9d-4a80-8e51-ec67306853b5","name":"cf5b3227-3e9d-4a80-8e51-ec67306853b5","status":"Succeeded","startTime":"2022-03-15T14:53:14.360227Z","endTime":"2022-03-15T14:53:14.4052563Z","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: cache-control: - no-cache content-length: - - '531' + - '524' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:05:40 GMT + - Tue, 15 Mar 2022 14:53:45 GMT expires: - '-1' pragma: @@ -565,23 +557,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T11%3A05%3A09.0142952Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:05:05.0608020Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T14%3A53%3A14.3996846Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:53:10.1692474Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:05:40 GMT + - Tue, 15 Mar 2022 14:53:45 GMT etag: - - W/"datetime'2022-01-07T11%3A05%3A09.0142952Z'" + - W/"datetime'2022-03-15T14%3A53%3A14.3996846Z'" expires: - '-1' pragma: @@ -614,31 +606,31 @@ interactions: Connection: - keep-alive Content-Length: - - '96' + - '90' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T11%3A05%3A48.6074492Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:05:43.3463529Z"},"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''2022-03-15T14%3A53%3A53.7449986Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:53:49.8199124Z"},"properties":{"serviceLevel":"Standard","size":8796093022208,"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/southcentralusstage/operationResults/ed7743bf-ae65-4745-9a60-57117d8dfcff?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cdd536a7-35ae-4824-a6db-4e58fda2f5e2?api-version=2021-10-01 cache-control: - no-cache content-length: - - '583' + - '577' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:05:49 GMT + - Tue, 15 Mar 2022 14:53:54 GMT etag: - - W/"datetime'2022-01-07T11%3A05%3A48.6074492Z'" + - W/"datetime'2022-03-15T14%3A53%3A53.7449986Z'" expires: - '-1' pragma: @@ -670,21 +662,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed7743bf-ae65-4745-9a60-57117d8dfcff?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cdd536a7-35ae-4824-a6db-4e58fda2f5e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ed7743bf-ae65-4745-9a60-57117d8dfcff","name":"ed7743bf-ae65-4745-9a60-57117d8dfcff","status":"Succeeded","startTime":"2022-01-07T11:05:48.6122205Z","endTime":"2022-01-07T11:05:48.7132504Z","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/southcentralusstage/operationResults/cdd536a7-35ae-4824-a6db-4e58fda2f5e2","name":"cdd536a7-35ae-4824-a6db-4e58fda2f5e2","status":"Succeeded","startTime":"2022-03-15T14:53:53.7497816Z","endTime":"2022-03-15T14:53:54.1403886Z","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: cache-control: - no-cache content-length: - - '561' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:06:19 GMT + - Tue, 15 Mar 2022 14:54:24 GMT expires: - '-1' pragma: @@ -718,23 +710,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T11%3A05%3A48.7036475Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:05:43.3463529Z"},"properties":{"poolId":"c717100a-7392-3435-0ed0-8662eb5316b3","serviceLevel":"Standard","size":8796093022208,"qosType":"Auto","totalThroughputMibps":131.072,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T14%3A53%3A54.130263Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:53:49.8199124Z"},"properties":{"poolId":"c7156557-9709-4604-e77d-6d6da17f81f6","serviceLevel":"Standard","size":8796093022208,"qosType":"Auto","totalThroughputMibps":131.072,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '698' + - '691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:06:20 GMT + - Tue, 15 Mar 2022 14:54:24 GMT etag: - - W/"datetime'2022-01-07T11%3A05%3A48.7036475Z'" + - W/"datetime'2022-03-15T14%3A53%3A54.130263Z'" expires: - '-1' pragma: @@ -756,7 +748,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Standard", "usageThreshold": 214748364800, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + "serviceLevel": "Standard", "usageThreshold": 214748364800, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -767,32 +760,32 @@ interactions: Connection: - keep-alive Content-Length: - - '343' + - '369' 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 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A06%3A27.9938552Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:06:21.6770467Z"},"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''2022-03-15T14%3A54%3A29.526757Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:54:26.6726912Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 cache-control: - no-cache content-length: - - '815' + - '871' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:06:28 GMT + - Tue, 15 Mar 2022 14:54:30 GMT etag: - - W/"datetime'2022-01-07T11%3A06%3A27.9938552Z'" + - W/"datetime'2022-03-15T14%3A54%3A29.526757Z'" expires: - '-1' pragma: @@ -825,21 +818,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Creating","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Creating","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:06:58 GMT + - Tue, 15 Mar 2022 14:55:00 GMT expires: - '-1' pragma: @@ -848,10 +841,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -874,21 +863,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Creating","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Creating","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:07:29 GMT + - Tue, 15 Mar 2022 14:55:31 GMT expires: - '-1' pragma: @@ -897,10 +886,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -923,21 +908,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Creating","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Creating","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:07:59 GMT + - Tue, 15 Mar 2022 14:56:01 GMT expires: - '-1' pragma: @@ -946,10 +931,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -972,21 +953,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Creating","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Creating","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:08:29 GMT + - Tue, 15 Mar 2022 14:56:31 GMT expires: - '-1' pragma: @@ -995,10 +976,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1021,21 +998,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Creating","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Creating","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:08:59 GMT + - Tue, 15 Mar 2022 14:57:01 GMT expires: - '-1' pragma: @@ -1044,10 +1021,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1070,21 +1043,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Creating","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Creating","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:09:30 GMT + - Tue, 15 Mar 2022 14:57:31 GMT expires: - '-1' pragma: @@ -1093,10 +1066,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1119,21 +1088,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Creating","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Creating","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:10:01 GMT + - Tue, 15 Mar 2022 14:58:01 GMT expires: - '-1' pragma: @@ -1142,10 +1111,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1168,21 +1133,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Creating","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Creating","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:10:31 GMT + - Tue, 15 Mar 2022 14:58:31 GMT expires: - '-1' pragma: @@ -1191,10 +1156,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1217,21 +1178,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9caa1a11-8647-4a7e-88b4-e089f0095925","name":"9caa1a11-8647-4a7e-88b4-e089f0095925","status":"Succeeded","startTime":"2022-01-07T11:06:27.9956472Z","endTime":"2022-01-07T11:10:32.9460611Z","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/southcentralusstage/operationResults/a6486b21-e426-4804-a5a8-f720e19f619a","name":"a6486b21-e426-4804-a5a8-f720e19f619a","status":"Succeeded","startTime":"2022-03-15T14:54:29.5326364Z","endTime":"2022-03-15T14:58:33.5140782Z","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: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:11:02 GMT + - Tue, 15 Mar 2022 14:59:03 GMT expires: - '-1' pragma: @@ -1240,10 +1201,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1266,23 +1223,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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A10%3A32.9424386Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:06:21.6770467Z"},"properties":{"fileSystemId":"b20c5f06-2563-3913-7de6-9ca06107639e","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_ccad9f83","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b20c5f06-2563-3913-7de6-9ca06107639e","fileSystemId":"b20c5f06-2563-3913-7de6-9ca06107639e","ipAddress":"10.0.0.4"}],"throughputMibps":3.2,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A58%3A33.5122997Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:54:26.6726912Z"},"properties":{"fileSystemId":"f272dcab-983c-55c0-690d-d5d6455980fd","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_88aa870c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f272dcab-983c-55c0-690d-d5d6455980fd","fileSystemId":"f272dcab-983c-55c0-690d-d5d6455980fd","ipAddress":"10.0.0.4"}],"throughputMibps":3.2,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2049' + - '2076' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:11:02 GMT + - Tue, 15 Mar 2022 14:59:03 GMT etag: - - W/"datetime'2022-01-07T11%3A10%3A32.9424386Z'" + - W/"datetime'2022-03-15T14%3A58%3A33.5122997Z'" expires: - '-1' pragma: @@ -1291,10 +1248,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1317,23 +1270,23 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A10%3A32.9424386Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:06:21.6770467Z"},"properties":{"fileSystemId":"b20c5f06-2563-3913-7de6-9ca06107639e","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_ccad9f83","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b20c5f06-2563-3913-7de6-9ca06107639e","fileSystemId":"b20c5f06-2563-3913-7de6-9ca06107639e","ipAddress":"10.0.0.4"}],"throughputMibps":3.2,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A58%3A33.5122997Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:54:26.6726912Z"},"properties":{"fileSystemId":"f272dcab-983c-55c0-690d-d5d6455980fd","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_88aa870c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f272dcab-983c-55c0-690d-d5d6455980fd","fileSystemId":"f272dcab-983c-55c0-690d-d5d6455980fd","ipAddress":"10.0.0.4"}],"throughputMibps":3.2,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2049' + - '2076' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:11:03 GMT + - Tue, 15 Mar 2022 14:59:04 GMT etag: - - W/"datetime'2022-01-07T11%3A10%3A32.9424386Z'" + - W/"datetime'2022-03-15T14%3A58%3A33.5122997Z'" expires: - '-1' pragma: @@ -1380,29 +1333,29 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A11%3A04.9801548Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:06:21.6770467Z"},"properties":{"provisioningState":"Patching","fileSystemId":"b20c5f06-2563-3913-7de6-9ca06107639e","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_ccad9f83","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b20c5f06-2563-3913-7de6-9ca06107639e","fileSystemId":"b20c5f06-2563-3913-7de6-9ca06107639e","ipAddress":"10.0.0.4"}],"throughputMibps":3.2,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A59%3A06.0424051Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:54:26.6726912Z"},"properties":{"provisioningState":"Patching","fileSystemId":"f272dcab-983c-55c0-690d-d5d6455980fd","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_88aa870c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f272dcab-983c-55c0-690d-d5d6455980fd","fileSystemId":"f272dcab-983c-55c0-690d-d5d6455980fd","ipAddress":"10.0.0.4"}],"throughputMibps":3.2,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d6f57df-19ee-4027-b65d-7babb82f8e1c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b280042-137a-4606-9947-2186ace7cf3c?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2048' + - '2075' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:11:04 GMT + - Tue, 15 Mar 2022 14:59:05 GMT etag: - - W/"datetime'2022-01-07T11%3A11%3A04.9801548Z'" + - W/"datetime'2022-03-15T14%3A59%3A06.0424051Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d6f57df-19ee-4027-b65d-7babb82f8e1c?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b280042-137a-4606-9947-2186ace7cf3c?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1412,7 +1365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1433,21 +1386,21 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d6f57df-19ee-4027-b65d-7babb82f8e1c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9b280042-137a-4606-9947-2186ace7cf3c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d6f57df-19ee-4027-b65d-7babb82f8e1c","name":"5d6f57df-19ee-4027-b65d-7babb82f8e1c","status":"Succeeded","startTime":"2022-01-07T11:11:04.9839738Z","endTime":"2022-01-07T11:11:07.9325792Z","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/southcentralusstage/operationResults/9b280042-137a-4606-9947-2186ace7cf3c","name":"9b280042-137a-4606-9947-2186ace7cf3c","status":"Succeeded","startTime":"2022-03-15T14:59:06.0472275Z","endTime":"2022-03-15T14:59:08.7011136Z","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: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:11:35 GMT + - Tue, 15 Mar 2022 14:59:36 GMT expires: - '-1' pragma: @@ -1456,10 +1409,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1482,23 +1431,23 @@ interactions: - -g -a -p -v --allowed-clients --rule-index --unix-read-only --unix-read-write --cifs --nfsv3 --nfsv41 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T11%3A11%3A07.9274724Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:06:21.6770467Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"b20c5f06-2563-3913-7de6-9ca06107639e","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_ccad9f83","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"b20c5f06-2563-3913-7de6-9ca06107639e","fileSystemId":"b20c5f06-2563-3913-7de6-9ca06107639e","ipAddress":"10.0.0.4"}],"throughputMibps":3.2,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A59%3A08.6927631Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:54:26.6726912Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"f272dcab-983c-55c0-690d-d5d6455980fd","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},{"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_88aa870c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"f272dcab-983c-55c0-690d-d5d6455980fd","fileSystemId":"f272dcab-983c-55c0-690d-d5d6455980fd","ipAddress":"10.0.0.4"}],"throughputMibps":3.2,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2341' + - '2368' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:11:35 GMT + - Tue, 15 Mar 2022 14:59:36 GMT etag: - - W/"datetime'2022-01-07T11%3A11%3A07.9274724Z'" + - W/"datetime'2022-03-15T14%3A59%3A08.6927631Z'" expires: - '-1' pragma: @@ -1507,10 +1456,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 17c23debdd2..cccdb1253d4 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_perform_replication.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT 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=2021-05-01 response: body: 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/\\\"f457600f-8550-489e-8fda-e41115081cab\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a4acc1df-d250-4c3f-b6d9-eaa3709f09af\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:51:51.0193429Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:42:24.1582982Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"66bcea28-98ee-46dc-972b-c8b71e6129ba\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5d5b28da-321a-4f70-bd47-fe03db7547f0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3f5dc93f-460c-4e24-ad6b-50600a8d7873?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7779241d-0312-490c-b722-ef0cfe1fa723?api-version=2021-05-01 cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:51:57 GMT + - Tue, 15 Mar 2022 13:42:27 GMT expires: - '-1' pragma: @@ -58,110 +58,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8fdd7933-f34a-43db-a7e0-4bb01407b61a + - ee4165dc-f800-48a9-b399-1ef25f5fcf8c x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group -l --address-prefix - User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3f5dc93f-460c-4e24-ad6b-50600a8d7873?api-version=2021-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 09:52:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 932275b0-6499-4cd1-a390-9689d6cab465 - status: - code: 200 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group -l --address-prefix - User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3f5dc93f-460c-4e24-ad6b-50600a8d7873?api-version=2021-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 09:52:11 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: - - 99b9249c-8775-4d0d-bd42-6ec7e761e9af - status: - code: 200 - message: '' + message: Created - request: body: null headers: @@ -176,9 +78,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3f5dc93f-460c-4e24-ad6b-50600a8d7873?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7779241d-0312-490c-b722-ef0cfe1fa723?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -190,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:52:31 GMT + - Tue, 15 Mar 2022 13:42:30 GMT expires: - '-1' pragma: @@ -207,10 +109,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05428737-f659-4cbf-87cd-926704525468 + - ccb7cf50-4f0b-4c8d-aa88-3c25528de8fa status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -225,17 +127,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET 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=2021-05-01 response: body: 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/\\\"9630a4fa-7351-420b-88c7-58c90d98b01e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9e247054-60c7-4e9e-9a0d-743a1e48b6b7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:51:51.0193429Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:42:24.1582982Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"66bcea28-98ee-46dc-972b-c8b71e6129ba\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5d5b28da-321a-4f70-bd47-fe03db7547f0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -244,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '777' + - '771' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:52:31 GMT + - Tue, 15 Mar 2022 13:42:31 GMT etag: - - W/"9630a4fa-7351-420b-88c7-58c90d98b01e" + - W/"9e247054-60c7-4e9e-9a0d-743a1e48b6b7" expires: - '-1' pragma: @@ -267,10 +169,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73f7ddd4-521c-4c11-8295-dd9243cb7e2f + - 0199a969-3b6b-4405-b044-7369b647288b status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -285,17 +187,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET 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=2021-05-01 response: body: 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/\\\"9630a4fa-7351-420b-88c7-58c90d98b01e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9e247054-60c7-4e9e-9a0d-743a1e48b6b7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:51:51.0193429Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:42:24.1582982Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"66bcea28-98ee-46dc-972b-c8b71e6129ba\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5d5b28da-321a-4f70-bd47-fe03db7547f0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -304,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '777' + - '771' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:52:32 GMT + - Tue, 15 Mar 2022 13:42:31 GMT etag: - - W/"9630a4fa-7351-420b-88c7-58c90d98b01e" + - W/"9e247054-60c7-4e9e-9a0d-743a1e48b6b7" expires: - '-1' pragma: @@ -327,13 +229,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2a414ad2-7de9-4578-a043-97b25eb6f922 + - 8adffdb1-91be-49d4-a166-340ae903fcc2 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T09:51:51.0193429Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T13:42:24.1582982Z"}, "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", "properties": @@ -350,33 +252,33 @@ interactions: Connection: - keep-alive Content-Length: - - '702' + - '696' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT 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=2021-05-01 response: body: 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/\\\"de1d9af9-c0d7-4bfd-9b66-abec2a48c77d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f3e331c9-7e2a-4a23-a9fe-5c0a81919c46\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:51:51.0193429Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:42:24.1582982Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"66bcea28-98ee-46dc-972b-c8b71e6129ba\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5d5b28da-321a-4f70-bd47-fe03db7547f0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\",\r\n - \ \"etag\": \"W/\\\"de1d9af9-c0d7-4bfd-9b66-abec2a48c77d\\\"\",\r\n + \ \"etag\": \"W/\\\"f3e331c9-7e2a-4a23-a9fe-5c0a81919c46\\\"\",\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_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\",\r\n - \ \"etag\": \"W/\\\"de1d9af9-c0d7-4bfd-9b66-abec2a48c77d\\\"\",\r\n + \ \"etag\": \"W/\\\"f3e331c9-7e2a-4a23-a9fe-5c0a81919c46\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -391,15 +293,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/007b6258-ece2-42e1-8b16-7acae99b4cd1?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/ad3221cd-2ac8-40d2-95e4-887bf7ced504?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2267' + - '2261' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:52:33 GMT + - Tue, 15 Mar 2022 13:42:33 GMT expires: - '-1' pragma: @@ -416,12 +318,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4a5880bd-fa86-42ad-8bac-95a59ea1a18f + - 74f6506e-a30e-4cf4-9c91-56566b85355f x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -436,9 +338,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/007b6258-ece2-42e1-8b16-7acae99b4cd1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/ad3221cd-2ac8-40d2-95e4-887bf7ced504?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -450,7 +352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:52:36 GMT + - Tue, 15 Mar 2022 13:42:36 GMT expires: - '-1' pragma: @@ -467,10 +369,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - af7b6bf9-55fe-42cc-8d50-fe2deed7ab26 + - 923edd29-d1d5-4a91-8462-8b6e71d02706 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -485,27 +387,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET 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=2021-05-01 response: body: 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/\\\"83328fc6-6f45-42eb-ade4-906fa026dd3e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"787b1905-28c3-4a87-924a-ec83da6640c1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:51:51.0193429Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:42:24.1582982Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"66bcea28-98ee-46dc-972b-c8b71e6129ba\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5d5b28da-321a-4f70-bd47-fe03db7547f0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010\",\r\n - \ \"etag\": \"W/\\\"83328fc6-6f45-42eb-ade4-906fa026dd3e\\\"\",\r\n + \ \"etag\": \"W/\\\"787b1905-28c3-4a87-924a-ec83da6640c1\\\"\",\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_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010/delegations/0\",\r\n - \ \"etag\": \"W/\\\"83328fc6-6f45-42eb-ade4-906fa026dd3e\\\"\",\r\n + \ \"etag\": \"W/\\\"787b1905-28c3-4a87-924a-ec83da6640c1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -520,13 +422,13 @@ interactions: cache-control: - no-cache content-length: - - '2269' + - '2263' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:52:36 GMT + - Tue, 15 Mar 2022 13:42:36 GMT etag: - - W/"83328fc6-6f45-42eb-ade4-906fa026dd3e" + - W/"787b1905-28c3-4a87-924a-ec83da6640c1" expires: - '-1' pragma: @@ -543,10 +445,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b85c63cd-a92c-4db8-bfa5-9fdb7672197d + - a32d76f0-cd2d-4954-8c94-d3f4e4ce10e1 status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -559,31 +461,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - 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=2021-08-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=2021-10-01 response: body: - 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''2022-01-07T09%3A52%3A42.1629701Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:52:38.3405439Z"},"properties":{"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''2022-03-15T13%3A42%3A43.5752892Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:42:38.4353466Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ea57b38-fa09-4651-9fa3-f4645a839c66?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c0a015-10fa-4d17-8394-efc7b696038d?api-version=2021-10-01 cache-control: - no-cache content-length: - - '420' + - '414' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:52:42 GMT + - Tue, 15 Mar 2022 13:42:44 GMT etag: - - W/"datetime'2022-01-07T09%3A52%3A42.1629701Z'" + - W/"datetime'2022-03-15T13%3A42%3A43.5752892Z'" expires: - '-1' pragma: @@ -595,7 +497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-powered-by: - ASP.NET status: @@ -615,21 +517,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ea57b38-fa09-4651-9fa3-f4645a839c66?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c0a015-10fa-4d17-8394-efc7b696038d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0ea57b38-fa09-4651-9fa3-f4645a839c66","name":"0ea57b38-fa09-4651-9fa3-f4645a839c66","status":"Succeeded","startTime":"2022-01-07T09:52:42.1686681Z","endTime":"2022-01-07T09:52:42.2137304Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000003"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c4c0a015-10fa-4d17-8394-efc7b696038d","name":"c4c0a015-10fa-4d17-8394-efc7b696038d","status":"Succeeded","startTime":"2022-03-15T13:42:43.5914799Z","endTime":"2022-03-15T13:42:43.6264808Z","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: cache-control: - no-cache content-length: - - '532' + - '526' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:53:12 GMT + - Tue, 15 Mar 2022 13:43:15 GMT expires: - '-1' pragma: @@ -638,10 +540,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -663,23 +561,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - 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''2022-01-07T09%3A52%3A42.2089902Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:52:38.3405439Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + 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''2022-03-15T13%3A42%3A43.6173962Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:42:38.4353466Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '467' + - '461' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:53:13 GMT + - Tue, 15 Mar 2022 13:43:15 GMT etag: - - W/"datetime'2022-01-07T09%3A52%3A42.2089902Z'" + - W/"datetime'2022-03-15T13%3A42%3A43.6173962Z'" expires: - '-1' pragma: @@ -688,10 +586,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -712,31 +606,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - 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=2021-08-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=2021-10-01 response: body: - 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''2022-01-07T09%3A53%3A21.3936008Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:53:15.5175386Z"},"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''2022-03-15T13%3A43%3A22.7061332Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:43:17.8912251Z"},"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/southcentralusstage/operationResults/191b87fb-10a9-4c57-96aa-444d2f80232a?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bf3886e7-6bdc-4984-825e-5212ceec4279?api-version=2021-10-01 cache-control: - no-cache content-length: - - '583' + - '577' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:53:22 GMT + - Tue, 15 Mar 2022 13:43:23 GMT etag: - - W/"datetime'2022-01-07T09%3A53%3A21.3936008Z'" + - W/"datetime'2022-03-15T13%3A43%3A22.7061332Z'" expires: - '-1' pragma: @@ -768,21 +662,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/191b87fb-10a9-4c57-96aa-444d2f80232a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bf3886e7-6bdc-4984-825e-5212ceec4279?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/191b87fb-10a9-4c57-96aa-444d2f80232a","name":"191b87fb-10a9-4c57-96aa-444d2f80232a","status":"Succeeded","startTime":"2022-01-07T09:53:21.3997466Z","endTime":"2022-01-07T09:53:21.5697512Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/bf3886e7-6bdc-4984-825e-5212ceec4279","name":"bf3886e7-6bdc-4984-825e-5212ceec4279","status":"Succeeded","startTime":"2022-03-15T13:43:22.7123243Z","endTime":"2022-03-15T13:43:24.016233Z","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: cache-control: - no-cache content-length: - - '562' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:53:52 GMT + - Tue, 15 Mar 2022 13:43:53 GMT expires: - '-1' pragma: @@ -791,10 +685,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -816,23 +706,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - 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''2022-01-07T09%3A53%3A21.5565593Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:53:15.5175386Z"},"properties":{"poolId":"c947eb8f-4908-6660-6fa7-3e25da94a5f9","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T13%3A43%3A24.0032368Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:43:17.8912251Z"},"properties":{"poolId":"b62ac73a-c9bd-c501-9752-617333d67401","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '698' + - '692' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:53:52 GMT + - Tue, 15 Mar 2022 13:43:54 GMT etag: - - W/"datetime'2022-01-07T09%3A53%3A21.5565593Z'" + - W/"datetime'2022-03-15T13%3A43%3A24.0032368Z'" expires: - '-1' pragma: @@ -841,10 +731,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -854,7 +740,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000007", - "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"}}' + "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -865,32 +752,32 @@ interactions: Connection: - keep-alive Content-Length: - - '343' + - '369' 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 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - 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=2021-08-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=2021-10-01 response: body: - 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''2022-01-07T09%3A53%3A59.5517977Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:53:54.3165009Z"},"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"}}' + 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''2022-03-15T13%3A44%3A00.2478389Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:43:56.6907189Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 cache-control: - no-cache content-length: - - '816' + - '873' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:54:00 GMT + - Tue, 15 Mar 2022 13:44:01 GMT etag: - - W/"datetime'2022-01-07T09%3A53%3A59.5517977Z'" + - W/"datetime'2022-03-15T13%3A44%3A00.2478389Z'" expires: - '-1' pragma: @@ -902,7 +789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -923,21 +810,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6","name":"2912d077-bc5b-4a18-93b6-f78cefcaa9e6","status":"Creating","startTime":"2022-01-07T09:53:59.5572971Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198","name":"6c4b964e-4904-45de-a1d7-3ee87a280198","status":"Creating","startTime":"2022-03-15T13:44:00.2554985Z","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: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:54:30 GMT + - Tue, 15 Mar 2022 13:44:31 GMT expires: - '-1' pragma: @@ -972,21 +859,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6","name":"2912d077-bc5b-4a18-93b6-f78cefcaa9e6","status":"Creating","startTime":"2022-01-07T09:53:59.5572971Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198","name":"6c4b964e-4904-45de-a1d7-3ee87a280198","status":"Creating","startTime":"2022-03-15T13:44:00.2554985Z","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: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:55:01 GMT + - Tue, 15 Mar 2022 13:45:01 GMT expires: - '-1' pragma: @@ -1021,21 +908,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6","name":"2912d077-bc5b-4a18-93b6-f78cefcaa9e6","status":"Creating","startTime":"2022-01-07T09:53:59.5572971Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198","name":"6c4b964e-4904-45de-a1d7-3ee87a280198","status":"Creating","startTime":"2022-03-15T13:44:00.2554985Z","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: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:55:31 GMT + - Tue, 15 Mar 2022 13:45:31 GMT expires: - '-1' pragma: @@ -1070,21 +957,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6","name":"2912d077-bc5b-4a18-93b6-f78cefcaa9e6","status":"Creating","startTime":"2022-01-07T09:53:59.5572971Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198","name":"6c4b964e-4904-45de-a1d7-3ee87a280198","status":"Creating","startTime":"2022-03-15T13:44:00.2554985Z","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: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:56:01 GMT + - Tue, 15 Mar 2022 13:46:02 GMT expires: - '-1' pragma: @@ -1119,21 +1006,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6","name":"2912d077-bc5b-4a18-93b6-f78cefcaa9e6","status":"Creating","startTime":"2022-01-07T09:53:59.5572971Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198","name":"6c4b964e-4904-45de-a1d7-3ee87a280198","status":"Creating","startTime":"2022-03-15T13:44:00.2554985Z","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: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:56:31 GMT + - Tue, 15 Mar 2022 13:46:32 GMT expires: - '-1' pragma: @@ -1168,21 +1055,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6","name":"2912d077-bc5b-4a18-93b6-f78cefcaa9e6","status":"Creating","startTime":"2022-01-07T09:53:59.5572971Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198","name":"6c4b964e-4904-45de-a1d7-3ee87a280198","status":"Creating","startTime":"2022-03-15T13:44:00.2554985Z","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: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:57:01 GMT + - Tue, 15 Mar 2022 13:47:02 GMT expires: - '-1' pragma: @@ -1217,21 +1104,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6","name":"2912d077-bc5b-4a18-93b6-f78cefcaa9e6","status":"Creating","startTime":"2022-01-07T09:53:59.5572971Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198","name":"6c4b964e-4904-45de-a1d7-3ee87a280198","status":"Creating","startTime":"2022-03-15T13:44:00.2554985Z","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: cache-control: - no-cache content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:57:32 GMT + - Tue, 15 Mar 2022 13:47:32 GMT expires: - '-1' pragma: @@ -1266,21 +1153,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2912d077-bc5b-4a18-93b6-f78cefcaa9e6","name":"2912d077-bc5b-4a18-93b6-f78cefcaa9e6","status":"Succeeded","startTime":"2022-01-07T09:53:59.5572971Z","endTime":"2022-01-07T09:57:36.395478Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6c4b964e-4904-45de-a1d7-3ee87a280198","name":"6c4b964e-4904-45de-a1d7-3ee87a280198","status":"Succeeded","startTime":"2022-03-15T13:44:00.2554985Z","endTime":"2022-03-15T13:47:55.8951718Z","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: cache-control: - no-cache content-length: - - '584' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:02 GMT + - Tue, 15 Mar 2022 13:48:03 GMT expires: - '-1' pragma: @@ -1315,23 +1202,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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - 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''2022-01-07T09%3A57%3A36.3912019Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:53:54.3165009Z"},"properties":{"fileSystemId":"00347ceb-237c-69cd-88c3-c635cabf6d2c","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_eefdfd98","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"00347ceb-237c-69cd-88c3-c635cabf6d2c","fileSystemId":"00347ceb-237c-69cd-88c3-c635cabf6d2c","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T13%3A47%3A55.8797626Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:43:56.6907189Z"},"properties":{"fileSystemId":"45d13bf3-d721-919c-5f40-62c505c8de1d","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6251686d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"45d13bf3-d721-919c-5f40-62c505c8de1d","fileSystemId":"45d13bf3-d721-919c-5f40-62c505c8de1d","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2050' + - '2077' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:02 GMT + - Tue, 15 Mar 2022 13:48:03 GMT etag: - - W/"datetime'2022-01-07T09%3A57%3A36.3912019Z'" + - W/"datetime'2022-03-15T13%3A47%3A55.8797626Z'" expires: - '-1' pragma: @@ -1352,8 +1239,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.1.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "eastus2euap", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.1.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -1364,23 +1251,23 @@ interactions: Connection: - keep-alive Content-Length: - - '128' + - '126' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT 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=2021-05-01 response: body: 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/\\\"21531a96-fa10-4f87-a11e-ea1ec647b4b8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9a81894d-8890-4310-bb6c-50ccee19905a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:58:03.8878561Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:48:05.7293484Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c4b8b814-a533-49c2-ad31-55a311c39660\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"652581e2-504b-4ac2-9379-0a14f53c3e0f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -1389,15 +1276,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/293951dd-4dda-4e73-bd5c-5552ec74f6d1?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/e3731d71-3ff3-419b-a50a-f81865cf203d?api-version=2021-05-01 cache-control: - no-cache content-length: - - '774' + - '772' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:09 GMT + - Tue, 15 Mar 2022 13:48:12 GMT expires: - '-1' pragma: @@ -1410,9 +1297,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f830f98-6edc-435e-9352-52c916a782cc + - 113a1e66-1599-4af6-a750-2cf539536316 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1430,9 +1317,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/293951dd-4dda-4e73-bd5c-5552ec74f6d1?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/e3731d71-3ff3-419b-a50a-f81865cf203d?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1444,7 +1331,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:13 GMT + - Tue, 15 Mar 2022 13:48:15 GMT expires: - '-1' pragma: @@ -1454,14 +1341,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a0b16fe8-5004-48f5-9494-44a205ba1281 + - 50ec1125-a0ef-4617-a88d-50cfc53d4f28 status: code: 200 message: OK @@ -1479,17 +1362,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET 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=2021-05-01 response: body: 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/\\\"d04f9b18-e594-4a22-b9f8-2a3456591eba\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"20027e9d-fc59-478b-b742-1348ecf36e66\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:58:03.8878561Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:48:05.7293484Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c4b8b814-a533-49c2-ad31-55a311c39660\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"652581e2-504b-4ac2-9379-0a14f53c3e0f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -1498,13 +1381,13 @@ interactions: cache-control: - no-cache content-length: - - '775' + - '773' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:13 GMT + - Tue, 15 Mar 2022 13:48:16 GMT etag: - - W/"d04f9b18-e594-4a22-b9f8-2a3456591eba" + - W/"20027e9d-fc59-478b-b742-1348ecf36e66" expires: - '-1' pragma: @@ -1514,14 +1397,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a627327-9dde-4c3d-a88c-35a7eb6ebf59 + - cdd0cce7-18ae-4865-888e-3c95a04f2a93 status: code: 200 message: OK @@ -1539,17 +1418,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET 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=2021-05-01 response: body: 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/\\\"d04f9b18-e594-4a22-b9f8-2a3456591eba\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"20027e9d-fc59-478b-b742-1348ecf36e66\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:58:03.8878561Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:48:05.7293484Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c4b8b814-a533-49c2-ad31-55a311c39660\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"652581e2-504b-4ac2-9379-0a14f53c3e0f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": @@ -1558,13 +1437,13 @@ interactions: cache-control: - no-cache content-length: - - '775' + - '773' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:14 GMT + - Tue, 15 Mar 2022 13:48:16 GMT etag: - - W/"d04f9b18-e594-4a22-b9f8-2a3456591eba" + - W/"20027e9d-fc59-478b-b742-1348ecf36e66" expires: - '-1' pragma: @@ -1574,20 +1453,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 92bb241f-8e7a-4807-bae7-3cef4e811325 + - 176d80b7-836d-43c5-a545-5ebf586ef192 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011", - "location": "eastus2euap", "tags": {"CreatedOnDate": "2022-01-07T09:58:03.8878561Z"}, + "location": "eastus2euap", "tags": {"CreatedOnDate": "2022-03-15T13:48:05.7293484Z"}, "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", "properties": @@ -1604,33 +1479,33 @@ interactions: Connection: - keep-alive Content-Length: - - '700' + - '698' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT 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=2021-05-01 response: body: 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/\\\"bb8b7bd4-8a05-4121-88c9-b52ae0d74595\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4d9790b0-549d-4519-91d6-33676a76cfeb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:58:03.8878561Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:48:05.7293484Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c4b8b814-a533-49c2-ad31-55a311c39660\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"652581e2-504b-4ac2-9379-0a14f53c3e0f\",\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_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\",\r\n - \ \"etag\": \"W/\\\"bb8b7bd4-8a05-4121-88c9-b52ae0d74595\\\"\",\r\n + \ \"etag\": \"W/\\\"4d9790b0-549d-4519-91d6-33676a76cfeb\\\"\",\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_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\",\r\n - \ \"etag\": \"W/\\\"bb8b7bd4-8a05-4121-88c9-b52ae0d74595\\\"\",\r\n + \ \"etag\": \"W/\\\"4d9790b0-549d-4519-91d6-33676a76cfeb\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -1645,15 +1520,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/33fd46dc-c5ff-4b4b-874b-1cfd9d21bb3a?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/22e533b4-e68a-4969-9839-b391c16ec334?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2265' + - '2263' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:15 GMT + - Tue, 15 Mar 2022 13:48:18 GMT expires: - '-1' pragma: @@ -1663,14 +1538,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f062e37f-ce5c-4925-b0d3-400b4be958b2 + - 539ae6b2-76c6-4b55-a05b-a0495c11f278 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1690,9 +1561,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/33fd46dc-c5ff-4b4b-874b-1cfd9d21bb3a?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/22e533b4-e68a-4969-9839-b391c16ec334?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1704,7 +1575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:19 GMT + - Tue, 15 Mar 2022 13:48:21 GMT expires: - '-1' pragma: @@ -1714,14 +1585,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 09d038e9-7d23-4525-84d2-9269de152c05 + - 2dcece8d-c0fc-4ac8-8862-f066c45a55c1 status: code: 200 message: OK @@ -1739,27 +1606,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET 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=2021-05-01 response: body: 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/\\\"643658de-24e5-43eb-9214-b4edfea1de79\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4e833841-fecd-43ce-8b24-c942f115f8e8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:58:03.8878561Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T13:48:05.7293484Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c4b8b814-a533-49c2-ad31-55a311c39660\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"652581e2-504b-4ac2-9379-0a14f53c3e0f\",\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_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012\",\r\n - \ \"etag\": \"W/\\\"643658de-24e5-43eb-9214-b4edfea1de79\\\"\",\r\n + \ \"etag\": \"W/\\\"4e833841-fecd-43ce-8b24-c942f115f8e8\\\"\",\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_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012/delegations/0\",\r\n - \ \"etag\": \"W/\\\"643658de-24e5-43eb-9214-b4edfea1de79\\\"\",\r\n + \ \"etag\": \"W/\\\"4e833841-fecd-43ce-8b24-c942f115f8e8\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -1774,13 +1641,13 @@ interactions: cache-control: - no-cache content-length: - - '2267' + - '2265' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:19 GMT + - Tue, 15 Mar 2022 13:48:21 GMT etag: - - W/"643658de-24e5-43eb-9214-b4edfea1de79" + - W/"4e833841-fecd-43ce-8b24-c942f115f8e8" expires: - '-1' pragma: @@ -1790,14 +1657,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7f818a3f-6dca-471f-a711-9b2b8054d062 + - 06ec46ee-fa3f-41ee-8960-ac3ce9276207 status: code: 200 message: OK @@ -1813,31 +1676,31 @@ interactions: Connection: - keep-alive Content-Length: - - '27' + - '25' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - 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=2021-08-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=2021-10-01 response: body: - 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''2022-01-07T09%3A58%3A26.0091463Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:58:20.7322796Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:58:25.4169743Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:58:25.4169743Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T13%3A48%3A28.4740968Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:48:24.1963853Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/183d61e4-f5d9-4e47-aab4-49c2e1cd1052?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6254d008-7886-409d-9295-3985e420cffe?api-version=2021-10-01 cache-control: - no-cache content-length: - - '696' + - '416' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:27 GMT + - Tue, 15 Mar 2022 13:48:29 GMT etag: - - W/"datetime'2022-01-07T09%3A58%3A26.0091463Z'" + - W/"datetime'2022-03-15T13%3A48%3A28.4740968Z'" expires: - '-1' pragma: @@ -1849,7 +1712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1869,21 +1732,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/183d61e4-f5d9-4e47-aab4-49c2e1cd1052?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6254d008-7886-409d-9295-3985e420cffe?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/183d61e4-f5d9-4e47-aab4-49c2e1cd1052","name":"183d61e4-f5d9-4e47-aab4-49c2e1cd1052","status":"Succeeded","startTime":"2022-01-07T09:58:26.0145743Z","endTime":"2022-01-07T09:58:26.0695899Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/6254d008-7886-409d-9295-3985e420cffe","name":"6254d008-7886-409d-9295-3985e420cffe","status":"Succeeded","startTime":"2022-03-15T13:48:28.4780281Z","endTime":"2022-03-15T13:48:28.5231128Z","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: cache-control: - no-cache content-length: - - '530' + - '528' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:57 GMT + - Tue, 15 Mar 2022 13:49:00 GMT expires: - '-1' pragma: @@ -1917,23 +1780,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - 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''2022-01-07T09%3A58%3A26.0628489Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:58:20.7322796Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"07f0c290-65d4-f42b-f996-3adf389c0b0e","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.12.3.4","status":"Created","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:58:25.4169743Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:58:25.4169743Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T13%3A48%3A28.5158639Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:48:24.1963853Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1126' + - '463' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:58:57 GMT + - Tue, 15 Mar 2022 13:49:00 GMT etag: - - W/"datetime'2022-01-07T09%3A58%3A26.0628489Z'" + - W/"datetime'2022-03-15T13%3A48%3A28.5158639Z'" expires: - '-1' pragma: @@ -1966,31 +1829,31 @@ interactions: Connection: - keep-alive Content-Length: - - '93' + - '91' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - 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=2021-08-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=2021-10-01 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","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T09%3A59%3A05.2438079Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:58:59.1912423Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:59:04.5160769Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:59:04.5160769Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T13%3A49%3A06.8628461Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:49:02.3742433Z"},"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/fbb9e04f-b089-4494-9796-70cc3e83d4d7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a8ed59c1-5baf-4180-a8c8-088d0435ac0d?api-version=2021-10-01 cache-control: - no-cache content-length: - - '859' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:59:05 GMT + - Tue, 15 Mar 2022 13:49:08 GMT etag: - - W/"datetime'2022-01-07T09%3A59%3A05.2438079Z'" + - W/"datetime'2022-03-15T13%3A49%3A06.8628461Z'" expires: - '-1' pragma: @@ -2022,21 +1885,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fbb9e04f-b089-4494-9796-70cc3e83d4d7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a8ed59c1-5baf-4180-a8c8-088d0435ac0d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/fbb9e04f-b089-4494-9796-70cc3e83d4d7","name":"fbb9e04f-b089-4494-9796-70cc3e83d4d7","status":"Succeeded","startTime":"2022-01-07T09:59:05.2407766Z","endTime":"2022-01-07T09:59:05.4560146Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a8ed59c1-5baf-4180-a8c8-088d0435ac0d","name":"a8ed59c1-5baf-4180-a8c8-088d0435ac0d","status":"Succeeded","startTime":"2022-03-15T13:49:06.8722766Z","endTime":"2022-03-15T13:49:07.3382327Z","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: cache-control: - no-cache content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:59:36 GMT + - Tue, 15 Mar 2022 13:49:38 GMT expires: - '-1' pragma: @@ -2045,10 +1908,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2070,23 +1929,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 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","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T09%3A59%3A05.4453996Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:58:59.1912423Z"},"properties":{"poolId":"b3680e39-2b57-cc76-e6b7-e5f30a0d6b14","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":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","name":"cli-acc-000004/cli-pool-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-15T13%3A49%3A07.2796857Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:49:02.3742433Z"},"properties":{"poolId":"30cf15c1-7c23-98fc-93c6-ed60173354fc","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '696' + - '694' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:59:36 GMT + - Tue, 15 Mar 2022 13:49:38 GMT etag: - - W/"datetime'2022-01-07T09%3A59%3A05.4453996Z'" + - W/"datetime'2022-03-15T13%3A49%3A07.2796857Z'" expires: - '-1' pragma: @@ -2095,10 +1954,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2110,7 +1965,8 @@ interactions: body: '{"location": "eastus2euap", "properties": {"creationToken": "cli-vol-000008", "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_netappfiles_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"}}, + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -2121,7 +1977,7 @@ interactions: Connection: - keep-alive Content-Length: - - '713' + - '743' Content-Type: - application/json ParameterSetName: @@ -2129,25 +1985,25 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: PUT - 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=2021-08-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=2021-10-01 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''2022-01-07T09%3A59%3A44.3034303Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:59:38.4097312Z"},"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"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:59:43.4462301Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:59:43.4462301Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T13%3A49%3A47.4146676Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:49:41.2900714Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1454' + - '1237' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:59:45 GMT + - Tue, 15 Mar 2022 13:49:48 GMT etag: - - W/"datetime'2022-01-07T09%3A59%3A44.3034303Z'" + - W/"datetime'2022-03-15T13%3A49%3A47.4146676Z'" expires: - '-1' pragma: @@ -2181,21 +2037,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","name":"2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","status":"Creating","startTime":"2022-01-07T09:59:44.3139433Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732","name":"9d988c99-e538-48d2-a739-36f579d18732","status":"Creating","startTime":"2022-03-15T13:49:47.4235022Z","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: cache-control: - no-cache content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:00:15 GMT + - Tue, 15 Mar 2022 13:50:18 GMT expires: - '-1' pragma: @@ -2231,21 +2087,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","name":"2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","status":"Creating","startTime":"2022-01-07T09:59:44.3139433Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732","name":"9d988c99-e538-48d2-a739-36f579d18732","status":"Creating","startTime":"2022-03-15T13:49:47.4235022Z","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: cache-control: - no-cache content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:00:45 GMT + - Tue, 15 Mar 2022 13:50:48 GMT expires: - '-1' pragma: @@ -2281,21 +2137,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","name":"2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","status":"Creating","startTime":"2022-01-07T09:59:44.3139433Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732","name":"9d988c99-e538-48d2-a739-36f579d18732","status":"Creating","startTime":"2022-03-15T13:49:47.4235022Z","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: cache-control: - no-cache content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:01:15 GMT + - Tue, 15 Mar 2022 13:51:18 GMT expires: - '-1' pragma: @@ -2331,21 +2187,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","name":"2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","status":"Creating","startTime":"2022-01-07T09:59:44.3139433Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732","name":"9d988c99-e538-48d2-a739-36f579d18732","status":"Creating","startTime":"2022-03-15T13:49:47.4235022Z","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: cache-control: - no-cache content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:01:45 GMT + - Tue, 15 Mar 2022 13:52:30 GMT expires: - '-1' pragma: @@ -2354,10 +2210,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2381,21 +2233,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","name":"2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","status":"Creating","startTime":"2022-01-07T09:59:44.3139433Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732","name":"9d988c99-e538-48d2-a739-36f579d18732","status":"Creating","startTime":"2022-03-15T13:49:47.4235022Z","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: cache-control: - no-cache content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:02:16 GMT + - Tue, 15 Mar 2022 13:53:00 GMT expires: - '-1' pragma: @@ -2404,10 +2256,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2431,21 +2279,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","name":"2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","status":"Creating","startTime":"2022-01-07T09:59:44.3139433Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732","name":"9d988c99-e538-48d2-a739-36f579d18732","status":"Creating","startTime":"2022-03-15T13:49:47.4235022Z","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: cache-control: - no-cache content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:02:46 GMT + - Tue, 15 Mar 2022 13:53:31 GMT expires: - '-1' pragma: @@ -2454,10 +2302,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2481,71 +2325,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","name":"2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","status":"Creating","startTime":"2022-01-07T09:59:44.3139433Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9d988c99-e538-48d2-a739-36f579d18732","name":"9d988c99-e538-48d2-a739-36f579d18732","status":"Succeeded","startTime":"2022-03-15T13:49:47.4235022Z","endTime":"2022-03-15T13:53:40.3485735Z","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: cache-control: - no-cache content-length: - - '572' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 10:03:17 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: - - --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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","name":"2cbc0c18-5550-4d6d-9c8c-1b91a624e31f","status":"Succeeded","startTime":"2022-01-07T09:59:44.3139433Z","endTime":"2022-01-07T10:03:43.1013605Z","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: - cache-control: - - no-cache - content-length: - - '583' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:03:47 GMT + - Tue, 15 Mar 2022 13:54:02 GMT expires: - '-1' pragma: @@ -2554,10 +2348,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2581,23 +2371,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --volume-type --endpoint-type --replication-schedule --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 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''2022-01-07T10%3A03%3A43.0853216Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:59:38.4097312Z"},"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"}},"fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","serviceLevel":"Premium","creationToken":"cli-vol-000008","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"nfsv3":true,"nfsv41":false,"allowedClients":"0.0.0.0/0","kerberos5ReadOnly":false,"kerberos5ReadWrite":false,"kerberos5iReadOnly":false,"kerberos5iReadWrite":false,"kerberos5pReadOnly":false,"kerberos5pReadWrite":false,"hasRootAccess":true,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"coolAccess":false,"avsDataStore":"Disabled","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''2022-03-15T13%3A53%3A40.3414328Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:49:41.2900714Z"},"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"}},"fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"coolAccess":false,"avsDataStore":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2121' + - '2165' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:03:47 GMT + - Tue, 15 Mar 2022 13:54:02 GMT etag: - - W/"datetime'2022-01-07T10%3A03%3A43.0853216Z'" + - W/"datetime'2022-03-15T13%3A53%3A40.3414328Z'" expires: - '-1' pragma: @@ -2606,10 +2396,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2635,25 +2421,25 @@ interactions: ParameterSetName: - -g -a -p -v --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000003/capacityPools/cli-pool-000005/volumes/cli-vol-000007/authorizeReplication?api-version=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9804eb6e-c9be-48ab-a1c9-88b5d92dbb25?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1eb453eb-ad21-4536-b74e-4cb77662a9b2?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 10:05:19 GMT + - Tue, 15 Mar 2022 13:55:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9804eb6e-c9be-48ab-a1c9-88b5d92dbb25?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1eb453eb-ad21-4536-b74e-4cb77662a9b2?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2683,21 +2469,21 @@ interactions: ParameterSetName: - -g -a -p -v --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9804eb6e-c9be-48ab-a1c9-88b5d92dbb25?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1eb453eb-ad21-4536-b74e-4cb77662a9b2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9804eb6e-c9be-48ab-a1c9-88b5d92dbb25","name":"9804eb6e-c9be-48ab-a1c9-88b5d92dbb25","status":"AuthorizeReplication","startTime":"2022-01-07T10:05:19.4051813Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1eb453eb-ad21-4536-b74e-4cb77662a9b2","name":"1eb453eb-ad21-4536-b74e-4cb77662a9b2","status":"AuthorizeReplication","startTime":"2022-03-15T13:55:33.6063601Z","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: cache-control: - no-cache content-length: - - '586' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:05:49 GMT + - Tue, 15 Mar 2022 13:56:03 GMT expires: - '-1' pragma: @@ -2731,21 +2517,21 @@ interactions: ParameterSetName: - -g -a -p -v --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9804eb6e-c9be-48ab-a1c9-88b5d92dbb25?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1eb453eb-ad21-4536-b74e-4cb77662a9b2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9804eb6e-c9be-48ab-a1c9-88b5d92dbb25","name":"9804eb6e-c9be-48ab-a1c9-88b5d92dbb25","status":"Succeeded","startTime":"2022-01-07T10:05:19.4051813Z","endTime":"2022-01-07T10:05:56.6923521Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1eb453eb-ad21-4536-b74e-4cb77662a9b2","name":"1eb453eb-ad21-4536-b74e-4cb77662a9b2","status":"Succeeded","startTime":"2022-03-15T13:55:33.6063601Z","endTime":"2022-03-15T13:56:05.372462Z","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: cache-control: - no-cache content-length: - - '585' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:06:19 GMT + - Tue, 15 Mar 2022 13:56:33 GMT expires: - '-1' pragma: @@ -2779,21 +2565,21 @@ interactions: ParameterSetName: - -g -a -p -v --remote-volume-resource-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9804eb6e-c9be-48ab-a1c9-88b5d92dbb25?api-version=2021-08-01&operationResultResponseType=Location + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1eb453eb-ad21-4536-b74e-4cb77662a9b2?api-version=2021-10-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-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''2022-01-07T10%3A05%3A56.6747822Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:53:54.3165009Z"},"properties":{"dataProtection":{"replication":{"endPointType":"Src","replicationStatus":"","remotePath":{"externalHostName":"az-bn13-f01c01-bs122-sto","serverName":"svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","volumeName":"vol_cli_vol_6pl22wuqcnkemqh2_3bdd39"},"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":"eastus2euap"}},"fileSystemId":"00347ceb-237c-69cd-88c3-c635cabf6d2c","serviceLevel":"Premium","creationToken":"cli-vol-000007","ownerId":"8f672e56-f2b2-11ea-b140-b6c0e8ee56e4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_eefdfd98","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","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":"c947eb8f-4908-6660-6fa7-3e25da94a5f9","mountTargets":[{"provisioningState":"","mountTargetId":"00347ceb-237c-69cd-88c3-c635cabf6d2c","fileSystemId":"00347ceb-237c-69cd-88c3-c635cabf6d2c","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","encryptionKeySource":"Microsoft.NetApp","volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000007","name":"cli-acc-000003/cli-pool-000005/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T13%3A56%3A05.3645414Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T13:43:56.6907189Z"},"properties":{"dataProtection":{"replication":{"endPointType":"Src","replicationStatus":"","remotePath":{"externalHostName":"az-dsm06-df121-sto","serverName":"svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","volumeName":"vol_cli_vol_wnqwfhxxsbhkzouy_94214c"},"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":"eastus2euap"}},"fileSystemId":"45d13bf3-d721-919c-5f40-62c505c8de1d","serviceLevel":"Premium","creationToken":"cli-vol-000007","ownerId":"1a1854d0-5b82-11e9-9e4a-3a8c013b5748","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_6251686d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000009/subnets/cli-subnet-000010","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","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":"b62ac73a-c9bd-c501-9752-617333d67401","mountTargets":[{"provisioningState":"","mountTargetId":"45d13bf3-d721-919c-5f40-62c505c8de1d","fileSystemId":"45d13bf3-d721-919c-5f40-62c505c8de1d","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","encryptionKeySource":"Microsoft.NetApp","volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '3013' + - '2999' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:06:20 GMT + - Tue, 15 Mar 2022 13:56:34 GMT expires: - '-1' pragma: @@ -2827,9 +2613,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' @@ -2841,7 +2627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:06:41 GMT + - Tue, 15 Mar 2022 13:56:54 GMT expires: - '-1' pragma: @@ -2850,10 +2636,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2875,9 +2657,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' @@ -2889,7 +2671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:06:42 GMT + - Tue, 15 Mar 2022 13:56:56 GMT expires: - '-1' pragma: @@ -2923,165 +2705,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' - headers: - cache-control: - - no-cache - content-length: - - '119' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 10:07: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - 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=2021-08-01 - response: - body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' - headers: - cache-control: - - no-cache - content-length: - - '119' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 10:08: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 volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - 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=2021-08-01 - response: - body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' - headers: - cache-control: - - no-cache - content-length: - - '119' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 10:09: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume replication status - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - 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=2021-08-01 - response: - body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:10:47 GMT + - Tue, 15 Mar 2022 13:57:57 GMT expires: - '-1' pragma: @@ -3090,10 +2728,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -3115,21 +2749,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}' headers: cache-control: - no-cache content-length: - - '119' + - '111' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:11:48 GMT + - Tue, 15 Mar 2022 13:58:59 GMT expires: - '-1' pragma: @@ -3163,9 +2797,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17624","errorMessage":""}' @@ -3177,7 +2811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:12:48 GMT + - Tue, 15 Mar 2022 14:00:00 GMT expires: - '-1' pragma: @@ -3215,25 +2849,25 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c95748d6-b602-49a2-b2f6-6a2e65081523?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/901af7ff-f028-4ef0-b030-3b0208b6a985?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 10:12:50 GMT + - Tue, 15 Mar 2022 14:00:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c95748d6-b602-49a2-b2f6-6a2e65081523?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/901af7ff-f028-4ef0-b030-3b0208b6a985?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -3263,21 +2897,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c95748d6-b602-49a2-b2f6-6a2e65081523?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/901af7ff-f028-4ef0-b030-3b0208b6a985?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c95748d6-b602-49a2-b2f6-6a2e65081523","name":"c95748d6-b602-49a2-b2f6-6a2e65081523","status":"Succeeded","startTime":"2022-01-07T10:12:50.7724143Z","endTime":"2022-01-07T10:12:59.3482661Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/901af7ff-f028-4ef0-b030-3b0208b6a985","name":"901af7ff-f028-4ef0-b030-3b0208b6a985","status":"Succeeded","startTime":"2022-03-15T14:00:01.6518305Z","endTime":"2022-03-15T14:00:18.07643Z","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: cache-control: - no-cache content-length: - - '583' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:13:20 GMT + - Tue, 15 Mar 2022 14:00:31 GMT expires: - '-1' pragma: @@ -3311,21 +2945,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/c95748d6-b602-49a2-b2f6-6a2e65081523?api-version=2021-08-01&operationResultResponseType=Location + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/901af7ff-f028-4ef0-b030-3b0208b6a985?api-version=2021-10-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''2022-01-07T10%3A12%3A59.3387867Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:59:38.4097312Z"},"properties":{"volumeType":"","dataProtection":{"replication":{"replicationId":"57f29695-1d64-3299-c3ed-3f19ed8ecd26","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Mirrored","remotePath":{"externalHostName":"az-bn13-f01c01-bs122-sto","serverName":"svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","volumeName":"vol_cli_vol_6pl22wuqcnkemqh2_3bdd39"},"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":"southcentralusstage"}},"fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","serviceLevel":"Premium","creationToken":"cli-vol-000008","ownerId":"141fa84c-3d22-11ea-b68c-025cb39d3009","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","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":"b3680e39-2b57-cc76-e6b7-e5f30a0d6b14","mountTargets":[{"provisioningState":"","mountTargetId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","coolAccess":false,"avsDataStore":"Disabled","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''2022-03-15T14%3A00%3A18.0702582Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:49:41.2900714Z"},"properties":{"volumeType":"","dataProtection":{"replication":{"replicationId":"b13ac1cb-6e32-f606-586d-e0ff6c118f91","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Mirrored","remotePath":{"externalHostName":"az-dsm06-df121-sto","serverName":"svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","volumeName":"vol_cli_vol_wnqwfhxxsbhkzouy_94214c"},"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":"southcentralusstage"}},"fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","serviceLevel":"Premium","creationToken":"cli-vol-000008","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","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":"30cf15c1-7c23-98fc-93c6-ed60173354fc","mountTargets":[{"provisioningState":"","mountTargetId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","coolAccess":false,"avsDataStore":"Disabled","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2880' + - '2879' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:13:20 GMT + - Tue, 15 Mar 2022 14:00:31 GMT expires: - '-1' pragma: @@ -3359,9 +2993,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' @@ -3373,7 +3007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:13:22 GMT + - Tue, 15 Mar 2022 14:00:33 GMT expires: - '-1' pragma: @@ -3382,10 +3016,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -3407,9 +3037,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' @@ -3421,7 +3051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:13:23 GMT + - Tue, 15 Mar 2022 14:00:35 GMT expires: - '-1' pragma: @@ -3430,10 +3060,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -3457,25 +3083,25 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/resyncReplication?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ddd83007-0b2d-42fa-a29b-97e44e706def?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 10:13:24 GMT + - Tue, 15 Mar 2022 14:00:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ddd83007-0b2d-42fa-a29b-97e44e706def?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -3505,21 +3131,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ddd83007-0b2d-42fa-a29b-97e44e706def?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69","name":"87626c52-5096-46fd-ac08-36a526365c69","status":"ResyncReplication","startTime":"2022-01-07T10:13:24.6573318Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ddd83007-0b2d-42fa-a29b-97e44e706def","name":"ddd83007-0b2d-42fa-a29b-97e44e706def","status":"ResyncReplication","startTime":"2022-03-15T14:00:36.407736Z","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: cache-control: - no-cache content-length: - - '581' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:13:54 GMT + - Tue, 15 Mar 2022 14:01:06 GMT expires: - '-1' pragma: @@ -3553,21 +3179,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ddd83007-0b2d-42fa-a29b-97e44e706def?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69","name":"87626c52-5096-46fd-ac08-36a526365c69","status":"ResyncReplication","startTime":"2022-01-07T10:13:24.6573318Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ddd83007-0b2d-42fa-a29b-97e44e706def","name":"ddd83007-0b2d-42fa-a29b-97e44e706def","status":"Succeeded","startTime":"2022-03-15T14:00:36.407736Z","endTime":"2022-03-15T14:01:07.6596854Z","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: cache-control: - no-cache content-length: - - '581' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:14:24 GMT + - Tue, 15 Mar 2022 14:01:36 GMT expires: - '-1' pragma: @@ -3601,117 +3227,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/ddd83007-0b2d-42fa-a29b-97e44e706def?api-version=2021-10-01&operationResultResponseType=Location response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69","name":"87626c52-5096-46fd-ac08-36a526365c69","status":"ResyncReplication","startTime":"2022-01-07T10:13:24.6573318Z","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"}}' + 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''2022-03-15T14%3A01%3A07.6549102Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:49:41.2900714Z"},"properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"b13ac1cb-6e32-f606-586d-e0ff6c118f91","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Broken","remotePath":{"externalHostName":"az-dsm06-df121-sto","serverName":"svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","volumeName":"vol_cli_vol_wnqwfhxxsbhkzouy_94214c"},"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":"southcentralusstage"}},"fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","serviceLevel":"Premium","creationToken":"cli-vol-000008","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","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":"30cf15c1-7c23-98fc-93c6-ed60173354fc","mountTargets":[{"provisioningState":"","mountTargetId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","coolAccess":false,"avsDataStore":"Disabled","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '581' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 10:14: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 volume replication resume - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69","name":"87626c52-5096-46fd-ac08-36a526365c69","status":"ResyncReplication","startTime":"2022-01-07T10:13:24.6573318Z","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: - cache-control: - - no-cache - content-length: - - '581' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 10:15: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: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - netappfiles volume replication resume - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69","name":"87626c52-5096-46fd-ac08-36a526365c69","status":"Succeeded","startTime":"2022-01-07T10:13:24.6573318Z","endTime":"2022-01-07T10:15:27.4805654Z","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: - cache-control: - - no-cache - content-length: - - '583' + - '2891' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:15:55 GMT + - Tue, 15 Mar 2022 14:01:36 GMT expires: - '-1' pragma: @@ -3735,31 +3265,31 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - netappfiles volume replication resume + - netappfiles volume replication status Connection: - keep-alive ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/87626c52-5096-46fd-ac08-36a526365c69?api-version=2021-08-01&operationResultResponseType=Location + 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=2021-10-01 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''2022-01-07T10%3A15%3A27.470361Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:59:38.4097312Z"},"properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"57f29695-1d64-3299-c3ed-3f19ed8ecd26","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Broken","remotePath":{"externalHostName":"az-bn13-f01c01-bs122-sto","serverName":"svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","volumeName":"vol_cli_vol_6pl22wuqcnkemqh2_3bdd39"},"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":"southcentralusstage"}},"fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","serviceLevel":"Premium","creationToken":"cli-vol-000008","ownerId":"141fa84c-3d22-11ea-b68c-025cb39d3009","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","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":"b3680e39-2b57-cc76-e6b7-e5f30a0d6b14","mountTargets":[{"provisioningState":"","mountTargetId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","coolAccess":false,"avsDataStore":"Disabled","provisioningState":"Succeeded"}}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' headers: cache-control: - no-cache content-length: - - '2891' + - '109' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:15:55 GMT + - Tue, 15 Mar 2022 14:02:00 GMT expires: - '-1' pragma: @@ -3768,10 +3298,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -3793,21 +3319,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' headers: cache-control: - no-cache content-length: - - '117' + - '109' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:16:17 GMT + - Tue, 15 Mar 2022 14:02:00 GMT expires: - '-1' pragma: @@ -3816,10 +3342,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -3841,21 +3363,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' headers: cache-control: - no-cache content-length: - - '117' + - '109' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:16:18 GMT + - Tue, 15 Mar 2022 14:03:01 GMT expires: - '-1' pragma: @@ -3889,21 +3411,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: - string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' + string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17624","errorMessage":""}' headers: cache-control: - no-cache content-length: - - '117' + - '109' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:17:19 GMT + - Tue, 15 Mar 2022 14:04:02 GMT expires: - '-1' pragma: @@ -3937,9 +3459,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"20768","errorMessage":""}' @@ -3951,7 +3473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:18:20 GMT + - Tue, 15 Mar 2022 14:05:04 GMT expires: - '-1' pragma: @@ -3989,25 +3511,25 @@ interactions: ParameterSetName: - -g -a -p -v -f User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a4cd4042-f663-4619-ba75-8603dbb17e75?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/aa0f7fdd-9f35-4be8-950f-38b932e132ec?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 10:18:22 GMT + - Tue, 15 Mar 2022 14:05:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a4cd4042-f663-4619-ba75-8603dbb17e75?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/aa0f7fdd-9f35-4be8-950f-38b932e132ec?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -4037,21 +3559,21 @@ interactions: ParameterSetName: - -g -a -p -v -f User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a4cd4042-f663-4619-ba75-8603dbb17e75?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/aa0f7fdd-9f35-4be8-950f-38b932e132ec?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a4cd4042-f663-4619-ba75-8603dbb17e75","name":"a4cd4042-f663-4619-ba75-8603dbb17e75","status":"Succeeded","startTime":"2022-01-07T10:18:22.2713875Z","endTime":"2022-01-07T10:18:29.4964334Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/aa0f7fdd-9f35-4be8-950f-38b932e132ec","name":"aa0f7fdd-9f35-4be8-950f-38b932e132ec","status":"Succeeded","startTime":"2022-03-15T14:05:29.5161002Z","endTime":"2022-03-15T14:05:36.8601236Z","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: cache-control: - no-cache content-length: - - '583' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:18:52 GMT + - Tue, 15 Mar 2022 14:06:01 GMT expires: - '-1' pragma: @@ -4060,10 +3582,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -4085,21 +3603,21 @@ interactions: ParameterSetName: - -g -a -p -v -f User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/a4cd4042-f663-4619-ba75-8603dbb17e75?api-version=2021-08-01&operationResultResponseType=Location + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/aa0f7fdd-9f35-4be8-950f-38b932e132ec?api-version=2021-10-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''2022-01-07T10%3A18%3A29.4875931Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:59:38.4097312Z"},"properties":{"volumeType":"","dataProtection":{"replication":{"replicationId":"57f29695-1d64-3299-c3ed-3f19ed8ecd26","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Mirrored","remotePath":{"externalHostName":"az-bn13-f01c01-bs122-sto","serverName":"svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","volumeName":"vol_cli_vol_6pl22wuqcnkemqh2_3bdd39"},"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":"southcentralusstage"}},"fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","serviceLevel":"Premium","creationToken":"cli-vol-000008","ownerId":"141fa84c-3d22-11ea-b68c-025cb39d3009","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","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":"b3680e39-2b57-cc76-e6b7-e5f30a0d6b14","mountTargets":[{"provisioningState":"","mountTargetId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","coolAccess":false,"avsDataStore":"Disabled","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''2022-03-15T14%3A05%3A36.8509351Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:49:41.2900714Z"},"properties":{"volumeType":"","dataProtection":{"replication":{"replicationId":"b13ac1cb-6e32-f606-586d-e0ff6c118f91","endPointType":"Dst","replicationSchedule":"_10minutely","replicationPolicy":"MirrorAllSnapshots","replicationStatus":"Mirrored","remotePath":{"externalHostName":"az-dsm06-df121-sto","serverName":"svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","volumeName":"vol_cli_vol_wnqwfhxxsbhkzouy_94214c"},"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":"southcentralusstage"}},"fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","serviceLevel":"Premium","creationToken":"cli-vol-000008","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","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":"30cf15c1-7c23-98fc-93c6-ed60173354fc","mountTargets":[{"provisioningState":"","mountTargetId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","coolAccess":false,"avsDataStore":"Disabled","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2880' + - '2879' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:18:52 GMT + - Tue, 15 Mar 2022 14:06:01 GMT expires: - '-1' pragma: @@ -4108,10 +3626,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -4133,9 +3647,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20768","errorMessage":""}' @@ -4147,7 +3661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:18:53 GMT + - Tue, 15 Mar 2022 14:06:03 GMT expires: - '-1' pragma: @@ -4156,10 +3670,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -4181,9 +3691,9 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - 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=2021-08-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=2021-10-01 response: body: string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20768","errorMessage":""}' @@ -4195,7 +3705,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:18:54 GMT + - Tue, 15 Mar 2022 14:06:04 GMT expires: - '-1' pragma: @@ -4204,10 +3714,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -4231,25 +3737,25 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/deleteReplication?api-version=2021-08-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=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f8177036-7f53-46b0-ae89-d4df9dfc822b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b1eb1652-40ea-4ee0-96bb-b0e4ce422550?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 10:18:55 GMT + - Tue, 15 Mar 2022 14:06:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f8177036-7f53-46b0-ae89-d4df9dfc822b?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b1eb1652-40ea-4ee0-96bb-b0e4ce422550?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -4279,21 +3785,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f8177036-7f53-46b0-ae89-d4df9dfc822b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b1eb1652-40ea-4ee0-96bb-b0e4ce422550?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f8177036-7f53-46b0-ae89-d4df9dfc822b","name":"f8177036-7f53-46b0-ae89-d4df9dfc822b","status":"Succeeded","startTime":"2022-01-07T10:18:56.2201461Z","endTime":"2022-01-07T10:19:03.5655625Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b1eb1652-40ea-4ee0-96bb-b0e4ce422550","name":"b1eb1652-40ea-4ee0-96bb-b0e4ce422550","status":"Succeeded","startTime":"2022-03-15T14:06:06.2246997Z","endTime":"2022-03-15T14:06:35.9369661Z","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: cache-control: - no-cache content-length: - - '583' + - '581' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:19:25 GMT + - Tue, 15 Mar 2022 14:06:36 GMT expires: - '-1' pragma: @@ -4302,10 +3808,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -4327,21 +3829,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/f8177036-7f53-46b0-ae89-d4df9dfc822b?api-version=2021-08-01&operationResultResponseType=Location + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b1eb1652-40ea-4ee0-96bb-b0e4ce422550?api-version=2021-10-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''2022-01-07T10%3A19%3A03.5521717Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-01-07T09:59:38.4097312Z"},"properties":{"volumeType":"","dataProtection":{},"fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","serviceLevel":"Premium","creationToken":"cli-vol-000008","ownerId":"141fa84c-3d22-11ea-b68c-025cb39d3009","usageThreshold":107374182400,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_141fa84c3d2211eab68c025cb39d3009_f7cfa65d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","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":"b3680e39-2b57-cc76-e6b7-e5f30a0d6b14","mountTargets":[{"provisioningState":"","mountTargetId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","fileSystemId":"08cb0f2b-1de7-b67c-f88d-837f24ddb852","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","coolAccess":false,"avsDataStore":"Disabled","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''2022-03-15T14%3A06%3A35.9291308Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T13:49:41.2900714Z"},"properties":{"volumeType":"","dataProtection":{},"fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","serviceLevel":"Premium","creationToken":"cli-vol-000008","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_f5ee81aeaed611e9b89652cd499890b7_9a3d6763","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume2_000002/providers/Microsoft.Network/virtualNetworks/cli-vnet-000011/subnets/cli-subnet-000012","networkFeatures":"Basic","storageToNetworkProximity":"Default","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":"30cf15c1-7c23-98fc-93c6-ed60173354fc","mountTargets":[{"provisioningState":"","mountTargetId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","fileSystemId":"1b7fceb4-d22e-3e7e-1a3f-9be2fbeb63f3","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","coolAccess":false,"avsDataStore":"Disabled","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2231' + - '2242' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:19:25 GMT + - Tue, 15 Mar 2022 14:06:36 GMT expires: - '-1' pragma: @@ -4350,10 +3852,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_pool_parameters.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_pool_parameters.yaml index 9ccb65ce159..a195da41822 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_pool_parameters.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_pool_parameters.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A55%3A33.3742603Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:55:27.2761510Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:55:32.6086661Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:55:32.6086661Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A16.5434692Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:12.5639751Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:15.7129341Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:15.7129341Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c991bc9-4006-46fb-bf26-a23f9dc50316?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c142cbb9-fd0e-4ac1-9678-5fd84b9b522c?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -33,9 +33,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:55:34 GMT + - Tue, 15 Mar 2022 10:56:17 GMT etag: - - W/"datetime'2022-01-07T08%3A55%3A33.3742603Z'" + - W/"datetime'2022-03-15T10%3A56%3A16.5434692Z'" expires: - '-1' pragma: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c991bc9-4006-46fb-bf26-a23f9dc50316?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c142cbb9-fd0e-4ac1-9678-5fd84b9b522c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c991bc9-4006-46fb-bf26-a23f9dc50316","name":"2c991bc9-4006-46fb-bf26-a23f9dc50316","status":"Succeeded","startTime":"2022-01-07T08:55:33.3795396Z","endTime":"2022-01-07T08:55:33.4145591Z","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/southcentralusstage/operationResults/c142cbb9-fd0e-4ac1-9678-5fd84b9b522c","name":"c142cbb9-fd0e-4ac1-9678-5fd84b9b522c","status":"Succeeded","startTime":"2022-03-15T10:56:16.5353454Z","endTime":"2022-03-15T10:56:16.5666247Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002"}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:56:04 GMT + - Tue, 15 Mar 2022 10:56:47 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002","name":"cli000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A55%3A33.4067163Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:55:27.2761510Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:55:32.6086661Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:55:32.6086661Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A16.5711547Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:12.5639751Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:15.7129341Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:15.7129341Z"}}' headers: cache-control: - no-cache content-length: - - '1135' + - '1156' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:56:04 GMT + - Tue, 15 Mar 2022 10:56:47 GMT etag: - - W/"datetime'2022-01-07T08%3A55%3A33.4067163Z'" + - W/"datetime'2022-03-15T10%3A56%3A16.5711547Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -170,15 +162,15 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --encryption-type User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A56%3A12.1666498Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:56:06.7385482Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"encryptionType":"Double","provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:56:11.1561644Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:56:11.1561644Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A57%3A56.6065943Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:57:42.0906125Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"encryptionType":"Double","provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:57:54.8241979Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:57:54.8241979Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28ff2386-8bd5-4918-89a0-b43e1ad9ab63?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f64ba552-ab86-4b9b-ab80-2761c8340ee9?api-version=2021-10-01 cache-control: - no-cache content-length: @@ -186,9 +178,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:56:13 GMT + - Tue, 15 Mar 2022 10:58:00 GMT etag: - - W/"datetime'2022-01-07T08%3A56%3A12.1666498Z'" + - W/"datetime'2022-03-15T10%3A57%3A56.6065943Z'" expires: - '-1' pragma: @@ -200,7 +192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -220,12 +212,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --encryption-type User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28ff2386-8bd5-4918-89a0-b43e1ad9ab63?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f64ba552-ab86-4b9b-ab80-2761c8340ee9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28ff2386-8bd5-4918-89a0-b43e1ad9ab63","name":"28ff2386-8bd5-4918-89a0-b43e1ad9ab63","status":"Succeeded","startTime":"2022-01-07T08:56:12.1716928Z","endTime":"2022-01-07T08:56:12.4487147Z","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/southcentralusstage/operationResults/f64ba552-ab86-4b9b-ab80-2761c8340ee9","name":"f64ba552-ab86-4b9b-ab80-2761c8340ee9","status":"Succeeded","startTime":"2022-03-15T10:57:56.6128378Z","endTime":"2022-03-15T10:57:56.7691108Z","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: cache-control: - no-cache @@ -234,7 +226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:56:43 GMT + - Tue, 15 Mar 2022 10:58:32 GMT expires: - '-1' pragma: @@ -243,10 +235,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -268,23 +256,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size --encryption-type User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A56%3A12.4405999Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:56:06.7385482Z"},"properties":{"poolId":"e15c795a-afe0-0ca6-47f2-f19686a47dc4","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Double","coolAccess":false,"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''2022-03-15T10%3A57%3A56.7641691Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:57:42.0906125Z"},"properties":{"poolId":"e0e3453f-4056-a6b8-ceba-97b00a4f422f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Double","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '679' + - '677' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:56:44 GMT + - Tue, 15 Mar 2022 10:58:32 GMT etag: - - W/"datetime'2022-01-07T08%3A56%3A12.4405999Z'" + - W/"datetime'2022-03-15T10%3A57%3A56.7641691Z'" expires: - '-1' pragma: @@ -293,10 +281,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -318,23 +302,23 @@ interactions: ParameterSetName: - --resource-group -a -p User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli000002/capacityPools/cli000003","name":"cli000002/cli000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A56%3A12.4405999Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:56:06.7385482Z"},"properties":{"poolId":"e15c795a-afe0-0ca6-47f2-f19686a47dc4","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Double","coolAccess":false,"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''2022-03-15T10%3A57%3A56.7641691Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:57:42.0906125Z"},"properties":{"poolId":"e0e3453f-4056-a6b8-ceba-97b00a4f422f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Double","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '679' + - '677' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:56:44 GMT + - Tue, 15 Mar 2022 10:58:33 GMT etag: - - W/"datetime'2022-01-07T08%3A56%3A12.4405999Z'" + - W/"datetime'2022-03-15T10%3A57%3A56.7641691Z'" expires: - '-1' pragma: @@ -343,10 +327,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: 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 053c4868fff..33c198029bc 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"444a9757-cd62-42a3-9b98-80d12b8261f4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c1566b2e-c160-4053-84c7-5fc145c80f27\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"ac522c86-1b55-4202-a5f6-f79582d39de4\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:51:26.0236189Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"5c9bac72-35aa-4720-9b54-e6dbff545023\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/476f7e9f-e82e-43bb-90db-d650daf22f61?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/1defde79-ec99-4e9f-9549-a78e3754646f?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '781' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:40:46 GMT + - Wed, 16 Mar 2022 09:51:31 GMT expires: - '-1' pragma: @@ -57,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9ab8068b-a1e4-45f8-a986-e533c4d52b9d + - 7457907c-c313-4a08-b456-a861c892d619 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/476f7e9f-e82e-43bb-90db-d650daf22f61?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/1defde79-ec99-4e9f-9549-a78e3754646f?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:40:50 GMT + - Wed, 16 Mar 2022 09:51:34 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c8d1fd91-0f9f-4d22-8d8b-648c04a9cb6e + - e5939195-cf20-480e-b7a3-ca095800f2ec status: code: 200 message: OK @@ -126,16 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"d34ea982-b937-4b93-9336-f531ddf44301\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c1566b2e-c160-4053-84c7-5fc145c80f27\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"1aba43bb-9763-4a3f-a772-6cd249f31250\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:51:26.0236189Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"5c9bac72-35aa-4720-9b54-e6dbff545023\",\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\": @@ -144,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:40:50 GMT + - Wed, 16 Mar 2022 09:51:35 GMT etag: - - W/"d34ea982-b937-4b93-9336-f531ddf44301" + - W/"1aba43bb-9763-4a3f-a772-6cd249f31250" expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f49bc9a4-d853-4f1a-8ef7-1fb06fc6cb0a + - 259ea3e5-aa6c-447b-a7cb-8b2a43cbd625 status: code: 200 message: OK @@ -185,16 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"d34ea982-b937-4b93-9336-f531ddf44301\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c1566b2e-c160-4053-84c7-5fc145c80f27\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"1aba43bb-9763-4a3f-a772-6cd249f31250\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:51:26.0236189Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"5c9bac72-35aa-4720-9b54-e6dbff545023\",\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\": @@ -203,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:40:50 GMT + - Wed, 16 Mar 2022 09:51:35 GMT etag: - - W/"d34ea982-b937-4b93-9336-f531ddf44301" + - W/"1aba43bb-9763-4a3f-a772-6cd249f31250" expires: - '-1' pragma: @@ -222,18 +225,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 89b8b2e3-b656-4a8e-9753-f0cf7a406218 + - 230b0fa4-2bad-4a33-bf37-e7b2afc7868f 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": "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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-16T09:51:26.0236189Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -244,32 +247,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '691' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"ddf3e9c4-9b95-44fb-915c-9a58ad69fc1a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c1566b2e-c160-4053-84c7-5fc145c80f27\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"4b5c0480-d010-4924-956b-355c13149f98\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:51:26.0236189Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"5c9bac72-35aa-4720-9b54-e6dbff545023\",\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/\\\"ddf3e9c4-9b95-44fb-915c-9a58ad69fc1a\\\"\",\r\n + \ \"etag\": \"W/\\\"4b5c0480-d010-4924-956b-355c13149f98\\\"\",\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/\\\"ddf3e9c4-9b95-44fb-915c-9a58ad69fc1a\\\"\",\r\n + \ \"etag\": \"W/\\\"4b5c0480-d010-4924-956b-355c13149f98\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -284,15 +288,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9e4c904a-1968-44dc-92ab-92d65338fa17?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/83ad1e69-6b5e-4921-b4e4-dcf67a8f3916?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2252' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:40:52 GMT + - Wed, 16 Mar 2022 09:51:37 GMT expires: - '-1' pragma: @@ -305,7 +309,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16c0070a-8031-4ee4-b959-dd0a5f5908d9 + - d61c374e-aa88-49ea-8a01-1714a4e2f8e2 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -325,9 +329,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9e4c904a-1968-44dc-92ab-92d65338fa17?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/83ad1e69-6b5e-4921-b4e4-dcf67a8f3916?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -339,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:40:55 GMT + - Wed, 16 Mar 2022 09:51:40 GMT expires: - '-1' pragma: @@ -352,7 +356,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c4260baa-8087-4a00-99de-97e8914682e2 + - 98f22e1e-cb97-4f2c-b67e-1a4cb70254c6 status: code: 200 message: OK @@ -370,26 +374,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"8806715f-a476-4e80-a7c8-d5c16751dd29\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c1566b2e-c160-4053-84c7-5fc145c80f27\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"f9d6c375-4b27-40b5-b0a4-d8bed2554ba5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:51:26.0236189Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"5c9bac72-35aa-4720-9b54-e6dbff545023\",\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/\\\"8806715f-a476-4e80-a7c8-d5c16751dd29\\\"\",\r\n + \ \"etag\": \"W/\\\"f9d6c375-4b27-40b5-b0a4-d8bed2554ba5\\\"\",\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/\\\"8806715f-a476-4e80-a7c8-d5c16751dd29\\\"\",\r\n + \ \"etag\": \"W/\\\"f9d6c375-4b27-40b5-b0a4-d8bed2554ba5\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -404,13 +409,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2254' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:40:55 GMT + - Wed, 16 Mar 2022 09:51:40 GMT etag: - - W/"8806715f-a476-4e80-a7c8-d5c16751dd29" + - W/"f9d6c375-4b27-40b5-b0a4-d8bed2554ba5" expires: - '-1' pragma: @@ -423,7 +428,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0599d5f5-ed56-4fa5-b47f-df9e8de6da25 + - 6f7417e6-335d-4d53-a6b3-d01eb2dfcabe status: code: 200 message: OK @@ -439,31 +444,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A41%3A03.6019258Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A51%3A49.1405215Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:51:43.1432329Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7cd632a7-d3ea-47b3-a0c4-823eb764cf05?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a22535cf-6fe0-490b-8765-bee1462e4cd4?api-version=2021-10-01 cache-control: - no-cache content-length: - - '430' + - '413' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:41:03 GMT + - Wed, 16 Mar 2022 09:51:50 GMT etag: - - W/"datetime'2021-10-19T15%3A41%3A03.6019258Z'" + - W/"datetime'2022-03-16T09%3A51%3A49.1405215Z'" expires: - '-1' pragma: @@ -495,21 +500,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7cd632a7-d3ea-47b3-a0c4-823eb764cf05?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a22535cf-6fe0-490b-8765-bee1462e4cd4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7cd632a7-d3ea-47b3-a0c4-823eb764cf05","name":"7cd632a7-d3ea-47b3-a0c4-823eb764cf05","status":"Succeeded","startTime":"2021-10-19T15:41:03.606459Z","endTime":"2021-10-19T15:41:03.6567419Z","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/a22535cf-6fe0-490b-8765-bee1462e4cd4","name":"a22535cf-6fe0-490b-8765-bee1462e4cd4","status":"Succeeded","startTime":"2022-03-16T09:51:49.1453361Z","endTime":"2022-03-16T09:51:49.1802917Z","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: cache-control: - no-cache content-length: - - '587' + - '525' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:41:34 GMT + - Wed, 16 Mar 2022 09:52:20 GMT expires: - '-1' pragma: @@ -518,6 +523,10 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -539,23 +548,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A41%3A03.6508657Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"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''2022-03-16T09%3A51%3A49.169545Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:51:43.1432329Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '874' + - '459' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:41:34 GMT + - Wed, 16 Mar 2022 09:52:20 GMT etag: - - W/"datetime'2021-10-19T15%3A41%3A03.6508657Z'" + - W/"datetime'2022-03-16T09%3A51%3A49.169545Z'" expires: - '-1' pragma: @@ -564,6 +573,10 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -572,8 +585,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -584,31 +597,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A41%3A45.643603Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A52%3A29.5418648Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:52:23.3870031Z"},"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/southcentralusstage/operationResults/d8383f98-1ce9-481e-b720-a01c6a55b511?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3515d90-f1b0-4995-9040-245512fb9800?api-version=2021-10-01 cache-control: - no-cache content-length: - - '610' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:41:45 GMT + - Wed, 16 Mar 2022 09:52:30 GMT etag: - - W/"datetime'2021-10-19T15%3A41%3A45.643603Z'" + - W/"datetime'2022-03-16T09%3A52%3A29.5418648Z'" expires: - '-1' pragma: @@ -640,21 +653,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d8383f98-1ce9-481e-b720-a01c6a55b511?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3515d90-f1b0-4995-9040-245512fb9800?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d8383f98-1ce9-481e-b720-a01c6a55b511","name":"d8383f98-1ce9-481e-b720-a01c6a55b511","status":"Succeeded","startTime":"2021-10-19T15:41:45.6456832Z","endTime":"2021-10-19T15:41:45.8056998Z","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/c3515d90-f1b0-4995-9040-245512fb9800","name":"c3515d90-f1b0-4995-9040-245512fb9800","status":"Succeeded","startTime":"2022-03-16T09:52:29.544948Z","endTime":"2022-03-16T09:52:29.8381259Z","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: cache-control: - no-cache content-length: - - '627' + - '554' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:42:16 GMT + - Wed, 16 Mar 2022 09:53:00 GMT expires: - '-1' pragma: @@ -663,10 +676,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -688,23 +697,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A41%3A45.7945281Z''\"","location":"southcentralusstage","properties":{"poolId":"c36f786a-0b14-8f49-52c2-59a690d0cfef","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-16T09%3A52%3A29.8233039Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:52:23.3870031Z"},"properties":{"poolId":"ed7d3439-44eb-6ce1-9442-d19195a1188c","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '691' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:42:16 GMT + - Wed, 16 Mar 2022 09:53:00 GMT etag: - - W/"datetime'2021-10-19T15%3A41%3A45.7945281Z'" + - W/"datetime'2022-03-16T09%3A52%3A29.8233039Z'" expires: - '-1' pragma: @@ -713,10 +722,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -726,7 +731,8 @@ interactions: message: OK - request: 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"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -737,31 +743,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '337' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A42%3A24.4885642Z''\"","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"}}' + 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''2022-03-16T09%3A53%3A08.6998826Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:42:25 GMT + - Wed, 16 Mar 2022 09:53:09 GMT etag: - - W/"datetime'2021-10-19T15%3A42%3A24.4885642Z'" + - W/"datetime'2022-03-16T09%3A53%3A08.6998826Z'" expires: - '-1' pragma: @@ -773,7 +779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -793,69 +799,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Creating","startTime":"2021-10-19T15:42:24.4968597Z","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: - - Tue, 19 Oct 2021 15:42: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 volume create - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Creating","startTime":"2021-10-19T15:42:24.4968597Z","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/c3de0374-32e9-444f-a97d-292822e7a1c8","name":"c3de0374-32e9-444f-a97d-292822e7a1c8","status":"Creating","startTime":"2022-03-16T09:53:08.7049084Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:43:26 GMT + - Wed, 16 Mar 2022 09:53:39 GMT expires: - '-1' pragma: @@ -889,21 +847,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Creating","startTime":"2021-10-19T15:42:24.4968597Z","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/c3de0374-32e9-444f-a97d-292822e7a1c8","name":"c3de0374-32e9-444f-a97d-292822e7a1c8","status":"Creating","startTime":"2022-03-16T09:53:08.7049084Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:43:56 GMT + - Wed, 16 Mar 2022 09:54:10 GMT expires: - '-1' pragma: @@ -937,21 +895,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Creating","startTime":"2021-10-19T15:42:24.4968597Z","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/c3de0374-32e9-444f-a97d-292822e7a1c8","name":"c3de0374-32e9-444f-a97d-292822e7a1c8","status":"Creating","startTime":"2022-03-16T09:53:08.7049084Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:44:26 GMT + - Wed, 16 Mar 2022 09:54:40 GMT expires: - '-1' pragma: @@ -985,21 +943,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Creating","startTime":"2021-10-19T15:42:24.4968597Z","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/c3de0374-32e9-444f-a97d-292822e7a1c8","name":"c3de0374-32e9-444f-a97d-292822e7a1c8","status":"Creating","startTime":"2022-03-16T09:53:08.7049084Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:44:56 GMT + - Wed, 16 Mar 2022 09:55:11 GMT expires: - '-1' pragma: @@ -1033,21 +991,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Creating","startTime":"2021-10-19T15:42:24.4968597Z","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/c3de0374-32e9-444f-a97d-292822e7a1c8","name":"c3de0374-32e9-444f-a97d-292822e7a1c8","status":"Creating","startTime":"2022-03-16T09:53:08.7049084Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:45:26 GMT + - Wed, 16 Mar 2022 09:55:41 GMT expires: - '-1' pragma: @@ -1056,10 +1014,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1081,21 +1035,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Creating","startTime":"2021-10-19T15:42:24.4968597Z","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/c3de0374-32e9-444f-a97d-292822e7a1c8","name":"c3de0374-32e9-444f-a97d-292822e7a1c8","status":"Creating","startTime":"2022-03-16T09:53:08.7049084Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:45:57 GMT + - Wed, 16 Mar 2022 09:56:11 GMT expires: - '-1' pragma: @@ -1104,10 +1058,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1129,21 +1079,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Creating","startTime":"2021-10-19T15:42:24.4968597Z","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/c3de0374-32e9-444f-a97d-292822e7a1c8","name":"c3de0374-32e9-444f-a97d-292822e7a1c8","status":"Creating","startTime":"2022-03-16T09:53:08.7049084Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:46:27 GMT + - Wed, 16 Mar 2022 09:56:41 GMT expires: - '-1' pragma: @@ -1152,10 +1102,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1177,21 +1123,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3de0374-32e9-444f-a97d-292822e7a1c8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cb1e2f37-ba65-4331-af8d-da636bf80f57","name":"cb1e2f37-ba65-4331-af8d-da636bf80f57","status":"Succeeded","startTime":"2021-10-19T15:42:24.4968597Z","endTime":"2021-10-19T15:46:31.3418416Z","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/c3de0374-32e9-444f-a97d-292822e7a1c8","name":"c3de0374-32e9-444f-a97d-292822e7a1c8","status":"Succeeded","startTime":"2022-03-16T09:53:08.7049084Z","endTime":"2022-03-16T09:57:08.6673246Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:46:58 GMT + - Wed, 16 Mar 2022 09:57:12 GMT expires: - '-1' pragma: @@ -1200,10 +1146,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1225,23 +1167,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A46%3A31.3352432Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c870b1dc-3007-782a-0574-bde2534a4cc4","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A57%3A08.6471516Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"properties":{"fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:46:59 GMT + - Wed, 16 Mar 2022 09:57:12 GMT etag: - - W/"datetime'2021-10-19T15%3A46%3A31.3352432Z'" + - W/"datetime'2022-03-16T09%3A57%3A08.6471516Z'" expires: - '-1' pragma: @@ -1250,10 +1192,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1275,21 +1213,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:47:00 GMT + - Wed, 16 Mar 2022 09:57:13 GMT expires: - '-1' pragma: @@ -1323,23 +1261,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A46%3A31.3352432Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c870b1dc-3007-782a-0574-bde2534a4cc4","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A57%3A08.6471516Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"properties":{"fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:47:01 GMT + - Wed, 16 Mar 2022 09:57:14 GMT etag: - - W/"datetime'2021-10-19T15%3A46%3A31.3352432Z'" + - W/"datetime'2022-03-16T09%3A57%3A08.6471516Z'" expires: - '-1' pragma: @@ -1360,9 +1298,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:53:02.6002325Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "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: @@ -1374,35 +1312,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '427' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A47%3A05.9225816Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c870b1dc-3007-782a-0574-bde2534a4cc4","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A57%3A18.8871564Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"properties":{"provisioningState":"Patching","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d9789e0-2253-40ff-a3f1-be19f0f1ee79?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0805dd85-1aad-4980-b6e6-af5b3af7cc43?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2146' + - '2070' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:47:05 GMT + - Wed, 16 Mar 2022 09:57:18 GMT etag: - - W/"datetime'2021-10-19T15%3A47%3A05.9225816Z'" + - W/"datetime'2022-03-16T09%3A57%3A18.8871564Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d9789e0-2253-40ff-a3f1-be19f0f1ee79?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0805dd85-1aad-4980-b6e6-af5b3af7cc43?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1432,21 +1370,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d9789e0-2253-40ff-a3f1-be19f0f1ee79?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0805dd85-1aad-4980-b6e6-af5b3af7cc43?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5d9789e0-2253-40ff-a3f1-be19f0f1ee79","name":"5d9789e0-2253-40ff-a3f1-be19f0f1ee79","status":"Succeeded","startTime":"2021-10-19T15:47:05.9307131Z","endTime":"2021-10-19T15:47:11.35336Z","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/0805dd85-1aad-4980-b6e6-af5b3af7cc43","name":"0805dd85-1aad-4980-b6e6-af5b3af7cc43","status":"Succeeded","startTime":"2022-03-16T09:57:18.8960283Z","endTime":"2022-03-16T09:57:22.0292277Z","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: - - '658' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:47:35 GMT + - Wed, 16 Mar 2022 09:57:48 GMT expires: - '-1' pragma: @@ -1455,10 +1393,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1480,23 +1414,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A47%3A11.3454015Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"c870b1dc-3007-782a-0574-bde2534a4cc4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c870b1dc-3007-782a-0574-bde2534a4cc4","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A57%3A22.0223804Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"c4c2797f-b360-2e08-eef4-8b1810e0b978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:47:35 GMT + - Wed, 16 Mar 2022 09:57:49 GMT etag: - - W/"datetime'2021-10-19T15%3A47%3A11.3454015Z'" + - W/"datetime'2022-03-16T09%3A57%3A22.0223804Z'" expires: - '-1' pragma: @@ -1505,10 +1439,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1528,33 +1458,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c309327f-5e7d-4cc6-865d-48d12836268a?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/26f21457-ef44-4682-8b07-f219e69e3256?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '457' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:47:38 GMT + - Wed, 16 Mar 2022 09:57:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c309327f-5e7d-4cc6-865d-48d12836268a?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/26f21457-ef44-4682-8b07-f219e69e3256?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1564,7 +1494,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1584,21 +1514,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c309327f-5e7d-4cc6-865d-48d12836268a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/26f21457-ef44-4682-8b07-f219e69e3256?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c309327f-5e7d-4cc6-865d-48d12836268a","name":"c309327f-5e7d-4cc6-865d-48d12836268a","status":"Succeeded","startTime":"2021-10-19T15:47:38.7008233Z","endTime":"2021-10-19T15:47:39.0118412Z","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/26f21457-ef44-4682-8b07-f219e69e3256","name":"26f21457-ef44-4682-8b07-f219e69e3256","status":"Succeeded","startTime":"2022-03-16T09:57:50.4441817Z","endTime":"2022-03-16T09:57:51.8369171Z","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"}}' headers: cache-control: - no-cache content-length: - - '693' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:48:08 GMT + - Wed, 16 Mar 2022 09:58:20 GMT expires: - '-1' pragma: @@ -1632,117 +1562,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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=2021-08-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:47:39Z","backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' - headers: - cache-control: - - no-cache - content-length: - - '792' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 15:48:08 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 volume backup show - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -b - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-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=2021-08-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:47:39Z","backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' - headers: - cache-control: - - no-cache - content-length: - - '792' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Oct 2021 15:48: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 volume backup show - Connection: - - keep-alive - ParameterSetName: - - -g -a -p -v -b - User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:47:39Z","backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:57:50Z","backupId":"f9c84d2d-cdf5-5a01-fdef-81fe3b3459f1","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:49:12 GMT + - Wed, 16 Mar 2022 09:58:20 GMT expires: - '-1' pragma: @@ -1776,21 +1610,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:47:39Z","backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:57:50Z","backupId":"f9c84d2d-cdf5-5a01-fdef-81fe3b3459f1","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:50:13 GMT + - Wed, 16 Mar 2022 09:58:22 GMT expires: - '-1' pragma: @@ -1799,10 +1633,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1824,21 +1654,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:47:39Z","backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:57:50Z","backupId":"f9c84d2d-cdf5-5a01-fdef-81fe3b3459f1","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:51:21 GMT + - Wed, 16 Mar 2022 09:59:22 GMT expires: - '-1' pragma: @@ -1872,21 +1702,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:47:43Z","backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:57:54Z","backupId":"f9c84d2d-cdf5-5a01-fdef-81fe3b3459f1","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:52:22 GMT + - Wed, 16 Mar 2022 10:00:24 GMT expires: - '-1' pragma: @@ -1895,10 +1725,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1920,21 +1746,21 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:47:43Z","backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:57:54Z","backupId":"f9c84d2d-cdf5-5a01-fdef-81fe3b3459f1","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:52:24 GMT + - Wed, 16 Mar 2022 10:00:25 GMT expires: - '-1' pragma: @@ -1943,10 +1769,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1956,8 +1778,9 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000007", - "usageThreshold": 107374182400, "backupId": "12557e2b-eecf-505c-e7e0-cd1a3c9c0568", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default"}}' + "usageThreshold": 107374182400, "backupId": "f9c84d2d-cdf5-5a01-fdef-81fe3b3459f1", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -1968,31 +1791,31 @@ interactions: Connection: - keep-alive Content-Length: - - '423' + - '389' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --backup-id User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-10-19T15%3A52%3A32.6309896Z''\"","location":"southcentralusstage","properties":{"creationToken":"cli-vol-000007","usageThreshold":107374182400,"backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T10%3A00%3A33.4709657Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:00:29.1421048Z"},"properties":{"creationToken":"cli-vol-000007","usageThreshold":107374182400,"backupId":"f9c84d2d-cdf5-5a01-fdef-81fe3b3459f1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7e5cca9d-8abd-4aa1-ac7b-b45aceb7f9f6?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632cd2a5-4762-484c-b3a4-ba1aa4e5a4f9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '938' + - '892' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:52:32 GMT + - Wed, 16 Mar 2022 10:00:35 GMT etag: - - W/"datetime'2021-10-19T15%3A52%3A32.6309896Z'" + - W/"datetime'2022-03-16T10%3A00%3A33.4709657Z'" expires: - '-1' pragma: @@ -2004,7 +1827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -2024,21 +1847,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --backup-id User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7e5cca9d-8abd-4aa1-ac7b-b45aceb7f9f6?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632cd2a5-4762-484c-b3a4-ba1aa4e5a4f9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7e5cca9d-8abd-4aa1-ac7b-b45aceb7f9f6","name":"7e5cca9d-8abd-4aa1-ac7b-b45aceb7f9f6","status":"Succeeded","startTime":"2021-10-19T15:52:32.6352466Z","endTime":"2021-10-19T15:52:52.8523157Z","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-000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/632cd2a5-4762-484c-b3a4-ba1aa4e5a4f9","name":"632cd2a5-4762-484c-b3a4-ba1aa4e5a4f9","status":"Succeeded","startTime":"2022-03-16T10:00:33.4792566Z","endTime":"2022-03-16T10:00:43.3914096Z","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-000007"}}' headers: cache-control: - no-cache content-length: - - '660' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:03 GMT + - Wed, 16 Mar 2022 10:01:05 GMT expires: - '-1' pragma: @@ -2072,23 +1895,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --backup-id User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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-000007?api-version=2021-08-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-000007?api-version=2021-10-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-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2021-10-19T15%3A52%3A52.8475266Z''\"","location":"southcentralusstage","properties":{"isRestoring":true,"fileSystemId":"3b185558-a476-200a-8dae-6b8abe18b713","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3b185558-a476-200a-8dae-6b8abe18b713","fileSystemId":"3b185558-a476-200a-8dae-6b8abe18b713","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000007","name":"cli-acc-000002/cli-pool-000003/cli-vol-000007","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T10%3A00%3A43.3783459Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T10:00:29.1421048Z"},"properties":{"isRestoring":true,"fileSystemId":"2a978924-1e0d-dbf4-25e7-12fef8c3eeb0","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"2a978924-1e0d-dbf4-25e7-12fef8c3eeb0","fileSystemId":"2a978924-1e0d-dbf4-25e7-12fef8c3eeb0","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2166' + - '2090' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:03 GMT + - Wed, 16 Mar 2022 10:01:05 GMT etag: - - W/"datetime'2021-10-19T15%3A52%3A52.8475266Z'" + - W/"datetime'2022-03-16T10%3A00%3A43.3783459Z'" expires: - '-1' pragma: @@ -2122,23 +1945,23 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A47%3A11.3454015Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"c870b1dc-3007-782a-0574-bde2534a4cc4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c870b1dc-3007-782a-0574-bde2534a4cc4","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A57%3A22.0223804Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"c4c2797f-b360-2e08-eef4-8b1810e0b978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:04 GMT + - Wed, 16 Mar 2022 10:01:06 GMT etag: - - W/"datetime'2021-10-19T15%3A47%3A11.3454015Z'" + - W/"datetime'2022-03-16T09%3A57%3A22.0223804Z'" expires: - '-1' pragma: @@ -2147,10 +1970,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2172,21 +1991,21 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:47:43Z","backupId":"12557e2b-eecf-505c-e7e0-cd1a3c9c0568","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:57:54Z","backupId":"f9c84d2d-cdf5-5a01-fdef-81fe3b3459f1","size":331776,"backupType":"Manual","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '798' + - '663' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:06 GMT + - Wed, 16 Mar 2022 10:01:07 GMT expires: - '-1' pragma: @@ -2220,21 +2039,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:08 GMT + - Wed, 16 Mar 2022 10:01:08 GMT expires: - '-1' pragma: @@ -2268,23 +2087,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A47%3A11.3454015Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"c870b1dc-3007-782a-0574-bde2534a4cc4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c870b1dc-3007-782a-0574-bde2534a4cc4","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A57%3A22.0223804Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"c4c2797f-b360-2e08-eef4-8b1810e0b978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:14 GMT + - Wed, 16 Mar 2022 10:01:09 GMT etag: - - W/"datetime'2021-10-19T15%3A47%3A11.3454015Z'" + - W/"datetime'2022-03-16T09%3A57%3A22.0223804Z'" expires: - '-1' pragma: @@ -2293,10 +2112,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -2305,9 +2120,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:53:02.6002325Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": false}}}}' headers: Accept: @@ -2319,35 +2134,35 @@ interactions: Connection: - keep-alive Content-Length: - - '420' + - '428' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A53%3A21.7648761Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c870b1dc-3007-782a-0574-bde2534a4cc4","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T10%3A01%3A11.3603245Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7b5c5ecc-4602-490c-997e-043711b35b5c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d443ecd-c60a-4cb7-8665-386f87a441b7?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2458' + - '2331' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:21 GMT + - Wed, 16 Mar 2022 10:01:10 GMT etag: - - W/"datetime'2021-10-19T15%3A53%3A21.7648761Z'" + - W/"datetime'2022-03-16T10%3A01%3A11.3603245Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7b5c5ecc-4602-490c-997e-043711b35b5c?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d443ecd-c60a-4cb7-8665-386f87a441b7?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2357,7 +2172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -2377,21 +2192,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7b5c5ecc-4602-490c-997e-043711b35b5c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8d443ecd-c60a-4cb7-8665-386f87a441b7?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7b5c5ecc-4602-490c-997e-043711b35b5c","name":"7b5c5ecc-4602-490c-997e-043711b35b5c","status":"Succeeded","startTime":"2021-10-19T15:53:21.7693209Z","endTime":"2021-10-19T15:53:31.9100333Z","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/8d443ecd-c60a-4cb7-8665-386f87a441b7","name":"8d443ecd-c60a-4cb7-8665-386f87a441b7","status":"Succeeded","startTime":"2022-03-16T10:01:11.3663026Z","endTime":"2022-03-16T10:01:16.6765184Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:51 GMT + - Wed, 16 Mar 2022 10:01:41 GMT expires: - '-1' pragma: @@ -2425,23 +2240,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A53%3A31.9030127Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"c870b1dc-3007-782a-0574-bde2534a4cc4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_8f00b16b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c870b1dc-3007-782a-0574-bde2534a4cc4","fileSystemId":"c870b1dc-3007-782a-0574-bde2534a4cc4","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T10%3A01%3A16.6679889Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:53:02.6002325Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"c4c2797f-b360-2e08-eef4-8b1810e0b978","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8ea7ee62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","fileSystemId":"c4c2797f-b360-2e08-eef4-8b1810e0b978","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2460' + - '2333' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:53:51 GMT + - Wed, 16 Mar 2022 10:01:41 GMT etag: - - W/"datetime'2021-10-19T15%3A53%3A31.9030127Z'" + - W/"datetime'2022-03-16T10%3A01%3A16.6679889Z'" expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_restore_file.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_restore_file.yaml new file mode 100644 index 00000000000..b5fc28e8145 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_restore_file.yaml @@ -0,0 +1,1446 @@ +interactions: +- request: + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --address-prefix + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"ee17d965-6cd9-46d4-895a-8405ee167001\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T10:24:24.1883041Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"521ada76-7aea-4222-b0d9-f83fa5139510\",\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/southcentralusstage/operations/9a1ba7c0-332f-4ba4-8549-d2c529abd936?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '773' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:24:30 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: + - 5138e344-14ac-45d8-835e-3853be7bd58e + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/9a1ba7c0-332f-4ba4-8549-d2c529abd936?api-version=2021-05-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: + - Fri, 18 Mar 2022 10:24:33 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: + - ad927163-0fc3-46b2-8b03-6a7d1545f531 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"55da4caa-7181-4990-8b97-85ce23566e03\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T10:24:24.1883041Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"521ada76-7aea-4222-b0d9-f83fa5139510\",\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: + - '774' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:24:33 GMT + etag: + - W/"55da4caa-7181-4990-8b97-85ce23566e03" + 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: + - 817604e9-2c8c-4d10-a54d-b81ddd1fd757 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"55da4caa-7181-4990-8b97-85ce23566e03\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T10:24:24.1883041Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"521ada76-7aea-4222-b0d9-f83fa5139510\",\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: + - '774' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:24:33 GMT + etag: + - W/"55da4caa-7181-4990-8b97-85ce23566e03" + 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: + - 7278aac1-57f4-463a-bc81-59329953faa4 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-18T10:24:24.1883041Z"}, + "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"}}], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + [], "enableDdosProtection": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '699' + Content-Type: + - application/json + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"08d3ae7d-c370-4729-87fe-215426bd17e8\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T10:24:24.1883041Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"521ada76-7aea-4222-b0d9-f83fa5139510\",\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/\\\"08d3ae7d-c370-4729-87fe-215426bd17e8\\\"\",\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/\\\"08d3ae7d-c370-4729-87fe-215426bd17e8\\\"\",\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-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/34a0f2a3-da0d-4ad1-8664-6ca3f57da7a3?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '2271' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:24:35 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: + - f5c17663-ed17-49c2-b887-d18ef83aa433 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/34a0f2a3-da0d-4ad1-8664-6ca3f57da7a3?api-version=2021-05-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: + - Fri, 18 Mar 2022 10:24:39 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: + - 9bef7976-e68e-4c72-9c28-cc253932365a + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"89ba556b-836d-4122-957f-b93f83cc17e1\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-18T10:24:24.1883041Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"521ada76-7aea-4222-b0d9-f83fa5139510\",\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/\\\"89ba556b-836d-4122-957f-b93f83cc17e1\\\"\",\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/\\\"89ba556b-836d-4122-957f-b93f83cc17e1\\\"\",\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: + - '2273' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:24:39 GMT + etag: + - W/"89ba556b-836d-4122-957f-b93f83cc17e1" + 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: + - ad614d87-37e7-4289-ba05-acaa7c1f6bc8 + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralusstage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T10%3A24%3A44.2632178Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-18T10:24:40.7129670Z"},"properties":{"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f3e7d6a1-c811-4c35-8264-e375f36713a9?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '415' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:24:45 GMT + etag: + - W/"datetime'2022-03-18T10%3A24%3A44.2632178Z'" + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f3e7d6a1-c811-4c35-8264-e375f36713a9?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/f3e7d6a1-c811-4c35-8264-e375f36713a9","name":"f3e7d6a1-c811-4c35-8264-e375f36713a9","status":"Succeeded","startTime":"2022-03-18T10:24:44.2672692Z","endTime":"2022-03-18T10:24:44.3151785Z","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: + cache-control: + - no-cache + content-length: + - '527' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:25: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: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-18T10%3A24%3A44.3080762Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-18T10:24:40.7129670Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '923' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:25:15 GMT + etag: + - W/"datetime'2022-03-18T10%3A24%3A44.3080762Z'" + 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": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-18T10%3A25%3A24.9689269Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-18T10:25:18.2894806Z"},"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/southcentralusstage/operationResults/700c020c-8cf6-4a6a-9b2f-96a29f320ea0?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:25:26 GMT + etag: + - W/"datetime'2022-03-18T10%3A25%3A24.9689269Z'" + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/700c020c-8cf6-4a6a-9b2f-96a29f320ea0?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/700c020c-8cf6-4a6a-9b2f-96a29f320ea0","name":"700c020c-8cf6-4a6a-9b2f-96a29f320ea0","status":"Succeeded","startTime":"2022-03-18T10:25:24.9796006Z","endTime":"2022-03-18T10:25:25.2199502Z","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: + cache-control: + - no-cache + content-length: + - '557' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:25: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: 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-18T10%3A25%3A25.2004403Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-18T10:25:18.2894806Z"},"properties":{"poolId":"d9d7a6c2-cba4-f90a-d7a6-a90d613c4628","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '693' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:25:56 GMT + etag: + - W/"datetime'2022-03-18T10%3A25%3A25.2004403Z'" + 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": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '340' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-18T10%3A26%3A04.9160144Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-18T10:25:58.7530400Z"},"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","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '847' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:26:06 GMT + etag: + - W/"datetime'2022-03-18T10%3A26%3A04.9160144Z'" + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4","name":"db8945c7-c68e-4fe0-a1f5-c18c26517ce4","status":"Creating","startTime":"2022-03-18T10:26:04.9287236Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:26:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4","name":"db8945c7-c68e-4fe0-a1f5-c18c26517ce4","status":"Creating","startTime":"2022-03-18T10:26:04.9287236Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:27:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4","name":"db8945c7-c68e-4fe0-a1f5-c18c26517ce4","status":"Creating","startTime":"2022-03-18T10:26:04.9287236Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:27:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4","name":"db8945c7-c68e-4fe0-a1f5-c18c26517ce4","status":"Creating","startTime":"2022-03-18T10:26:04.9287236Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:28:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4","name":"db8945c7-c68e-4fe0-a1f5-c18c26517ce4","status":"Creating","startTime":"2022-03-18T10:26:04.9287236Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:28:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4","name":"db8945c7-c68e-4fe0-a1f5-c18c26517ce4","status":"Creating","startTime":"2022-03-18T10:26:04.9287236Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:29:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4","name":"db8945c7-c68e-4fe0-a1f5-c18c26517ce4","status":"Creating","startTime":"2022-03-18T10:26:04.9287236Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '569' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:29:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/db8945c7-c68e-4fe0-a1f5-c18c26517ce4","name":"db8945c7-c68e-4fe0-a1f5-c18c26517ce4","status":"Succeeded","startTime":"2022-03-18T10:26:04.9287236Z","endTime":"2022-03-18T10:29:58.6462031Z","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: + cache-control: + - no-cache + content-length: + - '580' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:30:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --service-level --usage-threshold --file-path --vnet --subnet + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-18T10%3A29%3A58.6426133Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-18T10:25:58.7530400Z"},"properties":{"fileSystemId":"0bfa86d7-55f7-e26c-b996-0a5c4513dc64","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_25ea8d48","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","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0bfa86d7-55f7-e26c-b996-0a5c4513dc64","fileSystemId":"0bfa86d7-55f7-e26c-b996-0a5c4513dc64","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2081' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:30:08 GMT + etag: + - W/"datetime'2022-03-18T10%3A29%3A58.6426133Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralusstage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v -s -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1431a596-f517-4011-ad46-20e19dbcd5b6?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '455' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:30:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1431a596-f517-4011-ad46-20e19dbcd5b6?api-version=2021-10-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: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1431a596-f517-4011-ad46-20e19dbcd5b6?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/1431a596-f517-4011-ad46-20e19dbcd5b6","name":"1431a596-f517-4011-ad46-20e19dbcd5b6","status":"Succeeded","startTime":"2022-03-18T10:30:11.2005998Z","endTime":"2022-03-18T10:30:14.0225376Z","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: + cache-control: + - no-cache + content-length: + - '604' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:30: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"2e9881fd-6c1e-76d8-aee4-88b9edf14883","created":"2022-03-18T10:30:11Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:30: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: '{"filePaths": ["/snap_file_path_1.txt", "/snap_file_path_2.txt"]}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles snapshot restore-files + Connection: + - keep-alive + Content-Length: + - '65' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v -s --file-paths + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/snapshots/cli-sn-000005/restoreFiles?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9877474b-d8d2-4b31-8414-bb94ab67f0e3?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '409' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:30:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9877474b-d8d2-4b31-8414-bb94ab67f0e3?api-version=2021-10-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 snapshot show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -s + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"2e9881fd-6c1e-76d8-aee4-88b9edf14883","created":"2022-03-18T10:30:11Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '541' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 18 Mar 2022 10:30:44 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_revert_volume_from_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_revert_volume_from_snapshot.yaml index 16333d677db..b9918e181c4 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"073f8056-1087-484b-8ad2-72c1683a53ed\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"42372afa-5d4f-49c9-9c83-7b671656dcc5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:27:39.8582286Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:39:28.3631457Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0d36ba64-0fd1-4b87-9b6e-9f691cb346be\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"25c48257-158c-44e5-8dc8-db236fed0d14\",\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/aadda346-c3f2-4b7c-84f5-8da96244fdae?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/cb28dec9-005a-4252-849f-ebc6ac121e64?api-version=2021-05-01 cache-control: - no-cache content-length: - - '779' + - '773' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:27:46 GMT + - Tue, 15 Mar 2022 12:39:34 GMT expires: - '-1' pragma: @@ -58,9 +58,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 837900c8-4d47-424d-9840-f1b93cde104a + - 6a70747d-e711-4cc9-af49-b7e6c3c76d3c x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -78,58 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/aadda346-c3f2-4b7c-84f5-8da96244fdae?api-version=2021-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 13:27:49 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: - - 35b1f42c-24a3-4552-8691-912703d8f783 - 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.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/aadda346-c3f2-4b7c-84f5-8da96244fdae?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/cb28dec9-005a-4252-849f-ebc6ac121e64?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -141,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:27:59 GMT + - Tue, 15 Mar 2022 12:39:37 GMT expires: - '-1' pragma: @@ -151,14 +102,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 240f0d9d-785e-49f5-9f51-1e591d3a1633 + - 0ade7fca-08fd-4d4d-bffd-c28c73158ea4 status: code: 200 message: OK @@ -176,17 +123,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"a2a21a37-d02a-4dee-9cc9-842e22bb9f1f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"0af8e8c2-0b23-4a13-9298-f40b1eaae203\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:27:39.8582286Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:39:28.3631457Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0d36ba64-0fd1-4b87-9b6e-9f691cb346be\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"25c48257-158c-44e5-8dc8-db236fed0d14\",\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\": @@ -195,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:27:59 GMT + - Tue, 15 Mar 2022 12:39:37 GMT etag: - - W/"a2a21a37-d02a-4dee-9cc9-842e22bb9f1f" + - W/"0af8e8c2-0b23-4a13-9298-f40b1eaae203" expires: - '-1' pragma: @@ -211,14 +158,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7962cd7d-4cd6-4ab1-9de7-c50070a346b5 + - 1816ede3-802a-4886-91f7-17bd1e2b7f25 status: code: 200 message: OK @@ -236,17 +179,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"a2a21a37-d02a-4dee-9cc9-842e22bb9f1f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"0af8e8c2-0b23-4a13-9298-f40b1eaae203\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:27:39.8582286Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:39:28.3631457Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0d36ba64-0fd1-4b87-9b6e-9f691cb346be\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"25c48257-158c-44e5-8dc8-db236fed0d14\",\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\": @@ -255,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '780' + - '774' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:28:00 GMT + - Tue, 15 Mar 2022 12:39:38 GMT etag: - - W/"a2a21a37-d02a-4dee-9cc9-842e22bb9f1f" + - W/"0af8e8c2-0b23-4a13-9298-f40b1eaae203" expires: - '-1' pragma: @@ -278,13 +221,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1eefb461-2d01-4d91-88c9-bc4e743d0ee2 + - a02e6913-8156-407e-9d42-442da5009794 status: code: 200 message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T13:27:39.8582286Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T12:39:28.3631457Z"}, "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": @@ -301,33 +244,33 @@ interactions: Connection: - keep-alive Content-Length: - - '705' + - '699' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"750a3921-5560-4312-b99e-829abc159818\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"a2849f0b-36a1-4436-8854-1b6207850eb0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:27:39.8582286Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:39:28.3631457Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"0d36ba64-0fd1-4b87-9b6e-9f691cb346be\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"25c48257-158c-44e5-8dc8-db236fed0d14\",\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/\\\"750a3921-5560-4312-b99e-829abc159818\\\"\",\r\n + \ \"etag\": \"W/\\\"a2849f0b-36a1-4436-8854-1b6207850eb0\\\"\",\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/\\\"750a3921-5560-4312-b99e-829abc159818\\\"\",\r\n + \ \"etag\": \"W/\\\"a2849f0b-36a1-4436-8854-1b6207850eb0\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -342,15 +285,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4adba37c-9a6b-4d33-9cca-816fd08d8243?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/620d38d1-b80a-4b95-8cc9-d493640e9e52?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2277' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:28:01 GMT + - Tue, 15 Mar 2022 12:39:40 GMT expires: - '-1' pragma: @@ -367,7 +310,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee268c5f-0028-4959-b6a3-be83cbedffe4 + - f9ac97cd-6a34-4810-9c74-9b13dd132ce2 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -387,9 +330,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4adba37c-9a6b-4d33-9cca-816fd08d8243?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/620d38d1-b80a-4b95-8cc9-d493640e9e52?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -401,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:28:04 GMT + - Tue, 15 Mar 2022 12:39:43 GMT expires: - '-1' pragma: @@ -418,7 +361,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 636ee798-ad19-42fd-ab75-311ff81a69da + - e33bcffe-af2c-42c2-a0b3-f3f7b5953422 status: code: 200 message: OK @@ -436,27 +379,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"9ad5f532-dc50-4b1c-afff-dfca867b1174\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"da609716-50ec-4e3a-9de8-6ee6795498c4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T13:27:39.8582286Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T12:39:28.3631457Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"0d36ba64-0fd1-4b87-9b6e-9f691cb346be\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"25c48257-158c-44e5-8dc8-db236fed0d14\",\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/\\\"9ad5f532-dc50-4b1c-afff-dfca867b1174\\\"\",\r\n + \ \"etag\": \"W/\\\"da609716-50ec-4e3a-9de8-6ee6795498c4\\\"\",\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/\\\"9ad5f532-dc50-4b1c-afff-dfca867b1174\\\"\",\r\n + \ \"etag\": \"W/\\\"da609716-50ec-4e3a-9de8-6ee6795498c4\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -471,13 +414,13 @@ interactions: cache-control: - no-cache content-length: - - '2279' + - '2273' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:28:04 GMT + - Tue, 15 Mar 2022 12:39:43 GMT etag: - - W/"9ad5f532-dc50-4b1c-afff-dfca867b1174" + - W/"da609716-50ec-4e3a-9de8-6ee6795498c4" expires: - '-1' pragma: @@ -494,7 +437,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f711aa4-f3c1-4dd4-b9cc-8ccb33b9733d + - f7bc08d9-eefa-4b5d-91ad-20f1e7deebb2 status: code: 200 message: OK @@ -510,31 +453,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A28%3A11.1546931Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:28:06.4039055Z"},"properties":{"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''2022-03-15T12%3A39%3A49.8707812Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:39:45.4231541Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d15cfbd1-4d6c-47a1-b836-82c2e99ce9b8?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a72dd145-4b66-4ea7-a835-eb2d516debff?api-version=2021-10-01 cache-control: - no-cache content-length: - - '421' + - '415' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:28:12 GMT + - Tue, 15 Mar 2022 12:39:50 GMT etag: - - W/"datetime'2022-01-07T13%3A28%3A11.1546931Z'" + - W/"datetime'2022-03-15T12%3A39%3A49.8707812Z'" expires: - '-1' pragma: @@ -546,7 +489,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -566,21 +509,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d15cfbd1-4d6c-47a1-b836-82c2e99ce9b8?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a72dd145-4b66-4ea7-a835-eb2d516debff?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d15cfbd1-4d6c-47a1-b836-82c2e99ce9b8","name":"d15cfbd1-4d6c-47a1-b836-82c2e99ce9b8","status":"Succeeded","startTime":"2022-01-07T13:28:11.1599595Z","endTime":"2022-01-07T13:28:11.18996Z","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/southcentralusstage/operationResults/a72dd145-4b66-4ea7-a835-eb2d516debff","name":"a72dd145-4b66-4ea7-a835-eb2d516debff","status":"Succeeded","startTime":"2022-03-15T12:39:49.8784348Z","endTime":"2022-03-15T12:39:49.9734329Z","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: cache-control: - no-cache content-length: - - '531' + - '527' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:28:42 GMT + - Tue, 15 Mar 2022 12:40:21 GMT expires: - '-1' pragma: @@ -589,10 +532,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -614,23 +553,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T13%3A28%3A11.186437Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:28:06.4039055Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T12%3A39%3A49.9617918Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:39:45.4231541Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '467' + - '462' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:28:42 GMT + - Tue, 15 Mar 2022 12:40:21 GMT etag: - - W/"datetime'2022-01-07T13%3A28%3A11.186437Z'" + - W/"datetime'2022-03-15T12%3A39%3A49.9617918Z'" expires: - '-1' pragma: @@ -639,10 +578,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -663,31 +598,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A28%3A46.5612366Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:28:43.7347048Z"},"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''2022-03-15T12%3A40%3A30.2229092Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:40:24.9756387Z"},"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/southcentralusstage/operationResults/60459af2-f2d7-41f7-900c-e3d0ca345042?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/24f16a7e-12f2-424e-8345-42aa9e26a708?api-version=2021-10-01 cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:28:46 GMT + - Tue, 15 Mar 2022 12:40:31 GMT etag: - - W/"datetime'2022-01-07T13%3A28%3A46.5612366Z'" + - W/"datetime'2022-03-15T12%3A40%3A30.2229092Z'" expires: - '-1' pragma: @@ -699,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-powered-by: - ASP.NET status: @@ -719,21 +654,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60459af2-f2d7-41f7-900c-e3d0ca345042?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/24f16a7e-12f2-424e-8345-42aa9e26a708?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/60459af2-f2d7-41f7-900c-e3d0ca345042","name":"60459af2-f2d7-41f7-900c-e3d0ca345042","status":"Succeeded","startTime":"2022-01-07T13:28:46.5703811Z","endTime":"2022-01-07T13:28:46.902461Z","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/southcentralusstage/operationResults/24f16a7e-12f2-424e-8345-42aa9e26a708","name":"24f16a7e-12f2-424e-8345-42aa9e26a708","status":"Succeeded","startTime":"2022-03-15T12:40:30.231021Z","endTime":"2022-03-15T12:40:30.5457757Z","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: cache-control: - no-cache content-length: - - '562' + - '556' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:29:18 GMT + - Tue, 15 Mar 2022 12:41:01 GMT expires: - '-1' pragma: @@ -767,23 +702,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T13%3A28%3A46.8930572Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:28:43.7347048Z"},"properties":{"poolId":"836bb889-8106-5ed0-7b97-0a9a6d5dc8e0","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T12%3A40%3A30.5355976Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:40:24.9756387Z"},"properties":{"poolId":"2ec0b1e7-d806-3dbc-01bc-6df590859d2e","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '699' + - '693' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:29:18 GMT + - Tue, 15 Mar 2022 12:41:01 GMT etag: - - W/"datetime'2022-01-07T13%3A28%3A46.8930572Z'" + - W/"datetime'2022-03-15T12%3A40%3A30.5355976Z'" expires: - '-1' pragma: @@ -805,7 +740,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/cli-subnet-lefr-02"}}' + "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", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -816,31 +752,31 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '372' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A29%3A24.4460508Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:29:19.1576910Z"},"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''2022-03-15T12%3A41%3A09.3375362Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:41:04.2504312Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 cache-control: - no-cache content-length: - - '820' + - '877' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:29:24 GMT + - Tue, 15 Mar 2022 12:41:09 GMT etag: - - W/"datetime'2022-01-07T13%3A29%3A24.4460508Z'" + - W/"datetime'2022-03-15T12%3A41%3A09.3375362Z'" expires: - '-1' pragma: @@ -852,7 +788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -872,21 +808,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b","name":"48ee5583-190c-471f-b5fe-2994fa97063b","status":"Creating","startTime":"2022-01-07T13:29:24.4513462Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79","name":"8ee6a2b3-a98a-4031-8831-5ea685b75c79","status":"Creating","startTime":"2022-03-15T12:41:09.348153Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:29:55 GMT + - Tue, 15 Mar 2022 12:41:40 GMT expires: - '-1' pragma: @@ -895,10 +831,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -920,21 +852,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b","name":"48ee5583-190c-471f-b5fe-2994fa97063b","status":"Creating","startTime":"2022-01-07T13:29:24.4513462Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79","name":"8ee6a2b3-a98a-4031-8831-5ea685b75c79","status":"Creating","startTime":"2022-03-15T12:41:09.348153Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:30:25 GMT + - Tue, 15 Mar 2022 12:42:11 GMT expires: - '-1' pragma: @@ -943,10 +875,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -968,21 +896,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b","name":"48ee5583-190c-471f-b5fe-2994fa97063b","status":"Creating","startTime":"2022-01-07T13:29:24.4513462Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79","name":"8ee6a2b3-a98a-4031-8831-5ea685b75c79","status":"Creating","startTime":"2022-03-15T12:41:09.348153Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:30:56 GMT + - Tue, 15 Mar 2022 12:42:41 GMT expires: - '-1' pragma: @@ -991,10 +919,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1016,21 +940,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b","name":"48ee5583-190c-471f-b5fe-2994fa97063b","status":"Creating","startTime":"2022-01-07T13:29:24.4513462Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79","name":"8ee6a2b3-a98a-4031-8831-5ea685b75c79","status":"Creating","startTime":"2022-03-15T12:41:09.348153Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:31:26 GMT + - Tue, 15 Mar 2022 12:43:11 GMT expires: - '-1' pragma: @@ -1039,10 +963,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1064,21 +984,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b","name":"48ee5583-190c-471f-b5fe-2994fa97063b","status":"Creating","startTime":"2022-01-07T13:29:24.4513462Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79","name":"8ee6a2b3-a98a-4031-8831-5ea685b75c79","status":"Creating","startTime":"2022-03-15T12:41:09.348153Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:31:56 GMT + - Tue, 15 Mar 2022 12:43:41 GMT expires: - '-1' pragma: @@ -1087,10 +1007,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1112,21 +1028,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b","name":"48ee5583-190c-471f-b5fe-2994fa97063b","status":"Creating","startTime":"2022-01-07T13:29:24.4513462Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79","name":"8ee6a2b3-a98a-4031-8831-5ea685b75c79","status":"Creating","startTime":"2022-03-15T12:41:09.348153Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:32:26 GMT + - Tue, 15 Mar 2022 12:44:11 GMT expires: - '-1' pragma: @@ -1135,10 +1051,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1160,21 +1072,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b","name":"48ee5583-190c-471f-b5fe-2994fa97063b","status":"Creating","startTime":"2022-01-07T13:29:24.4513462Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-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/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79","name":"8ee6a2b3-a98a-4031-8831-5ea685b75c79","status":"Creating","startTime":"2022-03-15T12:41:09.348153Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '575' + - '568' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:32:56 GMT + - Tue, 15 Mar 2022 12:44:41 GMT expires: - '-1' pragma: @@ -1183,10 +1095,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1208,21 +1116,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/48ee5583-190c-471f-b5fe-2994fa97063b","name":"48ee5583-190c-471f-b5fe-2994fa97063b","status":"Succeeded","startTime":"2022-01-07T13:29:24.4513462Z","endTime":"2022-01-07T13:33:07.9379606Z","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/southcentralusstage/operationResults/8ee6a2b3-a98a-4031-8831-5ea685b75c79","name":"8ee6a2b3-a98a-4031-8831-5ea685b75c79","status":"Succeeded","startTime":"2022-03-15T12:41:09.348153Z","endTime":"2022-03-15T12:45:03.9048254Z","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: cache-control: - no-cache content-length: - - '586' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:33:27 GMT + - Tue, 15 Mar 2022 12:45:12 GMT expires: - '-1' pragma: @@ -1231,10 +1139,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1256,23 +1160,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --service-level --usage-threshold --file-path --vnet --subnet User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T13%3A33%3A07.9342952Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:29:19.1576910Z"},"properties":{"fileSystemId":"48e69140-f302-dbea-b055-042d93fd8aca","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_1a18ae39","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","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"48e69140-f302-dbea-b055-042d93fd8aca","fileSystemId":"48e69140-f302-dbea-b055-042d93fd8aca","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T12%3A45%3A03.8888181Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:41:04.2504312Z"},"properties":{"fileSystemId":"fc35514c-dfc2-145f-cc18-e870f1c5b2f7","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2515b765","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","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"fc35514c-dfc2-145f-cc18-e870f1c5b2f7","fileSystemId":"fc35514c-dfc2-145f-cc18-e870f1c5b2f7","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2054' + - '2081' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:33:27 GMT + - Tue, 15 Mar 2022 12:45:12 GMT etag: - - W/"datetime'2022-01-07T13%3A33%3A07.9342952Z'" + - W/"datetime'2022-03-15T12%3A45%3A03.8888181Z'" expires: - '-1' pragma: @@ -1281,10 +1185,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1304,33 +1204,33 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/36ce7062-c54c-48ba-a04b-03309d71919f?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0107eff-4cec-4a6a-836b-621c16dc62c4?api-version=2021-10-01 cache-control: - no-cache content-length: - - '461' + - '455' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:33:29 GMT + - Tue, 15 Mar 2022 12:45:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/36ce7062-c54c-48ba-a04b-03309d71919f?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0107eff-4cec-4a6a-836b-621c16dc62c4?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1340,7 +1240,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1360,21 +1260,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/36ce7062-c54c-48ba-a04b-03309d71919f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d0107eff-4cec-4a6a-836b-621c16dc62c4?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/36ce7062-c54c-48ba-a04b-03309d71919f","name":"36ce7062-c54c-48ba-a04b-03309d71919f","status":"Succeeded","startTime":"2022-01-07T13:33:29.7303112Z","endTime":"2022-01-07T13:33:32.2553882Z","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/southcentralusstage/operationResults/d0107eff-4cec-4a6a-836b-621c16dc62c4","name":"d0107eff-4cec-4a6a-836b-621c16dc62c4","status":"Succeeded","startTime":"2022-03-15T12:45:14.9537769Z","endTime":"2022-03-15T12:45:17.0759386Z","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: cache-control: - no-cache content-length: - - '610' + - '604' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:33:59 GMT + - Tue, 15 Mar 2022 12:45:44 GMT expires: - '-1' pragma: @@ -1383,10 +1283,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1408,21 +1304,21 @@ interactions: ParameterSetName: - -g -a -p -v -s -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"e199f378-a39c-7c3f-c2ee-f5641f254163","created":"2022-01-07T13:33:29Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"df782ee1-7919-58dd-3d44-6359c3e1c86e","created":"2022-03-15T12:45:15Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:33:59 GMT + - Tue, 15 Mar 2022 12:45:44 GMT expires: - '-1' pragma: @@ -1431,10 +1327,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1456,21 +1348,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"e199f378-a39c-7c3f-c2ee-f5641f254163","created":"2022-01-07T13:33:29Z"}}]}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"df782ee1-7919-58dd-3d44-6359c3e1c86e","created":"2022-03-15T12:45:15Z"}}]}' headers: cache-control: - no-cache content-length: - - '559' + - '553' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:34:00 GMT + - Tue, 15 Mar 2022 12:45:45 GMT expires: - '-1' pragma: @@ -1479,10 +1371,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1504,21 +1392,21 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"e199f378-a39c-7c3f-c2ee-f5641f254163","created":"2022-01-07T13:33:29Z"}}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"df782ee1-7919-58dd-3d44-6359c3e1c86e","created":"2022-03-15T12:45:15Z"}}' headers: cache-control: - no-cache content-length: - - '547' + - '541' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:34:02 GMT + - Tue, 15 Mar 2022 12:45:48 GMT expires: - '-1' pragma: @@ -1527,10 +1415,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1539,7 +1423,7 @@ interactions: code: 200 message: OK - request: - body: '{"snapshotId": "e199f378-a39c-7c3f-c2ee-f5641f254163"}' + body: '{"snapshotId": "df782ee1-7919-58dd-3d44-6359c3e1c86e"}' headers: Accept: - '*/*' @@ -1556,25 +1440,25 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/revert?api-version=2021-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23cd4c0d-0823-475f-915e-388de09d1c54?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/225ed45d-ac9c-47ff-bff1-e2cf0fc54ec0?api-version=2021-10-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 07 Jan 2022 13:34:03 GMT + - Tue, 15 Mar 2022 12:45:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23cd4c0d-0823-475f-915e-388de09d1c54?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/225ed45d-ac9c-47ff-bff1-e2cf0fc54ec0?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1604,21 +1488,21 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23cd4c0d-0823-475f-915e-388de09d1c54?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/225ed45d-ac9c-47ff-bff1-e2cf0fc54ec0?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23cd4c0d-0823-475f-915e-388de09d1c54","name":"23cd4c0d-0823-475f-915e-388de09d1c54","status":"Succeeded","startTime":"2022-01-07T13:34:03.8384573Z","endTime":"2022-01-07T13:34:07.0721049Z","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/southcentralusstage/operationResults/225ed45d-ac9c-47ff-bff1-e2cf0fc54ec0","name":"225ed45d-ac9c-47ff-bff1-e2cf0fc54ec0","status":"Succeeded","startTime":"2022-03-15T12:45:50.0904402Z","endTime":"2022-03-15T12:45:53.3960983Z","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: cache-control: - no-cache content-length: - - '586' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:34:34 GMT + - Tue, 15 Mar 2022 12:46:19 GMT expires: - '-1' pragma: @@ -1652,21 +1536,21 @@ interactions: ParameterSetName: - -g -a -p -v -s User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/23cd4c0d-0823-475f-915e-388de09d1c54?api-version=2021-08-01&operationResultResponseType=Location + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/225ed45d-ac9c-47ff-bff1-e2cf0fc54ec0?api-version=2021-10-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''2022-01-07T13%3A34%3A07.0696172Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T13:29:19.1576910Z"},"properties":{"fileSystemId":"48e69140-f302-dbea-b055-042d93fd8aca","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"8f672e56-f2b2-11ea-b140-b6c0e8ee56e4","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_1a18ae39","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","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"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":"836bb889-8106-5ed0-7b97-0a9a6d5dc8e0","mountTargets":[{"provisioningState":"","mountTargetId":"48e69140-f302-dbea-b055-042d93fd8aca","fileSystemId":"48e69140-f302-dbea-b055-042d93fd8aca","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","encryptionKeySource":"Microsoft.NetApp","volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T12%3A45%3A53.3853614Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T12:41:04.2504312Z"},"properties":{"fileSystemId":"fc35514c-dfc2-145f-cc18-e870f1c5b2f7","serviceLevel":"Premium","creationToken":"cli-vol-000004","ownerId":"1a1854d0-5b82-11e9-9e4a-3a8c013b5748","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_2515b765","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","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"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":"2ec0b1e7-d806-3dbc-01bc-6df590859d2e","mountTargets":[{"provisioningState":"","mountTargetId":"fc35514c-dfc2-145f-cc18-e870f1c5b2f7","fileSystemId":"fc35514c-dfc2-145f-cc18-e870f1c5b2f7","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"ldapEnabled":false,"unixPermissions":"0770","encryptionKeySource":"Microsoft.NetApp","volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2491' + - '2485' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:34:34 GMT + - Tue, 15 Mar 2022 12:46:20 GMT expires: - '-1' pragma: @@ -1700,21 +1584,21 @@ interactions: ParameterSetName: - -g -a -p -v User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots?api-version=2021-10-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/snapshots/cli-sn-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sn-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"e199f378-a39c-7c3f-c2ee-f5641f254163","created":"2022-01-07T13:33:29Z"}}]}' + 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":"southcentralusstage","properties":{"provisioningState":"Succeeded","snapshotId":"df782ee1-7919-58dd-3d44-6359c3e1c86e","created":"2022-03-15T12:45:15Z"}}]}' headers: cache-control: - no-cache content-length: - - '559' + - '553' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 13:34:35 GMT + - Tue, 15 Mar 2022 12:46:21 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 013f80af4ca..381c9437351 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 @@ -11,31 +11,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A15%3A32.514181Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:15:26.5899526Z"},"properties":{"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''2022-03-15T11%3A50%3A08.6179471Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:50:04.9949213Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b015f58d-b1a9-4396-a960-7d4a450dc469?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fe9dab01-cf6a-40d0-9746-f01c97b41e52?api-version=2021-10-01 cache-control: - no-cache content-length: - - '427' + - '422' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:15:33 GMT + - Tue, 15 Mar 2022 11:50:08 GMT etag: - - W/"datetime'2022-01-07T09%3A15%3A32.514181Z'" + - W/"datetime'2022-03-15T11%3A50%3A08.6179471Z'" expires: - '-1' pragma: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b015f58d-b1a9-4396-a960-7d4a450dc469?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fe9dab01-cf6a-40d0-9746-f01c97b41e52?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b015f58d-b1a9-4396-a960-7d4a450dc469","name":"b015f58d-b1a9-4396-a960-7d4a450dc469","status":"Succeeded","startTime":"2022-01-07T09:15:32.5177073Z","endTime":"2022-01-07T09:15:32.5786379Z","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/southcentralusstage/operationResults/fe9dab01-cf6a-40d0-9746-f01c97b41e52","name":"fe9dab01-cf6a-40d0-9746-f01c97b41e52","status":"Succeeded","startTime":"2022-03-15T11:50:08.6240785Z","endTime":"2022-03-15T11:50:08.6690796Z","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: cache-control: - no-cache content-length: - - '540' + - '534' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:04 GMT + - Tue, 15 Mar 2022 11:50:40 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A15%3A32.5722023Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:15:26.5899526Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A50%3A08.6634374Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:50:04.9949213Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '475' + - '469' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:04 GMT + - Tue, 15 Mar 2022 11:50:40 GMT etag: - - W/"datetime'2022-01-07T09%3A15%3A32.5722023Z'" + - W/"datetime'2022-03-15T11%3A50%3A08.6634374Z'" expires: - '-1' pragma: @@ -165,31 +165,31 @@ interactions: Connection: - keep-alive Content-Length: - - '184' + - '178' Content-Type: - application/json ParameterSetName: - -g -a --snapshot-policy-name -l -u --hourly-minute --enabled User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A16%3A10.0562464Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:16:05.2232131Z"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"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''2022-03-15T11%3A50%3A47.1599366Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:50:43.1207301Z"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e5072c21-c99f-44c1-8266-9264e9cb89d1?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/7cd8ed21-f44d-44e6-af45-1cc501408386?api-version=2021-10-01 cache-control: - no-cache content-length: - - '624' + - '618' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:10 GMT + - Tue, 15 Mar 2022 11:50:48 GMT etag: - - W/"datetime'2022-01-07T09%3A16%3A10.0562464Z'" + - W/"datetime'2022-03-15T11%3A50%3A47.1599366Z'" expires: - '-1' pragma: @@ -221,23 +221,23 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A16%3A10.1108472Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:16:05.2232131Z"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"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''2022-03-15T11%3A50%3A47.2091263Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:50:43.1207301Z"},"properties":{"enabled":true,"hourlySchedule":{"snapshotsToKeep":1,"minute":10},"dailySchedule":{},"weeklySchedule":{},"monthlySchedule":{},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '625' + - '619' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:12 GMT + - Tue, 15 Mar 2022 11:50:48 GMT etag: - - W/"datetime'2022-01-07T09%3A16%3A10.1108472Z'" + - W/"datetime'2022-03-15T11%3A50%3A47.2091263Z'" expires: - '-1' pragma: @@ -258,8 +258,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -270,23 +270,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"342ee3ee-072a-48fa-9876-3fb12bd32730\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"cf151c2d-28f3-4269-8ffc-399a96f7e57f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:16:13.4936548Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:50:50.7946256Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5c2573b4-4618-4a3d-b721-44aa05777252\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a3a085d3-e852-40d9-819a-1ab53ebdc416\",\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\": @@ -295,15 +295,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/ff55d433-e6b8-49b3-a6f0-450b6cc0abf7?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/bb63957f-aa62-4d13-b290-6f121140d2bb?api-version=2021-05-01 cache-control: - no-cache content-length: - - '786' + - '780' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:19 GMT + - Tue, 15 Mar 2022 11:50:57 GMT expires: - '-1' pragma: @@ -316,12 +316,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 27e117ab-ecfa-4051-9a34-47b5ed68cf04 + - ba97cf73-6c49-4e66-a992-d99698a47740 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 - message: '' + message: Created - request: body: null headers: @@ -336,9 +336,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/ff55d433-e6b8-49b3-a6f0-450b6cc0abf7?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/bb63957f-aa62-4d13-b290-6f121140d2bb?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -350,7 +350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:22 GMT + - Tue, 15 Mar 2022 11:51:00 GMT expires: - '-1' pragma: @@ -367,10 +367,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1064f591-5091-4018-bc68-546e10747a00 + - 8c75dfc0-e707-4198-a635-efd5b884f958 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -385,17 +385,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"4b52fd20-d046-46f7-baf4-64740507aa7f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3d1c0652-eb66-45bd-9059-783e0bb5f71b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:16:13.4936548Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:50:50.7946256Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5c2573b4-4618-4a3d-b721-44aa05777252\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a3a085d3-e852-40d9-819a-1ab53ebdc416\",\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\": @@ -404,13 +404,13 @@ interactions: cache-control: - no-cache content-length: - - '787' + - '781' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:22 GMT + - Tue, 15 Mar 2022 11:51:00 GMT etag: - - W/"4b52fd20-d046-46f7-baf4-64740507aa7f" + - W/"3d1c0652-eb66-45bd-9059-783e0bb5f71b" expires: - '-1' pragma: @@ -427,10 +427,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c9f7894c-153f-43e5-b630-1b34989bc961 + - 182c4776-1ff1-4170-aec2-605cd4f96a0d status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -445,17 +445,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"4b52fd20-d046-46f7-baf4-64740507aa7f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3d1c0652-eb66-45bd-9059-783e0bb5f71b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:16:13.4936548Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:50:50.7946256Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5c2573b4-4618-4a3d-b721-44aa05777252\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a3a085d3-e852-40d9-819a-1ab53ebdc416\",\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\": @@ -464,13 +464,13 @@ interactions: cache-control: - no-cache content-length: - - '787' + - '781' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:24 GMT + - Tue, 15 Mar 2022 11:51:01 GMT etag: - - W/"4b52fd20-d046-46f7-baf4-64740507aa7f" + - W/"3d1c0652-eb66-45bd-9059-783e0bb5f71b" expires: - '-1' pragma: @@ -487,13 +487,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f7088a7c-8aaf-4373-9427-301e34532c08 + - 79fbe204-4cc5-4b79-b9e9-22dce5d0e80d status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T09:16:13.4936548Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T11:50:50.7946256Z"}, "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"}}], @@ -509,33 +509,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"60fd5984-0876-411c-9b9a-0b772ff51181\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8ccdc80d-2a08-4be8-b6a3-67e2bc037992\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:16:13.4936548Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:50:50.7946256Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5c2573b4-4618-4a3d-b721-44aa05777252\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a3a085d3-e852-40d9-819a-1ab53ebdc416\",\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/\\\"60fd5984-0876-411c-9b9a-0b772ff51181\\\"\",\r\n + \ \"etag\": \"W/\\\"8ccdc80d-2a08-4be8-b6a3-67e2bc037992\\\"\",\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/\\\"60fd5984-0876-411c-9b9a-0b772ff51181\\\"\",\r\n + \ \"etag\": \"W/\\\"8ccdc80d-2a08-4be8-b6a3-67e2bc037992\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -550,15 +550,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/65b358c5-e5b7-45a2-a972-c0ffd0685d47?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3e8c8822-65ce-48a9-83f7-52c54ec8cf3e?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2265' + - '2259' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:25 GMT + - Tue, 15 Mar 2022 11:51:02 GMT expires: - '-1' pragma: @@ -575,12 +575,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0e2caa8b-6b1e-48c8-8360-bf8424d8ac4a + - 5604eab4-f4ec-435d-8a48-1e9399ae85c8 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -595,9 +595,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/65b358c5-e5b7-45a2-a972-c0ffd0685d47?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3e8c8822-65ce-48a9-83f7-52c54ec8cf3e?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -609,7 +609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:28 GMT + - Tue, 15 Mar 2022 11:51:06 GMT expires: - '-1' pragma: @@ -626,10 +626,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a41301ec-4be0-406f-b515-5f845c2be8ff + - 34489281-1c1e-4a5a-ade6-588614739ced status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -644,27 +644,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"22ac18c7-ebea-4d1d-a6b5-86ab6098d133\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e19d74da-93c5-4df1-82a8-afeac2f26d1d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T09:16:13.4936548Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T11:50:50.7946256Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5c2573b4-4618-4a3d-b721-44aa05777252\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a3a085d3-e852-40d9-819a-1ab53ebdc416\",\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/\\\"22ac18c7-ebea-4d1d-a6b5-86ab6098d133\\\"\",\r\n + \ \"etag\": \"W/\\\"e19d74da-93c5-4df1-82a8-afeac2f26d1d\\\"\",\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/\\\"22ac18c7-ebea-4d1d-a6b5-86ab6098d133\\\"\",\r\n + \ \"etag\": \"W/\\\"e19d74da-93c5-4df1-82a8-afeac2f26d1d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -679,13 +679,13 @@ interactions: cache-control: - no-cache content-length: - - '2267' + - '2261' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:28 GMT + - Tue, 15 Mar 2022 11:51:06 GMT etag: - - W/"22ac18c7-ebea-4d1d-a6b5-86ab6098d133" + - W/"e19d74da-93c5-4df1-82a8-afeac2f26d1d" expires: - '-1' pragma: @@ -702,10 +702,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12ec30c9-b3cc-4f9b-9cd6-5b288b92bebf + - 5ca0de82-1959-4079-95db-941d3932918a status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": "Premium"}}' @@ -719,31 +719,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A16%3A34.6111289Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:16:29.5405357Z"},"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''2022-03-15T11%3A51%3A12.5861917Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:51:07.9868896Z"},"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/southcentralusstage/operationResults/d43f0bca-8b41-47ae-9a5a-26401d7a1ab5?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd1ad4cc-324c-47a3-962b-04a95f3b4eab?api-version=2021-10-01 cache-control: - no-cache content-length: - - '591' + - '585' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:16:35 GMT + - Tue, 15 Mar 2022 11:51:13 GMT etag: - - W/"datetime'2022-01-07T09%3A16%3A34.6111289Z'" + - W/"datetime'2022-03-15T11%3A51%3A12.5861917Z'" expires: - '-1' pragma: @@ -755,7 +755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -775,21 +775,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d43f0bca-8b41-47ae-9a5a-26401d7a1ab5?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd1ad4cc-324c-47a3-962b-04a95f3b4eab?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d43f0bca-8b41-47ae-9a5a-26401d7a1ab5","name":"d43f0bca-8b41-47ae-9a5a-26401d7a1ab5","status":"Succeeded","startTime":"2022-01-07T09:16:34.6174912Z","endTime":"2022-01-07T09:16:35.0661984Z","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/southcentralusstage/operationResults/fd1ad4cc-324c-47a3-962b-04a95f3b4eab","name":"fd1ad4cc-324c-47a3-962b-04a95f3b4eab","status":"Succeeded","startTime":"2022-03-15T11:51:12.5944996Z","endTime":"2022-03-15T11:51:12.7194982Z","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: cache-control: - no-cache content-length: - - '570' + - '564' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:17:05 GMT + - Tue, 15 Mar 2022 11:51:43 GMT expires: - '-1' pragma: @@ -823,23 +823,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A16%3A35.0556508Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:16:29.5405357Z"},"properties":{"poolId":"f8a459bd-a7e4-7685-15c0-8baaea88f5dd","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T11%3A51%3A12.7091119Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:51:07.9868896Z"},"properties":{"poolId":"cbdc3900-a20b-38de-bceb-acd37f47c233","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '706' + - '700' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:17:05 GMT + - Tue, 15 Mar 2022 11:51:43 GMT etag: - - W/"datetime'2022-01-07T09%3A16%3A35.0556508Z'" + - W/"datetime'2022-03-15T11%3A51%3A12.7091119Z'" expires: - '-1' pragma: @@ -862,7 +862,8 @@ interactions: - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000005", "serviceLevel": "Premium", "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", - "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"}}}}' + "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"}}, + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -873,32 +874,32 @@ interactions: Connection: - keep-alive Content-Length: - - '602' + - '628' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A17%3A13.3011784Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:17:07.2567511Z"},"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''2022-03-15T11%3A51%3A48.4870577Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:51:45.1064637Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1079' + - '1136' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:17:14 GMT + - Tue, 15 Mar 2022 11:51:49 GMT etag: - - W/"datetime'2022-01-07T09%3A17%3A13.3011784Z'" + - W/"datetime'2022-03-15T11%3A51%3A48.4870577Z'" expires: - '-1' pragma: @@ -910,7 +911,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -931,21 +932,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236","name":"3a10c636-be9c-48fd-8024-bf8faa935236","status":"Creating","startTime":"2022-01-07T09:17:13.3314677Z","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/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d","name":"eb508f65-d9f8-4380-8edc-c42a216c636d","status":"Creating","startTime":"2022-03-15T11:51:48.4960953Z","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: cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:17:45 GMT + - Tue, 15 Mar 2022 11:52:19 GMT expires: - '-1' pragma: @@ -980,21 +981,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236","name":"3a10c636-be9c-48fd-8024-bf8faa935236","status":"Creating","startTime":"2022-01-07T09:17:13.3314677Z","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/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d","name":"eb508f65-d9f8-4380-8edc-c42a216c636d","status":"Creating","startTime":"2022-03-15T11:51:48.4960953Z","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: cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:18:15 GMT + - Tue, 15 Mar 2022 11:52:50 GMT expires: - '-1' pragma: @@ -1029,21 +1030,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236","name":"3a10c636-be9c-48fd-8024-bf8faa935236","status":"Creating","startTime":"2022-01-07T09:17:13.3314677Z","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/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d","name":"eb508f65-d9f8-4380-8edc-c42a216c636d","status":"Creating","startTime":"2022-03-15T11:51:48.4960953Z","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: cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:18:45 GMT + - Tue, 15 Mar 2022 11:53:20 GMT expires: - '-1' pragma: @@ -1078,21 +1079,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236","name":"3a10c636-be9c-48fd-8024-bf8faa935236","status":"Creating","startTime":"2022-01-07T09:17:13.3314677Z","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/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d","name":"eb508f65-d9f8-4380-8edc-c42a216c636d","status":"Creating","startTime":"2022-03-15T11:51:48.4960953Z","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: cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:19:15 GMT + - Tue, 15 Mar 2022 11:53:50 GMT expires: - '-1' pragma: @@ -1127,21 +1128,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236","name":"3a10c636-be9c-48fd-8024-bf8faa935236","status":"Creating","startTime":"2022-01-07T09:17:13.3314677Z","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/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d","name":"eb508f65-d9f8-4380-8edc-c42a216c636d","status":"Creating","startTime":"2022-03-15T11:51:48.4960953Z","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: cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:19:45 GMT + - Tue, 15 Mar 2022 11:54:20 GMT expires: - '-1' pragma: @@ -1176,21 +1177,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236","name":"3a10c636-be9c-48fd-8024-bf8faa935236","status":"Creating","startTime":"2022-01-07T09:17:13.3314677Z","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/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d","name":"eb508f65-d9f8-4380-8edc-c42a216c636d","status":"Creating","startTime":"2022-03-15T11:51:48.4960953Z","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: cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:20:15 GMT + - Tue, 15 Mar 2022 11:54:51 GMT expires: - '-1' pragma: @@ -1225,21 +1226,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236","name":"3a10c636-be9c-48fd-8024-bf8faa935236","status":"Creating","startTime":"2022-01-07T09:17:13.3314677Z","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/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d","name":"eb508f65-d9f8-4380-8edc-c42a216c636d","status":"Creating","startTime":"2022-03-15T11:51:48.4960953Z","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: cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:20:46 GMT + - Tue, 15 Mar 2022 11:55:21 GMT expires: - '-1' pragma: @@ -1274,21 +1275,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3a10c636-be9c-48fd-8024-bf8faa935236","name":"3a10c636-be9c-48fd-8024-bf8faa935236","status":"Succeeded","startTime":"2022-01-07T09:17:13.3314677Z","endTime":"2022-01-07T09:21:02.739526Z","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/southcentralusstage/operationResults/eb508f65-d9f8-4380-8edc-c42a216c636d","name":"eb508f65-d9f8-4380-8edc-c42a216c636d","status":"Succeeded","startTime":"2022-03-15T11:51:48.4960953Z","endTime":"2022-03-15T11:55:39.5586083Z","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: cache-control: - no-cache content-length: - - '592' + - '587' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:21:16 GMT + - Tue, 15 Mar 2022 11:55:51 GMT expires: - '-1' pragma: @@ -1323,23 +1324,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A21%3A02.7291224Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:17:07.2567511Z"},"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"}},"fileSystemId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_1d89268f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","fileSystemId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000005","name":"cli-acc-000002/cli-pool-000004/cli-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A55%3A39.551806Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:51:45.1064637Z"},"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"}},"fileSystemId":"a90f4fad-f79f-520f-9045-1799d7ff999b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_4b9774d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"a90f4fad-f79f-520f-9045-1799d7ff999b","fileSystemId":"a90f4fad-f79f-520f-9045-1799d7ff999b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2313' + - '2339' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:21:16 GMT + - Tue, 15 Mar 2022 11:55:51 GMT etag: - - W/"datetime'2022-01-07T09%3A21%3A02.7291224Z'" + - W/"datetime'2022-03-15T11%3A55%3A39.551806Z'" expires: - '-1' pragma: @@ -1373,21 +1374,21 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A21%3A02.7291224Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:17:07.2567511Z"},"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"}},"fileSystemId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_1d89268f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","fileSystemId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/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''2022-03-15T11%3A55%3A39.551806Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:51:45.1064637Z"},"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"}},"fileSystemId":"a90f4fad-f79f-520f-9045-1799d7ff999b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_4b9774d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"a90f4fad-f79f-520f-9045-1799d7ff999b","fileSystemId":"a90f4fad-f79f-520f-9045-1799d7ff999b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '2325' + - '2351' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:21:17 GMT + - Tue, 15 Mar 2022 11:55:52 GMT expires: - '-1' pragma: @@ -1410,7 +1411,8 @@ interactions: - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000006", "serviceLevel": "Premium", "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", - "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"}}}}' + "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"}}, + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -1421,32 +1423,32 @@ interactions: Connection: - keep-alive Content-Length: - - '602' + - '628' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A21%3A22.5322393Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:21:19.3069207Z"},"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''2022-03-15T11%3A55%3A58.3292835Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:55:54.0437482Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/18d2156c-fd85-4431-8c4b-a923a685966c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b038816c-2cba-4fff-ba47-df268132fccf?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1079' + - '1136' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:21:23 GMT + - Tue, 15 Mar 2022 11:55:58 GMT etag: - - W/"datetime'2022-01-07T09%3A21%3A22.5322393Z'" + - W/"datetime'2022-03-15T11%3A55%3A58.3292835Z'" expires: - '-1' pragma: @@ -1458,7 +1460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -1479,21 +1481,21 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/18d2156c-fd85-4431-8c4b-a923a685966c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b038816c-2cba-4fff-ba47-df268132fccf?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/18d2156c-fd85-4431-8c4b-a923a685966c","name":"18d2156c-fd85-4431-8c4b-a923a685966c","status":"Succeeded","startTime":"2022-01-07T09:21:22.5333624Z","endTime":"2022-01-07T09:21:29.6125167Z","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/southcentralusstage/operationResults/b038816c-2cba-4fff-ba47-df268132fccf","name":"b038816c-2cba-4fff-ba47-df268132fccf","status":"Succeeded","startTime":"2022-03-15T11:55:58.3344661Z","endTime":"2022-03-15T11:56:11.6070351Z","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: cache-control: - no-cache content-length: - - '593' + - '587' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:21:53 GMT + - Tue, 15 Mar 2022 11:56:30 GMT expires: - '-1' pragma: @@ -1528,23 +1530,23 @@ interactions: - -g -a -p -v -l --vnet --subnet --file-path --service-level --usage-threshold --snapshot-policy-id User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A21%3A29.6087927Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:21:19.3069207Z"},"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"}},"fileSystemId":"7ee1884d-4757-99c4-a01f-11ab61afeac2","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_1d89268f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"7ee1884d-4757-99c4-a01f-11ab61afeac2","fileSystemId":"7ee1884d-4757-99c4-a01f-11ab61afeac2","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000006","name":"cli-acc-000002/cli-pool-000004/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T11%3A56%3A11.582077Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:55:54.0437482Z"},"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"}},"fileSystemId":"1fc4109a-73f4-9c0b-1073-777b709ffb15","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_4b9774d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"1fc4109a-73f4-9c0b-1073-777b709ffb15","fileSystemId":"1fc4109a-73f4-9c0b-1073-777b709ffb15","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2313' + - '2339' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:21:53 GMT + - Tue, 15 Mar 2022 11:56:30 GMT etag: - - W/"datetime'2022-01-07T09%3A21%3A29.6087927Z'" + - W/"datetime'2022-03-15T11%3A56%3A11.582077Z'" expires: - '-1' pragma: @@ -1578,21 +1580,21 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A21%3A29.6087927Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:21:19.3069207Z"},"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"}},"fileSystemId":"7ee1884d-4757-99c4-a01f-11ab61afeac2","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_1d89268f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"7ee1884d-4757-99c4-a01f-11ab61afeac2","fileSystemId":"7ee1884d-4757-99c4-a01f-11ab61afeac2","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","provisioningState":"Succeeded"}},{"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''2022-01-07T09%3A21%3A02.7291224Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:17:07.2567511Z"},"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"}},"fileSystemId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_1d89268f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","fileSystemId":"0ae3725c-8543-2fe6-68af-f09f2804dc21","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/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''2022-03-15T11%3A55%3A39.551806Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:51:45.1064637Z"},"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"}},"fileSystemId":"a90f4fad-f79f-520f-9045-1799d7ff999b","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_4b9774d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"a90f4fad-f79f-520f-9045-1799d7ff999b","fileSystemId":"a90f4fad-f79f-520f-9045-1799d7ff999b","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}},{"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''2022-03-15T11%3A56%3A11.582077Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:55:54.0437482Z"},"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"}},"fileSystemId":"1fc4109a-73f4-9c0b-1073-777b709ffb15","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_4b9774d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_snapshot_policy_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-lefr-02/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"1fc4109a-73f4-9c0b-1073-777b709ffb15","fileSystemId":"1fc4109a-73f4-9c0b-1073-777b709ffb15","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '4639' + - '4691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:21:55 GMT + - Tue, 15 Mar 2022 11:56:31 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_subvolume_crud.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_subvolume_crud.yaml new file mode 100644 index 00000000000..c8c701a983f --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_subvolume_crud.yaml @@ -0,0 +1,1713 @@ +interactions: +- request: + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --address-prefix + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"df8862ff-1b65-435e-b95c-358e4ef16370\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:32:16.4846036Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"31d60b33-e5ae-4b53-9fe6-57668c23d0ac\",\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/southcentralusstage/operations/3499fea6-f658-4049-bed4-c5d2ae2ddca8?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '777' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:32:22 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: + - e8571fd6-a728-4a79-b090-5dcf2cc38662 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3499fea6-f658-4049-bed4-c5d2ae2ddca8?api-version=2021-05-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: + - Thu, 17 Mar 2022 09:32:25 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: + - 81b18a84-523d-41dc-b086-281168b734a1 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"1155aaad-caf9-4666-abb2-3ff51f543c4b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:32:16.4846036Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"31d60b33-e5ae-4b53-9fe6-57668c23d0ac\",\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: + - '778' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:32:25 GMT + etag: + - W/"1155aaad-caf9-4666-abb2-3ff51f543c4b" + 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: + - a0e3b171-241f-4c9e-ae3f-380d1b7a5851 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"1155aaad-caf9-4666-abb2-3ff51f543c4b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:32:16.4846036Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"31d60b33-e5ae-4b53-9fe6-57668c23d0ac\",\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: + - '778' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:32:25 GMT + etag: + - W/"1155aaad-caf9-4666-abb2-3ff51f543c4b" + 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: + - d5669e4c-c432-4427-9a3a-347e13ad7841 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006", + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-17T09:32:16.4846036Z"}, + "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": + {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000007", "properties": + {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": + {"serviceName": "Microsoft.Netapp/volumes"}}], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + [], "enableDdosProtection": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '703' + Content-Type: + - application/json + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"1fafb0ab-e84f-45c3-bef8-3426e10dc44a\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:32:16.4846036Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"31d60b33-e5ae-4b53-9fe6-57668c23d0ac\",\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-000007\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n + \ \"etag\": \"W/\\\"1fafb0ab-e84f-45c3-bef8-3426e10dc44a\\\"\",\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_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n + \ \"etag\": \"W/\\\"1fafb0ab-e84f-45c3-bef8-3426e10dc44a\\\"\",\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-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/d79d1821-895a-4f82-9159-919185bd067c?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '2282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:32:28 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: + - 65e406df-4b30-44bb-a6c7-1e4be06340bb + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/d79d1821-895a-4f82-9159-919185bd067c?api-version=2021-05-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: + - Thu, 17 Mar 2022 09:32:31 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: + - 6cd89fb2-2594-4f8d-8db6-382e929baa32 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"4bedc6cb-ff42-44cf-ae0f-d019d31db7c1\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:32:16.4846036Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"31d60b33-e5ae-4b53-9fe6-57668c23d0ac\",\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-000007\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n + \ \"etag\": \"W/\\\"4bedc6cb-ff42-44cf-ae0f-d019d31db7c1\\\"\",\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_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n + \ \"etag\": \"W/\\\"4bedc6cb-ff42-44cf-ae0f-d019d31db7c1\\\"\",\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: + - '2284' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:32:31 GMT + etag: + - W/"4bedc6cb-ff42-44cf-ae0f-d019d31db7c1" + 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: + - 8cf58f8f-e2ab-4b9d-b635-9f4aef149186 + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralusstage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-17T09%3A32%3A42.1218146Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:32:38.5214963Z"},"properties":{"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9f49b96e-56ab-462a-bda3-84d86add22b1?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '421' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:32:43 GMT + etag: + - W/"datetime'2022-03-17T09%3A32%3A42.1218146Z'" + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9f49b96e-56ab-462a-bda3-84d86add22b1?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9f49b96e-56ab-462a-bda3-84d86add22b1","name":"9f49b96e-56ab-462a-bda3-84d86add22b1","status":"Succeeded","startTime":"2022-03-17T09:32:42.1275699Z","endTime":"2022-03-17T09:32:42.1676496Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + cache-control: + - no-cache + content-length: + - '533' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:33:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-17T09%3A32%3A42.1616542Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:32:38.5214963Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '929' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:33:13 GMT + etag: + - W/"datetime'2022-03-17T09%3A32%3A42.1616542Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-17T09%3A33%3A20.4127735Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:33:15.1032868Z"},"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/southcentralusstage/operationResults/3dda535b-2bc2-42a7-b0c9-24d580042ca7?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '584' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:33:20 GMT + etag: + - W/"datetime'2022-03-17T09%3A33%3A20.4127735Z'" + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3dda535b-2bc2-42a7-b0c9-24d580042ca7?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3dda535b-2bc2-42a7-b0c9-24d580042ca7","name":"3dda535b-2bc2-42a7-b0c9-24d580042ca7","status":"Succeeded","startTime":"2022-03-17T09:33:20.4201544Z","endTime":"2022-03-17T09:33:20.6501746Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:33:51 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-17T09%3A33%3A20.6445263Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:33:15.1032868Z"},"properties":{"poolId":"56236240-4e83-b2fb-29a2-ebe3bfa87fc4","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '699' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:33:51 GMT + etag: + - W/"datetime'2022-03-17T09%3A33%3A20.6445263Z'" + 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": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007", + "enableSubvolumes": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '348' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-17T09%3A34%3A01.0683567Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:33:55.5175409Z"},"properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","enableSubvolumes":"Enabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '861' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:34:02 GMT + etag: + - W/"datetime'2022-03-17T09%3A34%3A01.0683567Z'" + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd","name":"c2c8f3d3-d64f-4848-995f-27fe810104cd","status":"Creating","startTime":"2022-03-17T09:34:01.0721621Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:34: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 +- 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd","name":"c2c8f3d3-d64f-4848-995f-27fe810104cd","status":"Creating","startTime":"2022-03-17T09:34:01.0721621Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:35:02 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd","name":"c2c8f3d3-d64f-4848-995f-27fe810104cd","status":"Creating","startTime":"2022-03-17T09:34:01.0721621Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:35: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 +- 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd","name":"c2c8f3d3-d64f-4848-995f-27fe810104cd","status":"Creating","startTime":"2022-03-17T09:34:01.0721621Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:36:02 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd","name":"c2c8f3d3-d64f-4848-995f-27fe810104cd","status":"Creating","startTime":"2022-03-17T09:34:01.0721621Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:36: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 +- 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd","name":"c2c8f3d3-d64f-4848-995f-27fe810104cd","status":"Creating","startTime":"2022-03-17T09:34:01.0721621Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:37:03 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd","name":"c2c8f3d3-d64f-4848-995f-27fe810104cd","status":"Creating","startTime":"2022-03-17T09:34:01.0721621Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:37: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c2c8f3d3-d64f-4848-995f-27fe810104cd","name":"c2c8f3d3-d64f-4848-995f-27fe810104cd","status":"Succeeded","startTime":"2022-03-17T09:34:01.0721621Z","endTime":"2022-03-17T09:37:59.15494Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '584' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:38: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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-17T09%3A37%3A59.1485627Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:33:55.5175409Z"},"properties":{"fileSystemId":"ac91908c-88df-384a-2a4d-b30164911ddf","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_49b4d588","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"74dffa06-5719-00a8-e1be-225e15031fde","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"ac91908c-88df-384a-2a4d-b30164911ddf","fileSystemId":"ac91908c-88df-384a-2a4d-b30164911ddf","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Enabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2090' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:38:04 GMT + etag: + - W/"datetime'2022-03-17T09%3A37%3A59.1485627Z'" + 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: '{"properties": {"path": "/sub_vol_1.txt"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + Content-Length: + - '42' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_1.txt","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c048cfdf-bffb-4233-a408-5e571a4703da?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:38:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c048cfdf-bffb-4233-a408-5e571a4703da?api-version=2021-10-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: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c048cfdf-bffb-4233-a408-5e571a4703da?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c048cfdf-bffb-4233-a408-5e571a4703da","name":"c048cfdf-bffb-4233-a408-5e571a4703da","status":"Succeeded","startTime":"2022-03-17T09:38:06.3616883Z","endTime":"2022-03-17T09:38:07.4639771Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '616' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:38: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 subvolume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_1.txt","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '477' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:38: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: '{"properties": {"path": "/sub_vol_update.txt"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume update + Connection: + - keep-alive + Content-Length: + - '47' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_update.txt","provisioningState":"Accepted"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4a1a07be-4f71-40f4-a4f5-c3f57c09c72f?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:38:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4a1a07be-4f71-40f4-a4f5-c3f57c09c72f?api-version=2021-10-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 subvolume update + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4a1a07be-4f71-40f4-a4f5-c3f57c09c72f?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4a1a07be-4f71-40f4-a4f5-c3f57c09c72f","name":"4a1a07be-4f71-40f4-a4f5-c3f57c09c72f","status":"Succeeded","startTime":"2022-03-17T09:38:38.7119128Z","endTime":"2022-03-17T09:38:39.4433861Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '616' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:39:08 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 subvolume update + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_update.txt","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '482' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:39: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_update.txt","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '482' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:39:10 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 subvolume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v --subvolume-name -y + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0a11b15e-febe-4722-b11c-790bcb19f0fd?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 17 Mar 2022 09:39:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0a11b15e-febe-4722-b11c-790bcb19f0fd?api-version=2021-10-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 subvolume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name -y + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0a11b15e-febe-4722-b11c-790bcb19f0fd?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0a11b15e-febe-4722-b11c-790bcb19f0fd","name":"0a11b15e-febe-4722-b11c-790bcb19f0fd","status":"Succeeded","startTime":"2022-03-17T09:39:11.9989069Z","endTime":"2022-03-17T09:39:12.5570218Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '616' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:39:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume list + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_crud_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes?api-version=2021-10-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:39:42 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_subvolume_get_metadata.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_subvolume_get_metadata.yaml new file mode 100644 index 00000000000..1792fd6bceb --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_subvolume_get_metadata.yaml @@ -0,0 +1,1587 @@ +interactions: +- request: + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --address-prefix + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"99d1f673-004c-41e4-8e7c-5d7d84d69e82\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T10:05:43.6650145Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"eaab1a75-8bda-42e2-abf5-8c2bf8620aa0\",\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/southcentralusstage/operations/94e7cf78-2ae3-418d-986d-0fe23b3d98e6?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '781' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:05:50 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: + - 0311a6bd-ac2d-4eff-877d-b0b028a1c85e + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/94e7cf78-2ae3-418d-986d-0fe23b3d98e6?api-version=2021-05-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: + - Thu, 17 Mar 2022 10:05:53 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: + - aa066dae-d627-49b2-aac2-4eb4bd54db54 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"e4f58bbd-98b0-427d-9bc8-576b1096c75c\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T10:05:43.6650145Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"eaab1a75-8bda-42e2-abf5-8c2bf8620aa0\",\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: + - '782' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:05:54 GMT + etag: + - W/"e4f58bbd-98b0-427d-9bc8-576b1096c75c" + 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: + - ff7e4731-aab3-4b8a-9d9d-183ae8327153 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"e4f58bbd-98b0-427d-9bc8-576b1096c75c\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T10:05:43.6650145Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"eaab1a75-8bda-42e2-abf5-8c2bf8620aa0\",\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: + - '782' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:05:54 GMT + etag: + - W/"e4f58bbd-98b0-427d-9bc8-576b1096c75c" + 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: + - f60ad497-0b09-4956-93e1-241d8d584676 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006", + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-17T10:05:43.6650145Z"}, + "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": + {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000007", "properties": + {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": + {"serviceName": "Microsoft.Netapp/volumes"}}], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + [], "enableDdosProtection": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '707' + Content-Type: + - application/json + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"f6bb937b-a332-4225-b28b-ebb0098d5425\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T10:05:43.6650145Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"eaab1a75-8bda-42e2-abf5-8c2bf8620aa0\",\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-000007\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n + \ \"etag\": \"W/\\\"f6bb937b-a332-4225-b28b-ebb0098d5425\\\"\",\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_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n + \ \"etag\": \"W/\\\"f6bb937b-a332-4225-b28b-ebb0098d5425\\\"\",\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-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3845476a-bc94-4efb-b0fd-74a3e5a024a5?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '2294' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:05:56 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: + - d9d0d80b-9378-4e49-86bc-2dcf2db1990e + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/3845476a-bc94-4efb-b0fd-74a3e5a024a5?api-version=2021-05-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: + - Thu, 17 Mar 2022 10:05:59 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: + - d8265636-0c91-4727-8cd7-12a79bb8ea04 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006\",\r\n + \ \"etag\": \"W/\\\"63af3893-f029-496a-9ae5-05dd73741d39\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T10:05:43.6650145Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"eaab1a75-8bda-42e2-abf5-8c2bf8620aa0\",\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-000007\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007\",\r\n + \ \"etag\": \"W/\\\"63af3893-f029-496a-9ae5-05dd73741d39\\\"\",\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_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007/delegations/0\",\r\n + \ \"etag\": \"W/\\\"63af3893-f029-496a-9ae5-05dd73741d39\\\"\",\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: + - '2296' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:05:59 GMT + etag: + - W/"63af3893-f029-496a-9ae5-05dd73741d39" + 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: + - 1c193688-d5b3-420a-bba1-88df3005bcad + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralusstage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-17T10%3A06%3A07.0148803Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T10:06:01.7599414Z"},"properties":{"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68c6a346-445b-4223-8647-2d90b0b113b0?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '425' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:06:07 GMT + etag: + - W/"datetime'2022-03-17T10%3A06%3A07.0148803Z'" + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68c6a346-445b-4223-8647-2d90b0b113b0?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/68c6a346-445b-4223-8647-2d90b0b113b0","name":"68c6a346-445b-4223-8647-2d90b0b113b0","status":"Succeeded","startTime":"2022-03-17T10:06:07.0192361Z","endTime":"2022-03-17T10:06:07.0592015Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + cache-control: + - no-cache + content-length: + - '537' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:06: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-17T10%3A06%3A07.0516456Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T10:06:01.7599414Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '933' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:06:38 GMT + etag: + - W/"datetime'2022-03-17T10%3A06%3A07.0516456Z'" + 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": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-17T10%3A06%3A46.6584361Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T10:06:40.6616409Z"},"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/southcentralusstage/operationResults/b177ffe5-1af2-4c57-9a06-3eec0da79200?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '588' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:06:47 GMT + etag: + - W/"datetime'2022-03-17T10%3A06%3A46.6584361Z'" + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b177ffe5-1af2-4c57-9a06-3eec0da79200?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/b177ffe5-1af2-4c57-9a06-3eec0da79200","name":"b177ffe5-1af2-4c57-9a06-3eec0da79200","status":"Succeeded","startTime":"2022-03-17T10:06:46.6619621Z","endTime":"2022-03-17T10:06:47.000357Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '566' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:07: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-17T10%3A06%3A46.9901209Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T10:06:40.6616409Z"},"properties":{"poolId":"69574f12-c673-d8aa-7e55-7f7093615c4c","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '703' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:07:18 GMT + etag: + - W/"datetime'2022-03-17T10%3A06%3A46.9901209Z'" + 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": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007", + "enableSubvolumes": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '352' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-17T10%3A07%3A28.5122272Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T10:07:23.0606871Z"},"properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","enableSubvolumes":"Enabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '869' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:07:29 GMT + etag: + - W/"datetime'2022-03-17T10%3A07%3A28.5122272Z'" + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162","name":"de693195-2e11-4f45-a774-9ce3032c6162","status":"Creating","startTime":"2022-03-17T10:07:28.519916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:07:59 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162","name":"de693195-2e11-4f45-a774-9ce3032c6162","status":"Creating","startTime":"2022-03-17T10:07:28.519916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:08:29 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162","name":"de693195-2e11-4f45-a774-9ce3032c6162","status":"Creating","startTime":"2022-03-17T10:07:28.519916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:08:59 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162","name":"de693195-2e11-4f45-a774-9ce3032c6162","status":"Creating","startTime":"2022-03-17T10:07:28.519916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:09: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 volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162","name":"de693195-2e11-4f45-a774-9ce3032c6162","status":"Creating","startTime":"2022-03-17T10:07:28.519916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:10: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 volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162","name":"de693195-2e11-4f45-a774-9ce3032c6162","status":"Creating","startTime":"2022-03-17T10:07:28.519916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:10: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 volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162","name":"de693195-2e11-4f45-a774-9ce3032c6162","status":"Creating","startTime":"2022-03-17T10:07:28.519916Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '578' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:11:01 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/de693195-2e11-4f45-a774-9ce3032c6162","name":"de693195-2e11-4f45-a774-9ce3032c6162","status":"Succeeded","startTime":"2022-03-17T10:07:28.519916Z","endTime":"2022-03-17T10:11:21.4189855Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '589' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:11: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 volume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-17T10%3A11%3A21.4021169Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T10:07:23.0606871Z"},"properties":{"fileSystemId":"9dd1f622-8a2e-fd03-2b82-3ae2bbc3d420","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_8e62cd34","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000006/subnets/cli-subnet-000007","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"9dd1f622-8a2e-fd03-2b82-3ae2bbc3d420","fileSystemId":"9dd1f622-8a2e-fd03-2b82-3ae2bbc3d420","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Enabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2098' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:11:31 GMT + etag: + - W/"datetime'2022-03-17T10%3A11%3A21.4021169Z'" + 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: '{"properties": {"path": "/sub_vol_1.txt"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + Content-Length: + - '42' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_1.txt","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cd5fd1c2-1762-4033-b4c2-525ab10c3c17?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '480' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:11:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cd5fd1c2-1762-4033-b4c2-525ab10c3c17?api-version=2021-10-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: + - '1197' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cd5fd1c2-1762-4033-b4c2-525ab10c3c17?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cd5fd1c2-1762-4033-b4c2-525ab10c3c17","name":"cd5fd1c2-1762-4033-b4c2-525ab10c3c17","status":"Succeeded","startTime":"2022-03-17T10:11:33.2125018Z","endTime":"2022-03-17T10:11:33.768604Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '619' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:12:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 subvolume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_1.txt","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '481' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:12:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume metadata show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v --subvolume-name + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005/getMetadata?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a5d08171-bc3d-453c-a454-7342215f3c23?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '410' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:12:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a5d08171-bc3d-453c-a454-7342215f3c23?api-version=2021-10-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 subvolume metadata show + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a5d08171-bc3d-453c-a454-7342215f3c23?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a5d08171-bc3d-453c-a454-7342215f3c23","name":"a5d08171-bc3d-453c-a454-7342215f3c23","status":"Succeeded","startTime":"2022-03-17T10:12:04.9285301Z","endTime":"2022-03-17T10:12:05.5530385Z","percentComplete":100.0,"properties":{"path":"/sub_vol_1.txt","provisioningState":"Succeeded","size":0,"bytesUsed":0,"permissions":"644","creationTimeStamp":"2022-03-17T10:11:33Z","accessedTimeStamp":"2022-03-17T10:11:33Z","modifiedTimeStamp":"2022-03-17T10:11:33Z","changedTimeStamp":"2022-03-17T10:11:33Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '619' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:12: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 subvolume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v --subvolume-name -y + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3b9e1b61-e996-4fea-8076-0b5b2565e3ba?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 17 Mar 2022 10:12:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3b9e1b61-e996-4fea-8076-0b5b2565e3ba?api-version=2021-10-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 subvolume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name -y + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3b9e1b61-e996-4fea-8076-0b5b2565e3ba?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3b9e1b61-e996-4fea-8076-0b5b2565e3ba","name":"3b9e1b61-e996-4fea-8076-0b5b2565e3ba","status":"Succeeded","startTime":"2022-03-17T10:12:37.6280192Z","endTime":"2022-03-17T10:12:38.3536905Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_metadata_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '620' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 10:13: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_subvolume_list.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_subvolume_list.yaml new file mode 100644 index 00000000000..16664cb8240 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_subvolume_list.yaml @@ -0,0 +1,1879 @@ +interactions: +- request: + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '124' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --address-prefix + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007\",\r\n + \ \"etag\": \"W/\\\"3809bb9b-335e-4b74-b7e5-dc12aaa50623\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:40:41.1789193Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"de2695be-6a38-4feb-8858-5a3f62519e09\",\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/southcentralusstage/operations/d3fb09c0-f1fe-4e07-9a54-1b545c6ff744?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '777' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:40:47 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: + - 0aa844ab-6034-4a41-8788-1a020eff9667 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/d3fb09c0-f1fe-4e07-9a54-1b545c6ff744?api-version=2021-05-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: + - Thu, 17 Mar 2022 09:40:50 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: + - 927422a6-c2bb-485e-b360-2b9619e3b64a + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007\",\r\n + \ \"etag\": \"W/\\\"542b50cd-5ac9-4bac-8f2c-54813f0836e5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:40:41.1789193Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"de2695be-6a38-4feb-8858-5a3f62519e09\",\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: + - '778' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:40:51 GMT + etag: + - W/"542b50cd-5ac9-4bac-8f2c-54813f0836e5" + 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: + - 6ccd6f5e-1dda-490f-9f37-73901a4a0a6a + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007\",\r\n + \ \"etag\": \"W/\\\"542b50cd-5ac9-4bac-8f2c-54813f0836e5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:40:41.1789193Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"de2695be-6a38-4feb-8858-5a3f62519e09\",\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: + - '778' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:40:51 GMT + etag: + - W/"542b50cd-5ac9-4bac-8f2c-54813f0836e5" + 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: + - 806e8139-05d8-44c1-867e-0bfa78a531c8 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007", + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-17T09:40:41.1789193Z"}, + "properties": {"addressSpace": {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": + {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000008", "properties": + {"addressPrefix": "10.5.0.0/24", "delegations": [{"name": "0", "properties": + {"serviceName": "Microsoft.Netapp/volumes"}}], "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": + [], "enableDdosProtection": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet create + Connection: + - keep-alive + Content-Length: + - '703' + Content-Type: + - application/json + ParameterSetName: + - -n --vnet-name --address-prefixes --delegations -g + User-Agent: + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007\",\r\n + \ \"etag\": \"W/\\\"2870a358-38b2-432a-ba76-0de1065b5270\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:40:41.1789193Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"de2695be-6a38-4feb-8858-5a3f62519e09\",\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-000008\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007/subnets/cli-subnet-000008\",\r\n + \ \"etag\": \"W/\\\"2870a358-38b2-432a-ba76-0de1065b5270\\\"\",\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_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007/subnets/cli-subnet-000008/delegations/0\",\r\n + \ \"etag\": \"W/\\\"2870a358-38b2-432a-ba76-0de1065b5270\\\"\",\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-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/c5b335f3-6ef2-4039-a8ed-e62118e08611?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '2282' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:40:53 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: + - 2e6f86f9-447f-4079-8363-f6b319b189ce + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/c5b335f3-6ef2-4039-a8ed-e62118e08611?api-version=2021-05-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: + - Thu, 17 Mar 2022 09:40:56 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: + - 44707b20-2bb8-49bb-bad9-eaa12074ce01 + 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.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007?api-version=2021-05-01 + response: + body: + string: "{\r\n \"name\": \"cli-vnet-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007\",\r\n + \ \"etag\": \"W/\\\"0b059db5-6d71-4e1c-a2bf-b803b031b30e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-17T09:40:41.1789193Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"de2695be-6a38-4feb-8858-5a3f62519e09\",\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-000008\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007/subnets/cli-subnet-000008\",\r\n + \ \"etag\": \"W/\\\"0b059db5-6d71-4e1c-a2bf-b803b031b30e\\\"\",\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_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007/subnets/cli-subnet-000008/delegations/0\",\r\n + \ \"etag\": \"W/\\\"0b059db5-6d71-4e1c-a2bf-b803b031b30e\\\"\",\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: + - '2284' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:40:56 GMT + etag: + - W/"0b059db5-6d71-4e1c-a2bf-b803b031b30e" + 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: + - cede1fee-350a-40f3-8e22-77141530c904 + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralusstage"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles account create + Connection: + - keep-alive + Content-Length: + - '23' + Content-Type: + - application/json + ParameterSetName: + - -g -a -l + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-17T09%3A41%3A00.0780453Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:40:58.2275634Z"},"properties":{"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3f6aa4e-ec81-4889-a42d-81ce59a57d1f?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '421' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:41:00 GMT + etag: + - W/"datetime'2022-03-17T09%3A41%3A00.0780453Z'" + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3f6aa4e-ec81-4889-a42d-81ce59a57d1f?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c3f6aa4e-ec81-4889-a42d-81ce59a57d1f","name":"c3f6aa4e-ec81-4889-a42d-81ce59a57d1f","status":"Succeeded","startTime":"2022-03-17T09:41:00.0834059Z","endTime":"2022-03-17T09:41:00.138394Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + headers: + cache-control: + - no-cache + content-length: + - '532' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:41:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-17T09%3A41%3A00.1342541Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:40:58.2275634Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"e84ad595-1e53-acd8-dc3e-d280c8fcad7e","username":"ad_user","password":"****************","domain":"southcentralusstage","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,"encryptDCConnections":false,"ldapSearchScope":{"userDN":"user-dn"}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '929' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:41:31 GMT + etag: + - W/"datetime'2022-03-17T09%3A41%3A00.1342541Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles pool create + Connection: + - keep-alive + Content-Length: + - '89' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -l --service-level --size + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-17T09%3A41%3A37.6898929Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:41:33.7351968Z"},"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/southcentralusstage/operationResults/14b4183a-6161-4026-9cf0-9ba90700c148?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '584' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:41:38 GMT + etag: + - W/"datetime'2022-03-17T09%3A41%3A37.6898929Z'" + 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/14b4183a-6161-4026-9cf0-9ba90700c148?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/14b4183a-6161-4026-9cf0-9ba90700c148","name":"14b4183a-6161-4026-9cf0-9ba90700c148","status":"Succeeded","startTime":"2022-03-17T09:41:37.6960071Z","endTime":"2022-03-17T09:41:37.9027006Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003"}}' + headers: + cache-control: + - no-cache + content-length: + - '563' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:42: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: 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.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-03-17T09%3A41%3A37.8963067Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:41:33.7351968Z"},"properties":{"poolId":"63e74577-a276-066a-4411-81e00451712a","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '699' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:42:09 GMT + etag: + - W/"datetime'2022-03-17T09%3A41%3A37.8963067Z'" + 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": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007/subnets/cli-subnet-000008", + "enableSubvolumes": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles volume create + Connection: + - keep-alive + Content-Length: + - '348' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-17T09%3A42%3A28.1759031Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:42:19.1369966Z"},"properties":{"creationToken":"cli-vol-000004","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007/subnets/cli-subnet-000008","enableSubvolumes":"Enabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '861' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:42:31 GMT + etag: + - W/"datetime'2022-03-17T09%3A42%3A28.1759031Z'" + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715","name":"3225eaa7-72c1-4785-b2d3-a98632538715","status":"Creating","startTime":"2022-03-17T09:42:28.1832661Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:43:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715","name":"3225eaa7-72c1-4785-b2d3-a98632538715","status":"Creating","startTime":"2022-03-17T09:42:28.1832661Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:43:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715","name":"3225eaa7-72c1-4785-b2d3-a98632538715","status":"Creating","startTime":"2022-03-17T09:42:28.1832661Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:44:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715","name":"3225eaa7-72c1-4785-b2d3-a98632538715","status":"Creating","startTime":"2022-03-17T09:42:28.1832661Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:44:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715","name":"3225eaa7-72c1-4785-b2d3-a98632538715","status":"Creating","startTime":"2022-03-17T09:42:28.1832661Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:45:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715","name":"3225eaa7-72c1-4785-b2d3-a98632538715","status":"Creating","startTime":"2022-03-17T09:42:28.1832661Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:45:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715","name":"3225eaa7-72c1-4785-b2d3-a98632538715","status":"Creating","startTime":"2022-03-17T09:42:28.1832661Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '575' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:46:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3225eaa7-72c1-4785-b2d3-a98632538715","name":"3225eaa7-72c1-4785-b2d3-a98632538715","status":"Succeeded","startTime":"2022-03-17T09:42:28.1832661Z","endTime":"2022-03-17T09:46:22.6558461Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' + headers: + cache-control: + - no-cache + content-length: + - '586' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:46:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + 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 --enable-subvolumes + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-17T09%3A46%3A22.6518737Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-17T09:42:19.1369966Z"},"properties":{"fileSystemId":"8c72eeff-e6f5-1310-2751-b2e13c430d2f","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_ff18c0ad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000007/subnets/cli-subnet-000008","networkFeatures":"Basic","networkSiblingSetId":"716dc783-1a11-9054-4d50-babff3530abb","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"8c72eeff-e6f5-1310-2751-b2e13c430d2f","fileSystemId":"8c72eeff-e6f5-1310-2751-b2e13c430d2f","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Enabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '2090' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:46:44 GMT + etag: + - W/"datetime'2022-03-17T09%3A46%3A22.6518737Z'" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"path": "/sub_vol_1.txt"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + Content-Length: + - '42' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_1.txt","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3755daa5-2992-40cd-8df6-27afd612dbf3?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:46:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3755daa5-2992-40cd-8df6-27afd612dbf3?api-version=2021-10-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: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3755daa5-2992-40cd-8df6-27afd612dbf3?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/3755daa5-2992-40cd-8df6-27afd612dbf3","name":"3755daa5-2992-40cd-8df6-27afd612dbf3","status":"Succeeded","startTime":"2022-03-17T09:46:45.3126478Z","endTime":"2022-03-17T09:46:46.1778079Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '616' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:47: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: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_1.txt","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '477' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:47: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: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume list + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes?api-version=2021-10-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_1.txt","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '489' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:47:17 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: '{"properties": {"path": "/sub_vol_2.txt"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + Content-Length: + - '42' + Content-Type: + - application/json + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_2.txt","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9fc2365f-9ec5-4831-91d1-20f09e12cea8?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '476' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:47:18 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9fc2365f-9ec5-4831-91d1-20f09e12cea8?api-version=2021-10-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: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9fc2365f-9ec5-4831-91d1-20f09e12cea8?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9fc2365f-9ec5-4831-91d1-20f09e12cea8","name":"9fc2365f-9ec5-4831-91d1-20f09e12cea8","status":"Succeeded","startTime":"2022-03-17T09:47:18.5539272Z","endTime":"2022-03-17T09:47:19.1480066Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006"}}' + headers: + cache-control: + - no-cache + content-length: + - '616' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:47:48 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 subvolume create + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name --path + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_2.txt","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '477' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:47:48 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 subvolume list + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes?api-version=2021-10-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000005","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_1.txt","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_2.txt","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '967' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:47:49 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 subvolume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v --subvolume-name -y + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005?api-version=2021-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/39d55796-75fa-4b9c-b78b-6b1d86da22e3?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 17 Mar 2022 09:47:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/39d55796-75fa-4b9c-b78b-6b1d86da22e3?api-version=2021-10-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 subvolume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name -y + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/39d55796-75fa-4b9c-b78b-6b1d86da22e3?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/39d55796-75fa-4b9c-b78b-6b1d86da22e3","name":"39d55796-75fa-4b9c-b78b-6b1d86da22e3","status":"Succeeded","startTime":"2022-03-17T09:47:52.1827457Z","endTime":"2022-03-17T09:47:52.6645461Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000005"}}' + headers: + cache-control: + - no-cache + content-length: + - '616' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:48:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume list + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes?api-version=2021-10-01 + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004/cli-sub-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes","properties":{"path":"/sub_vol_2.txt","provisioningState":"Succeeded"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '489' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:48: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 subvolume delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -a -p -v --subvolume-name -y + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006?api-version=2021-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fee077ee-c28a-46d7-a781-97ed73f6842c?api-version=2021-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 17 Mar 2022 09:48:25 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fee077ee-c28a-46d7-a781-97ed73f6842c?api-version=2021-10-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 subvolume delete + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v --subvolume-name -y + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fee077ee-c28a-46d7-a781-97ed73f6842c?api-version=2021-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fee077ee-c28a-46d7-a781-97ed73f6842c","name":"fee077ee-c28a-46d7-a781-97ed73f6842c","status":"Succeeded","startTime":"2022-03-17T09:48:25.7204354Z","endTime":"2022-03-17T09:48:26.4955463Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes/cli-sub-vol-000006"}}' + headers: + cache-control: + - no-cache + content-length: + - '616' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:48: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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - netappfiles subvolume list + Connection: + - keep-alive + ParameterSetName: + - -g -a -p -v + User-Agent: + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_subvolume_list_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004/subvolumes?api-version=2021-10-01 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 17 Mar 2022 09:48: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 +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_account.yaml index f475e7da5be..5648a54d980 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 @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A23%3A47.042326Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:23:41.0472537Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:23:46.2656126Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:23:46.2656126Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A51%3A43.0907266Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:51:40.2974739Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:51:42.2947524Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:51:42.2947524Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/adbe5ee3-6d06-4f5d-8a75-5025bd720102?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e8c3900-e287-4942-aee5-4471e11d8885?api-version=2021-10-01 cache-control: - no-cache content-length: - - '703' + - '704' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:23:47 GMT + - Tue, 15 Mar 2022 10:51:43 GMT etag: - - W/"datetime'2022-01-07T08%3A23%3A47.042326Z'" + - W/"datetime'2022-03-15T10%3A51%3A43.0907266Z'" expires: - '-1' pragma: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/adbe5ee3-6d06-4f5d-8a75-5025bd720102?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e8c3900-e287-4942-aee5-4471e11d8885?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/adbe5ee3-6d06-4f5d-8a75-5025bd720102","name":"adbe5ee3-6d06-4f5d-8a75-5025bd720102","status":"Succeeded","startTime":"2022-01-07T08:23:47.0455774Z","endTime":"2022-01-07T08:23:47.090558Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5e8c3900-e287-4942-aee5-4471e11d8885","name":"5e8c3900-e287-4942-aee5-4471e11d8885","status":"Succeeded","startTime":"2022-03-15T10:51:43.0947406Z","endTime":"2022-03-15T10:51:43.1103218Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002"}}' headers: cache-control: - no-cache content-length: - - '537' + - '538' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:24:17 GMT + - Tue, 15 Mar 2022 10:52:14 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A23%3A47.0824298Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:23:41.0472537Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:23:46.2656126Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:23:46.2656126Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A51%3A43.1146655Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:51:40.2974739Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:51:42.2947524Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:51:42.2947524Z"}}' headers: cache-control: - no-cache content-length: - - '1148' + - '1169' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:24:18 GMT + - Tue, 15 Mar 2022 10:52:14 GMT etag: - - W/"datetime'2022-01-07T08%3A23%3A47.0824298Z'" + - W/"datetime'2022-03-15T10%3A51%3A43.1146655Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -165,23 +157,23 @@ interactions: ParameterSetName: - -g -a --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A23%3A47.0824298Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:23:41.0472537Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:23:46.2656126Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:23:46.2656126Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A51%3A43.1146655Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:51:40.2974739Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:51:42.2947524Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:51:42.2947524Z"}}' headers: cache-control: - no-cache content-length: - - '1148' + - '1169' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:24:20 GMT + - Tue, 15 Mar 2022 10:52:16 GMT etag: - - W/"datetime'2022-01-07T08%3A23%3A47.0824298Z'" + - W/"datetime'2022-03-15T10%3A51%3A43.1146655Z'" expires: - '-1' pragma: @@ -190,10 +182,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -220,23 +208,23 @@ interactions: ParameterSetName: - -g -a --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/cli-acc-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A24%3A23.2549289Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-01-07T08:24:20.7007358Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:23:46.2656126Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:24:22.5763945Z","lastModifiedByType":"Application"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_account_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T10%3A52%3A17.6696176Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","Tag2":"Value2","CreatedOnDate":"2022-03-15T10:52:16.7661455Z"},"properties":{"provisioningState":"Succeeded","activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:51:42.2947524Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:52:16.9576178Z"}}' headers: cache-control: - no-cache content-length: - - '1180' + - '1201' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:24:24 GMT + - Tue, 15 Mar 2022 10:52:18 GMT etag: - - W/"datetime'2022-01-07T08%3A24%3A23.2549289Z'" + - W/"datetime'2022-03-15T10%3A52%3A17.6696176Z'" expires: - '-1' pragma: @@ -245,14 +233,10 @@ 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' + - '1198' x-powered-by: - ASP.NET status: 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 038458dfc1e..d5e26cc90ac 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 @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralus", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.5.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.5.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,22 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '131' + - '124' Content-Type: - application/json ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"c8309f54-4ff6-41d6-94aa-6e27824ae330\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7d7311f7-b216-4278-979b-cb87702f54dd\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"c2820a03-ce58-42a2-bfcb-451bb72a19cc\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:31:11.6328686Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"c55ccb5a-0dcb-40f7-9cb6-1ab0e02ea3f7\",\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\": @@ -36,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ae0f544c-c1b6-4065-9fe0-1b7ce372f7b7?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a77b5671-8b5b-4490-a4b1-d8fc0a3bcf1c?api-version=2021-05-01 cache-control: - no-cache content-length: - - '778' + - '781' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:09:40 GMT + - Wed, 16 Mar 2022 09:31:17 GMT expires: - '-1' pragma: @@ -57,7 +58,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a7b45108-38ec-4023-b83c-8ef0fefe53e5 + - 9ed91266-6493-4963-9ec4-8066a9915476 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -77,9 +78,9 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ae0f544c-c1b6-4065-9fe0-1b7ce372f7b7?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a77b5671-8b5b-4490-a4b1-d8fc0a3bcf1c?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -91,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:09:43 GMT + - Wed, 16 Mar 2022 09:31:20 GMT expires: - '-1' pragma: @@ -108,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1a431d17-6014-4cee-9b39-ef4bef11c890 + - fcd30dd5-1a6f-4a7e-bb94-a73b90dc9d5a status: code: 200 message: OK @@ -126,16 +127,17 @@ interactions: ParameterSetName: - -n -g -l --address-prefix User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"f149b578-44d8-4fb2-b8d5-58f76987166d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7d7311f7-b216-4278-979b-cb87702f54dd\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"9b295824-1eef-43b3-9f0e-e996dcba056d\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:31:11.6328686Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"c55ccb5a-0dcb-40f7-9cb6-1ab0e02ea3f7\",\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\": @@ -144,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:09:44 GMT + - Wed, 16 Mar 2022 09:31:20 GMT etag: - - W/"f149b578-44d8-4fb2-b8d5-58f76987166d" + - W/"9b295824-1eef-43b3-9f0e-e996dcba056d" expires: - '-1' pragma: @@ -167,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 078de915-f4ca-456b-a8f6-408286822392 + - 45980faa-e1ac-48cd-aaa8-28cd75733e24 status: code: 200 message: OK @@ -185,16 +187,17 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"f149b578-44d8-4fb2-b8d5-58f76987166d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7d7311f7-b216-4278-979b-cb87702f54dd\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"9b295824-1eef-43b3-9f0e-e996dcba056d\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:31:11.6328686Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"c55ccb5a-0dcb-40f7-9cb6-1ab0e02ea3f7\",\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\": @@ -203,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '779' + - '782' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:09:49 GMT + - Wed, 16 Mar 2022 09:31:21 GMT etag: - - W/"f149b578-44d8-4fb2-b8d5-58f76987166d" + - W/"9b295824-1eef-43b3-9f0e-e996dcba056d" expires: - '-1' pragma: @@ -226,18 +229,18 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84faffbd-bfbb-4d47-aa3f-b8434e60a696 + - b9b5539f-ff04-4c77-884a-a6e70c42f138 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": "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"}}], "privateEndpointNetworkPolicies": - "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}], "virtualNetworkPeerings": - [], "enableDdosProtection": false}}' + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-16T09:31:11.6328686Z"}, + "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"}}], + "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "Enabled"}}], "virtualNetworkPeerings": [], "enableDdosProtection": false}}' headers: Accept: - application/json @@ -248,32 +251,33 @@ interactions: Connection: - keep-alive Content-Length: - - '695' + - '691' Content-Type: - application/json ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"ba6139fe-00e0-4917-ab46-6381014ce262\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7d7311f7-b216-4278-979b-cb87702f54dd\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"20a07745-d3d5-4a06-832e-4261da758052\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:31:11.6328686Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"c55ccb5a-0dcb-40f7-9cb6-1ab0e02ea3f7\",\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/\\\"ba6139fe-00e0-4917-ab46-6381014ce262\\\"\",\r\n + \ \"etag\": \"W/\\\"20a07745-d3d5-4a06-832e-4261da758052\\\"\",\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/\\\"ba6139fe-00e0-4917-ab46-6381014ce262\\\"\",\r\n + \ \"etag\": \"W/\\\"20a07745-d3d5-4a06-832e-4261da758052\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -288,15 +292,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7ac917c3-1590-4923-b8ea-6eaeff77d830?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/349c79a2-1bb4-4fa3-9783-b0260f2027a9?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2337' + - '2252' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:09:50 GMT + - Wed, 16 Mar 2022 09:31:23 GMT expires: - '-1' pragma: @@ -313,7 +317,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05c3848b-c539-455d-8ad7-844073142fce + - 46804202-8cf4-436d-ab9f-7c7930748a05 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -333,9 +337,9 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7ac917c3-1590-4923-b8ea-6eaeff77d830?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/349c79a2-1bb4-4fa3-9783-b0260f2027a9?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -347,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:09:53 GMT + - Wed, 16 Mar 2022 09:31:26 GMT expires: - '-1' pragma: @@ -364,7 +368,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dec43b5e-ee09-45a4-bd14-4caa437b8981 + - 0feade7d-87a7-4de6-9631-dc367ee52979 status: code: 200 message: OK @@ -382,26 +386,27 @@ interactions: ParameterSetName: - -n --vnet-name --address-prefixes --delegations -g User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"ab5f2888-2ea3-4820-8cfe-487bb26f56c6\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7d7311f7-b216-4278-979b-cb87702f54dd\",\r\n \"addressSpace\": + \ \"etag\": \"W/\\\"2808cf1e-8557-4114-a4de-603e8e67bdef\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-16T09:31:11.6328686Z\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"c55ccb5a-0dcb-40f7-9cb6-1ab0e02ea3f7\",\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/\\\"ab5f2888-2ea3-4820-8cfe-487bb26f56c6\\\"\",\r\n + \ \"etag\": \"W/\\\"2808cf1e-8557-4114-a4de-603e8e67bdef\\\"\",\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/\\\"ab5f2888-2ea3-4820-8cfe-487bb26f56c6\\\"\",\r\n + \ \"etag\": \"W/\\\"2808cf1e-8557-4114-a4de-603e8e67bdef\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -416,13 +421,13 @@ interactions: cache-control: - no-cache content-length: - - '2339' + - '2254' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:09:53 GMT + - Wed, 16 Mar 2022 09:31:27 GMT etag: - - W/"ab5f2888-2ea3-4820-8cfe-487bb26f56c6" + - W/"2808cf1e-8557-4114-a4de-603e8e67bdef" expires: - '-1' pragma: @@ -439,7 +444,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3420b72c-2971-4940-b2d8-a42c580d747d + - ce88010f-5cb4-4346-b649-5cafea22f2d8 status: code: 200 message: OK @@ -455,31 +460,31 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A10%3A00.937398Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A31%3A35.039978Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:31:30.4795478Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cde2e74c-77a2-491f-90bb-0ccf5a8fc361?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/52ae1b54-b5f0-44c8-a23f-eedd41500472?api-version=2021-10-01 cache-control: - no-cache content-length: - - '429' + - '412' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:10:01 GMT + - Wed, 16 Mar 2022 09:31:35 GMT etag: - - W/"datetime'2021-10-19T15%3A10%3A00.937398Z'" + - W/"datetime'2022-03-16T09%3A31%3A35.039978Z'" expires: - '-1' pragma: @@ -491,7 +496,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -511,21 +516,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cde2e74c-77a2-491f-90bb-0ccf5a8fc361?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/52ae1b54-b5f0-44c8-a23f-eedd41500472?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/cde2e74c-77a2-491f-90bb-0ccf5a8fc361","name":"cde2e74c-77a2-491f-90bb-0ccf5a8fc361","status":"Succeeded","startTime":"2021-10-19T15:10:00.9423753Z","endTime":"2021-10-19T15:10:01.0074063Z","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/52ae1b54-b5f0-44c8-a23f-eedd41500472","name":"52ae1b54-b5f0-44c8-a23f-eedd41500472","status":"Succeeded","startTime":"2022-03-16T09:31:35.0468207Z","endTime":"2022-03-16T09:31:35.0865919Z","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: cache-control: - no-cache content-length: - - '588' + - '525' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:10:31 GMT + - Wed, 16 Mar 2022 09:32:05 GMT expires: - '-1' pragma: @@ -559,23 +564,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A10%3A01.001778Z''\"","location":"southcentralusstage","properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"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''2022-03-16T09%3A31%3A35.0762631Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:31:30.4795478Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '873' + - '460' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:10:31 GMT + - Wed, 16 Mar 2022 09:32:06 GMT etag: - - W/"datetime'2021-10-19T15%3A10%3A01.001778Z'" + - W/"datetime'2022-03-16T09%3A31%3A35.0762631Z'" expires: - '-1' pragma: @@ -596,8 +601,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, - "serviceLevel": "Premium"}}' + body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -608,31 +613,31 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A10%3A38.0955652Z''\"","location":"southcentralusstage","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''2022-03-16T09%3A32%3A10.4629335Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:08.2667854Z"},"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/southcentralusstage/operationResults/30316535-003a-46fc-8f98-e990b0ba7b7d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98c49b9b-98b1-486b-8e71-51b57e051b54?api-version=2021-10-01 cache-control: - no-cache content-length: - - '611' + - '576' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:10:38 GMT + - Wed, 16 Mar 2022 09:32:11 GMT etag: - - W/"datetime'2021-10-19T15%3A10%3A38.0955652Z'" + - W/"datetime'2022-03-16T09%3A32%3A10.4629335Z'" expires: - '-1' pragma: @@ -664,21 +669,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/30316535-003a-46fc-8f98-e990b0ba7b7d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/98c49b9b-98b1-486b-8e71-51b57e051b54?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/30316535-003a-46fc-8f98-e990b0ba7b7d","name":"30316535-003a-46fc-8f98-e990b0ba7b7d","status":"Succeeded","startTime":"2021-10-19T15:10:38.0998777Z","endTime":"2021-10-19T15:10:38.2270189Z","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/98c49b9b-98b1-486b-8e71-51b57e051b54","name":"98c49b9b-98b1-486b-8e71-51b57e051b54","status":"Succeeded","startTime":"2022-03-16T09:32:10.4657327Z","endTime":"2022-03-16T09:32:10.6157771Z","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: cache-control: - no-cache content-length: - - '627' + - '555' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:11:08 GMT + - Wed, 16 Mar 2022 09:32:41 GMT expires: - '-1' pragma: @@ -712,23 +717,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A10%3A38.2179303Z''\"","location":"southcentralusstage","properties":{"poolId":"541e5dc7-294f-852a-be4e-22ed37282449","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-16T09%3A32%3A10.6060112Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:08.2667854Z"},"properties":{"poolId":"650b48f7-e2f7-2ca8-afde-ef6feaa2054f","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '726' + - '691' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:11:09 GMT + - Wed, 16 Mar 2022 09:32:41 GMT etag: - - W/"datetime'2021-10-19T15%3A10%3A38.2179303Z'" + - W/"datetime'2022-03-16T09%3A32%3A10.6060112Z'" expires: - '-1' pragma: @@ -750,7 +755,8 @@ interactions: message: OK - request: 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"}}' + "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -761,31 +767,31 @@ interactions: Connection: - keep-alive Content-Length: - - '371' + - '337' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A11%3A15.9312726Z''\"","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"}}' + 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''2022-03-16T09%3A33%3A00.5300759Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:53.2574773Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 cache-control: - no-cache content-length: - - '888' + - '842' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:11:16 GMT + - Wed, 16 Mar 2022 09:33:01 GMT etag: - - W/"datetime'2021-10-19T15%3A11%3A15.9312726Z'" + - W/"datetime'2022-03-16T09%3A33%3A00.5300759Z'" expires: - '-1' pragma: @@ -797,7 +803,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -817,21 +823,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d","name":"dd82c04c-b8a6-43b2-9444-6ea23a15d70d","status":"Creating","startTime":"2021-10-19T15:11:15.9355659Z","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/82ce4177-b6d6-446a-9520-fac7887d09e2","name":"82ce4177-b6d6-446a-9520-fac7887d09e2","status":"Creating","startTime":"2022-03-16T09:33:00.5341657Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:11:47 GMT + - Wed, 16 Mar 2022 09:33:31 GMT expires: - '-1' pragma: @@ -840,10 +846,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -865,21 +867,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d","name":"dd82c04c-b8a6-43b2-9444-6ea23a15d70d","status":"Creating","startTime":"2021-10-19T15:11:15.9355659Z","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/82ce4177-b6d6-446a-9520-fac7887d09e2","name":"82ce4177-b6d6-446a-9520-fac7887d09e2","status":"Creating","startTime":"2022-03-16T09:33:00.5341657Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:12:17 GMT + - Wed, 16 Mar 2022 09:34:02 GMT expires: - '-1' pragma: @@ -888,10 +890,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -913,21 +911,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d","name":"dd82c04c-b8a6-43b2-9444-6ea23a15d70d","status":"Creating","startTime":"2021-10-19T15:11:15.9355659Z","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/82ce4177-b6d6-446a-9520-fac7887d09e2","name":"82ce4177-b6d6-446a-9520-fac7887d09e2","status":"Creating","startTime":"2022-03-16T09:33:00.5341657Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:12:47 GMT + - Wed, 16 Mar 2022 09:34:32 GMT expires: - '-1' pragma: @@ -936,10 +934,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -961,21 +955,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d","name":"dd82c04c-b8a6-43b2-9444-6ea23a15d70d","status":"Creating","startTime":"2021-10-19T15:11:15.9355659Z","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/82ce4177-b6d6-446a-9520-fac7887d09e2","name":"82ce4177-b6d6-446a-9520-fac7887d09e2","status":"Creating","startTime":"2022-03-16T09:33:00.5341657Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:13:18 GMT + - Wed, 16 Mar 2022 09:35:03 GMT expires: - '-1' pragma: @@ -984,10 +978,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1009,21 +999,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d","name":"dd82c04c-b8a6-43b2-9444-6ea23a15d70d","status":"Creating","startTime":"2021-10-19T15:11:15.9355659Z","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/82ce4177-b6d6-446a-9520-fac7887d09e2","name":"82ce4177-b6d6-446a-9520-fac7887d09e2","status":"Creating","startTime":"2022-03-16T09:33:00.5341657Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:13:47 GMT + - Wed, 16 Mar 2022 09:35:33 GMT expires: - '-1' pragma: @@ -1032,10 +1022,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1057,21 +1043,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d","name":"dd82c04c-b8a6-43b2-9444-6ea23a15d70d","status":"Creating","startTime":"2021-10-19T15:11:15.9355659Z","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/82ce4177-b6d6-446a-9520-fac7887d09e2","name":"82ce4177-b6d6-446a-9520-fac7887d09e2","status":"Creating","startTime":"2022-03-16T09:33:00.5341657Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:14:18 GMT + - Wed, 16 Mar 2022 09:36:05 GMT expires: - '-1' pragma: @@ -1080,10 +1066,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1105,21 +1087,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d","name":"dd82c04c-b8a6-43b2-9444-6ea23a15d70d","status":"Creating","startTime":"2021-10-19T15:11:15.9355659Z","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/82ce4177-b6d6-446a-9520-fac7887d09e2","name":"82ce4177-b6d6-446a-9520-fac7887d09e2","status":"Creating","startTime":"2022-03-16T09:33:00.5341657Z","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' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:14:48 GMT + - Wed, 16 Mar 2022 09:36:36 GMT expires: - '-1' pragma: @@ -1128,10 +1110,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1153,21 +1131,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/82ce4177-b6d6-446a-9520-fac7887d09e2?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/dd82c04c-b8a6-43b2-9444-6ea23a15d70d","name":"dd82c04c-b8a6-43b2-9444-6ea23a15d70d","status":"Succeeded","startTime":"2021-10-19T15:11:15.9355659Z","endTime":"2021-10-19T15:15:16.9383909Z","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/82ce4177-b6d6-446a-9520-fac7887d09e2","name":"82ce4177-b6d6-446a-9520-fac7887d09e2","status":"Succeeded","startTime":"2022-03-16T09:33:00.5341657Z","endTime":"2022-03-16T09:36:50.1144676Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:15:19 GMT + - Wed, 16 Mar 2022 09:37:07 GMT expires: - '-1' pragma: @@ -1176,10 +1154,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1201,23 +1175,23 @@ interactions: ParameterSetName: - -g -a -p -v -l --vnet --subnet --file-path --usage-threshold User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A15%3A16.9349695Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0289f8ec","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A36%3A50.1044111Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:53.2574773Z"},"properties":{"fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_f551326b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"38bac5aa-a6b2-299a-27e5-877434e25b91","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:15:20 GMT + - Wed, 16 Mar 2022 09:37:08 GMT etag: - - W/"datetime'2021-10-19T15%3A15%3A16.9349695Z'" + - W/"datetime'2022-03-16T09%3A36%3A50.1044111Z'" expires: - '-1' pragma: @@ -1226,10 +1200,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1251,21 +1221,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:15:21 GMT + - Wed, 16 Mar 2022 09:37:10 GMT expires: - '-1' pragma: @@ -1299,23 +1269,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A15%3A16.9349695Z''\"","location":"southcentralusstage","properties":{"fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0289f8ec","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-16T09%3A36%3A50.1044111Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:53.2574773Z"},"properties":{"fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_f551326b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"38bac5aa-a6b2-299a-27e5-877434e25b91","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2147' + - '2071' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:15:22 GMT + - Wed, 16 Mar 2022 09:37:10 GMT etag: - - W/"datetime'2021-10-19T15%3A15%3A16.9349695Z'" + - W/"datetime'2022-03-16T09%3A36%3A50.1044111Z'" expires: - '-1' pragma: @@ -1336,9 +1306,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:32:53.2574773Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "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: @@ -1350,35 +1320,35 @@ interactions: Connection: - keep-alive Content-Length: - - '419' + - '427' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A15%3A26.3926254Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Patching","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0289f8ec","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A37%3A12.9162768Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:53.2574773Z"},"properties":{"provisioningState":"Patching","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_f551326b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"38bac5aa-a6b2-299a-27e5-877434e25b91","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/03dd7199-e85e-4add-b8b2-7165fd088322?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/99a3aaa2-1c8a-4115-932b-2c20ac2e06ef?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2146' + - '2070' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:15:26 GMT + - Wed, 16 Mar 2022 09:37:12 GMT etag: - - W/"datetime'2021-10-19T15%3A15%3A26.3926254Z'" + - W/"datetime'2022-03-16T09%3A37%3A12.9162768Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/03dd7199-e85e-4add-b8b2-7165fd088322?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/99a3aaa2-1c8a-4115-932b-2c20ac2e06ef?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1408,21 +1378,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/03dd7199-e85e-4add-b8b2-7165fd088322?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/99a3aaa2-1c8a-4115-932b-2c20ac2e06ef?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/03dd7199-e85e-4add-b8b2-7165fd088322","name":"03dd7199-e85e-4add-b8b2-7165fd088322","status":"Succeeded","startTime":"2021-10-19T15:15:26.3987118Z","endTime":"2021-10-19T15:15:35.9780946Z","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/99a3aaa2-1c8a-4115-932b-2c20ac2e06ef","name":"99a3aaa2-1c8a-4115-932b-2c20ac2e06ef","status":"Succeeded","startTime":"2022-03-16T09:37:12.9239006Z","endTime":"2022-03-16T09:37:16.889469Z","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' + - '577' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:15:56 GMT + - Wed, 16 Mar 2022 09:37:43 GMT expires: - '-1' pragma: @@ -1456,23 +1426,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A15%3A35.9723702Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0289f8ec","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A37%3A16.8808721Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:53.2574773Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"38bac5aa-a6b2-299a-27e5-877434e25b91","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_f551326b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"38bac5aa-a6b2-299a-27e5-877434e25b91","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:15:56 GMT + - Wed, 16 Mar 2022 09:37:43 GMT etag: - - W/"datetime'2021-10-19T15%3A15%3A35.9723702Z'" + - W/"datetime'2022-03-16T09%3A37%3A16.8808721Z'" expires: - '-1' pragma: @@ -1504,33 +1474,33 @@ interactions: Connection: - keep-alive Content-Length: - - '35' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6eb601b4-6fd6-478e-847d-ec39c670d644?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e55287d8-4a14-4b95-8144-9898aa2698f5?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '457' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:15:58 GMT + - Wed, 16 Mar 2022 09:37:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6eb601b4-6fd6-478e-847d-ec39c670d644?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e55287d8-4a14-4b95-8144-9898aa2698f5?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1540,7 +1510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1560,21 +1530,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6eb601b4-6fd6-478e-847d-ec39c670d644?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e55287d8-4a14-4b95-8144-9898aa2698f5?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/6eb601b4-6fd6-478e-847d-ec39c670d644","name":"6eb601b4-6fd6-478e-847d-ec39c670d644","status":"Succeeded","startTime":"2021-10-19T15:15:58.670987Z","endTime":"2021-10-19T15:15:59.1058608Z","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/e55287d8-4a14-4b95-8144-9898aa2698f5","name":"e55287d8-4a14-4b95-8144-9898aa2698f5","status":"Succeeded","startTime":"2022-03-16T09:37:45.1641473Z","endTime":"2022-03-16T09:37:47.4841104Z","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"}}' headers: cache-control: - no-cache content-length: - - '692' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:16:28 GMT + - Wed, 16 Mar 2022 09:38:14 GMT expires: - '-1' pragma: @@ -1608,21 +1578,21 @@ interactions: ParameterSetName: - -g -a -p -v -l --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:15:59Z","backupId":"b3aa6964-3865-6dd0-baa6-3c6136d6ceaa","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:37:46Z","backupId":"3f2158ce-5e59-0c17-4676-0d19f66c38f2","size":0,"backupType":"Manual","provisioningState":"Creating","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '792' + - '657' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:16:28 GMT + - Wed, 16 Mar 2022 09:38:15 GMT expires: - '-1' pragma: @@ -1660,27 +1630,27 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name --label User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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/backups/cli-backup-000005?api-version=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","label":"label"}}' + 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":"southcentralusstage","properties":{"fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","label":"label"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/24a1c863-ac05-4a7f-8fd2-725cd9a977af?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c6b6020-1104-4945-a778-64f107091217?api-version=2021-10-01 cache-control: - no-cache content-length: - - '621' + - '496' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:16:38 GMT + - Wed, 16 Mar 2022 09:38:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/24a1c863-ac05-4a7f-8fd2-725cd9a977af?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c6b6020-1104-4945-a778-64f107091217?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1690,7 +1660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1710,21 +1680,21 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name --label User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/24a1c863-ac05-4a7f-8fd2-725cd9a977af?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/2c6b6020-1104-4945-a778-64f107091217?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/24a1c863-ac05-4a7f-8fd2-725cd9a977af","name":"24a1c863-ac05-4a7f-8fd2-725cd9a977af","status":"Succeeded","startTime":"2021-10-19T15:16:38.667957Z","endTime":"2021-10-19T15:16:39.9076375Z","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/2c6b6020-1104-4945-a778-64f107091217","name":"2c6b6020-1104-4945-a778-64f107091217","status":"Succeeded","startTime":"2022-03-16T09:38:17.7159721Z","endTime":"2022-03-16T09:38:19.2742295Z","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"}}' headers: cache-control: - no-cache content-length: - - '692' + - '604' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:08 GMT + - Wed, 16 Mar 2022 09:38:47 GMT expires: - '-1' pragma: @@ -1733,10 +1703,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1758,21 +1724,22 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name --label User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:15:59Z","backupId":"b3aa6964-3865-6dd0-baa6-3c6136d6ceaa","size":331776,"backupType":"Manual","label":"label","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:37:46Z","backupId":"3f2158ce-5e59-0c17-4676-0d19f66c38f2","size":0,"backupType":"Manual","provisioningState":"Failed","failureReason":"Error + when updating - Backup not found","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '814' + - '689' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:08 GMT + - Wed, 16 Mar 2022 09:38:47 GMT expires: - '-1' pragma: @@ -1781,10 +1748,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1806,21 +1769,22 @@ interactions: ParameterSetName: - -g -a -p -v --backup-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:15:59Z","backupId":"b3aa6964-3865-6dd0-baa6-3c6136d6ceaa","size":331776,"backupType":"Manual","label":"label","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:37:46Z","backupId":"3f2158ce-5e59-0c17-4676-0d19f66c38f2","size":0,"backupType":"Manual","provisioningState":"Failed","failureReason":"Error + when updating - Backup not found","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '814' + - '689' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:11 GMT + - Wed, 16 Mar 2022 09:38:49 GMT expires: - '-1' pragma: @@ -1829,10 +1793,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1854,21 +1814,22 @@ interactions: ParameterSetName: - -g -a -p -v -b User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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/cli-backup-000005?api-version=2021-10-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":"southcentralusstage","properties":{"creationDate":"2021-10-19T15:15:59Z","backupId":"b3aa6964-3865-6dd0-baa6-3c6136d6ceaa","size":331776,"backupType":"Manual","label":"label","provisioningState":"Succeeded","failureReason":"None","volumeName":"cli-vol-000004","useExistingSnapshot":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/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":"southcentralusstage","properties":{"creationDate":"2022-03-16T09:37:46Z","backupId":"3f2158ce-5e59-0c17-4676-0d19f66c38f2","size":0,"backupType":"Manual","provisioningState":"Failed","failureReason":"Error + when updating - Backup not found","volumeName":"cli-vol-000004","useExistingSnapshot":false}}' headers: cache-control: - no-cache content-length: - - '814' + - '689' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:12 GMT + - Wed, 16 Mar 2022 09:38:50 GMT expires: - '-1' pragma: @@ -1877,10 +1838,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1902,21 +1859,21 @@ interactions: ParameterSetName: - -g -a User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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":"33f2107c-2278-11eb-978e-ca9f38216a58"}}]}' + 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":"5257493b-402a-11eb-8a44-4634d5646699"}}]}' headers: cache-control: - no-cache content-length: - - '416' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:14 GMT + - Wed, 16 Mar 2022 09:38:51 GMT expires: - '-1' pragma: @@ -1925,10 +1882,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1950,23 +1903,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A15%3A35.9723702Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0289f8ec","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A37%3A16.8808721Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:53.2574773Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"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":"38bac5aa-a6b2-299a-27e5-877434e25b91","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_f551326b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"38bac5aa-a6b2-299a-27e5-877434e25b91","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2459' + - '2332' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:16 GMT + - Wed, 16 Mar 2022 09:38:51 GMT etag: - - W/"datetime'2021-10-19T15%3A15%3A35.9723702Z'" + - W/"datetime'2022-03-16T09%3A37%3A16.8808721Z'" expires: - '-1' pragma: @@ -1975,10 +1928,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1987,9 +1936,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 107374182400, - "throughputMibps": 0.0, "dataProtection": {"backup": {"policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", + body: '{"tags": {"CreatedOnDate": "2022-03-16T09:32:53.2574773Z"}, "properties": + {"serviceLevel": "Premium", "usageThreshold": 107374182400, "throughputMibps": + 0.0, "dataProtection": {"backup": {"policyEnforced": false, "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault", "backupEnabled": false}}}}' headers: Accept: @@ -2001,35 +1950,35 @@ interactions: Connection: - keep-alive Content-Length: - - '420' + - '428' Content-Type: - application/json ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A17%3A23.3129244Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0289f8ec","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A38%3A54.9551855Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:53.2574773Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":true,"policyEnforced":false,"vaultId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/vaults/cbsvault"}},"provisioningState":"Patching","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_f551326b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"38bac5aa-a6b2-299a-27e5-877434e25b91","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/86125db4-96a9-4be9-9541-4037df3bf4ec?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b994383-eb2e-49f0-8a38-ceb1e3722f97?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2458' + - '2331' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:23 GMT + - Wed, 16 Mar 2022 09:38:54 GMT etag: - - W/"datetime'2021-10-19T15%3A17%3A23.3129244Z'" + - W/"datetime'2022-03-16T09%3A38%3A54.9551855Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/86125db4-96a9-4be9-9541-4037df3bf4ec?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b994383-eb2e-49f0-8a38-ceb1e3722f97?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -2059,21 +2008,21 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/86125db4-96a9-4be9-9541-4037df3bf4ec?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0b994383-eb2e-49f0-8a38-ceb1e3722f97?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/86125db4-96a9-4be9-9541-4037df3bf4ec","name":"86125db4-96a9-4be9-9541-4037df3bf4ec","status":"Succeeded","startTime":"2021-10-19T15:17:23.3197722Z","endTime":"2021-10-19T15:17:32.1442577Z","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/0b994383-eb2e-49f0-8a38-ceb1e3722f97","name":"0b994383-eb2e-49f0-8a38-ceb1e3722f97","status":"Succeeded","startTime":"2022-03-16T09:38:54.9800373Z","endTime":"2022-03-16T09:39:00.7360898Z","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' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:53 GMT + - Wed, 16 Mar 2022 09:39:24 GMT expires: - '-1' pragma: @@ -2107,23 +2056,23 @@ interactions: ParameterSetName: - -g -a -p -v --vault-id --backup-enabled User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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-10-19T15%3A17%3A32.1381355Z''\"","location":"southcentralusstage","properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_0289f8ec","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"1e262fad-81a1-a9ec-63fd-348b870cf1c3","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","fileSystemId":"bde4f8d7-f7c1-4f1c-25ad-a798d590c41f","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + 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''2022-03-16T09%3A39%3A00.7288231Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-16T09:32:53.2574773Z"},"properties":{"dataProtection":{"backup":{"backupEnabled":false,"policyEnforced":false,"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":"38bac5aa-a6b2-299a-27e5-877434e25b91","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_f551326b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_backup_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-backup000006/subnets/default","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"38bac5aa-a6b2-299a-27e5-877434e25b91","fileSystemId":"38bac5aa-a6b2-299a-27e5-877434e25b91","ipAddress":"10.5.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2460' + - '2333' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Oct 2021 15:17:53 GMT + - Wed, 16 Mar 2022 09:39:25 GMT etag: - - W/"datetime'2021-10-19T15%3A17%3A32.1381355Z'" + - W/"datetime'2022-03-16T09%3A39%3A00.7288231Z'" expires: - '-1' pragma: 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 2b7d0984a95..76b71649fe0 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 @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A49%3A26.691313Z''\"","location":"eastus2euap","properties":{"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A32%3A17.2170309Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:14.3224543Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:16.5374206Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:16.5374206Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9ac478c1-c0fd-412e-97e7-04d39c728870?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2e2b9c53-8d6d-447a-ba83-11f65c1963fa?api-version=2021-10-01 cache-control: - no-cache content-length: - - '421' + - '702' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:49:26 GMT + - Tue, 15 Mar 2022 11:32:17 GMT etag: - - W/"datetime'2021-10-20T08%3A49%3A26.691313Z'" + - W/"datetime'2022-03-15T11%3A32%3A17.2170309Z'" expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -67,21 +67,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9ac478c1-c0fd-412e-97e7-04d39c728870?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2e2b9c53-8d6d-447a-ba83-11f65c1963fa?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/9ac478c1-c0fd-412e-97e7-04d39c728870","name":"9ac478c1-c0fd-412e-97e7-04d39c728870","status":"Succeeded","startTime":"2021-10-20T08:49:26.7000619Z","endTime":"2021-10-20T08:49:26.7350673Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2e2b9c53-8d6d-447a-ba83-11f65c1963fa","name":"2e2b9c53-8d6d-447a-ba83-11f65c1963fa","status":"Succeeded","startTime":"2022-03-15T11:32:17.2149212Z","endTime":"2022-03-15T11:32:17.2846328Z","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' + - '536' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:49:57 GMT + - Tue, 15 Mar 2022 11:32:47 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A49%3A26.729786Z''\"","location":"eastus2euap","properties":{"activeDirectories":[{"activeDirectoryId":"07f0c290-65d4-f42b-f996-3adf389c0b0e","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.12.3.4","status":"Created","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A32%3A17.2884586Z''\"","location":"eastus2euap","tags":{"CreatedOnDate":"2022-03-15T11:32:14.3224543Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"ce84edd3-4475-9dc9-1818-763d9c54b8cc","username":"cbs","password":"****************","domain":"ANFReg.netapp.com","dns":"10.34.0.4","status":"InUse","smbServerName":"ANFREG","organizationalUnit":"CN=Computers","kdcIP":"10.34.0.4","adName":"ANFReg.netapp.com","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:16.5374206Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:16.5374206Z"}}' headers: cache-control: - no-cache content-length: - - '851' + - '1200' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:49:57 GMT + - Tue, 15 Mar 2022 11:32:48 GMT etag: - - W/"datetime'2021-10-20T08%3A49%3A26.729786Z'" + - W/"datetime'2022-03-15T11%3A32%3A17.2884586Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -170,25 +162,25 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A50%3A04.1716379Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Creating"}}' + 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''2022-03-15T11%3A32%3A56.013867Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:32:50.2883434Z"},"properties":{"enabled":true,"dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:55.4001758Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:55.4001758Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/da64db99-a0fe-427e-930d-b374f6790d4d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b689b9d7-6474-43b9-8a94-cc702ceaf7f8?api-version=2021-10-01 cache-control: - no-cache content-length: - - '598' + - '870' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:50:04 GMT + - Tue, 15 Mar 2022 11:32:56 GMT etag: - - W/"datetime'2021-10-20T08%3A50%3A04.1716379Z'" + - W/"datetime'2022-03-15T11%3A32%3A56.013867Z'" expires: - '-1' pragma: @@ -220,21 +212,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/da64db99-a0fe-427e-930d-b374f6790d4d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b689b9d7-6474-43b9-8a94-cc702ceaf7f8?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/da64db99-a0fe-427e-930d-b374f6790d4d","name":"da64db99-a0fe-427e-930d-b374f6790d4d","status":"Succeeded","startTime":"2021-10-20T08:50:04.1782997Z","endTime":"2021-10-20T08:50:04.7001667Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/b689b9d7-6474-43b9-8a94-cc702ceaf7f8","name":"b689b9d7-6474-43b9-8a94-cc702ceaf7f8","status":"Succeeded","startTime":"2022-03-15T11:32:56.0154581Z","endTime":"2022-03-15T11:32:56.2966878Z","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' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:50:34 GMT + - Tue, 15 Mar 2022 11:33:26 GMT expires: - '-1' pragma: @@ -268,23 +260,23 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A50%3A04.6945899Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"enabled":true,"backupPolicyId":"b5fba6e5-3182-11ec-9355-963fcd611dc8","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"provisioningState":"Succeeded"}}' + 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''2022-03-15T11%3A32%3A56.3019745Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:32:50.2883434Z"},"properties":{"enabled":true,"backupPolicyId":"a8cac998-a453-11ec-a45c-263999ef5744","dailyBackupsToKeep":1,"weeklyBackupsToKeep":2,"monthlyBackupsToKeep":3,"volumesAssigned":0,"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:55.4001758Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:55.4001758Z"}}' headers: cache-control: - no-cache content-length: - - '655' + - '948' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:50:35 GMT + - Tue, 15 Mar 2022 11:33:26 GMT etag: - - W/"datetime'2021-10-20T08%3A50%3A04.6945899Z'" + - W/"datetime'2022-03-15T11%3A32%3A56.3019745Z'" expires: - '-1' pragma: @@ -323,29 +315,29 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A50%3A38.7686472Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1"},"properties":{"provisioningState":"Patching","enabled":false,"backupPolicyId":"b5fba6e5-3182-11ec-9355-963fcd611dc8","dailyBackupsToKeep":4,"weeklyBackupsToKeep":5,"monthlyBackupsToKeep":6}}' + 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''2022-03-15T11%3A33%3A30.5632369Z''\"","location":"eastus2euap","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:32:50.2883434Z"},"properties":{"provisioningState":"Patching","enabled":false,"backupPolicyId":"a8cac998-a453-11ec-a45c-263999ef5744","dailyBackupsToKeep":4,"weeklyBackupsToKeep":5,"monthlyBackupsToKeep":6,"volumesAssigned":0},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:55.4001758Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:32:55.4001758Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2c670cb1-89cf-44f5-9a05-ca78062deb30?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/38a98577-1e83-4bf1-8fc5-72324a60731b?api-version=2021-10-01 cache-control: - no-cache content-length: - - '655' + - '948' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:50:38 GMT + - Tue, 15 Mar 2022 11:33:29 GMT etag: - - W/"datetime'2021-10-20T08%3A50%3A38.7686472Z'" + - W/"datetime'2022-03-15T11%3A33%3A30.5632369Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2c670cb1-89cf-44f5-9a05-ca78062deb30?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/38a98577-1e83-4bf1-8fc5-72324a60731b?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -375,21 +367,21 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2c670cb1-89cf-44f5-9a05-ca78062deb30?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/38a98577-1e83-4bf1-8fc5-72324a60731b?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/2c670cb1-89cf-44f5-9a05-ca78062deb30","name":"2c670cb1-89cf-44f5-9a05-ca78062deb30","status":"Succeeded","startTime":"2021-10-20T08:50:38.7738416Z","endTime":"2021-10-20T08:50:39.1495075Z","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"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2euap/operationResults/38a98577-1e83-4bf1-8fc5-72324a60731b","name":"38a98577-1e83-4bf1-8fc5-72324a60731b","status":"Succeeded","startTime":"2022-03-15T11:33:30.5677317Z","endTime":"2022-03-15T11:33:30.8177213Z","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' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:51:09 GMT + - Tue, 15 Mar 2022 11:34:01 GMT expires: - '-1' pragma: @@ -423,23 +415,23 @@ interactions: ParameterSetName: - -g -a --backup-policy-name -l -d -w -m -e --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A50%3A39.1399082Z''\"","location":"eastus2euap","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","enabled":false,"backupPolicyId":"b5fba6e5-3182-11ec-9355-963fcd611dc8","dailyBackupsToKeep":4,"weeklyBackupsToKeep":5,"monthlyBackupsToKeep":6}}' + 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''2022-03-15T11%3A33%3A30.817091Z''\"","location":"eastus2euap","tags":{"Tag1":"Value2","CreatedOnDate":"2022-03-15T11:33:28.8876206Z"},"properties":{"provisioningState":"Succeeded","enabled":false,"backupPolicyId":"a8cac998-a453-11ec-a45c-263999ef5744","dailyBackupsToKeep":4,"weeklyBackupsToKeep":5,"monthlyBackupsToKeep":6,"volumesAssigned":0},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:55.4001758Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:29.9663331Z"}}' headers: cache-control: - no-cache content-length: - - '656' + - '948' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:51:09 GMT + - Tue, 15 Mar 2022 11:34:01 GMT etag: - - W/"datetime'2021-10-20T08%3A50%3A39.1399082Z'" + - W/"datetime'2022-03-15T11%3A33%3A30.817091Z'" expires: - '-1' pragma: @@ -473,23 +465,23 @@ interactions: ParameterSetName: - -g -a --backup-policy-name User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + 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=2021-10-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-10-20T08%3A50%3A39.1399082Z''\"","location":"eastus2euap","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","enabled":false,"backupPolicyId":"b5fba6e5-3182-11ec-9355-963fcd611dc8","dailyBackupsToKeep":4,"weeklyBackupsToKeep":5,"monthlyBackupsToKeep":6}}' + 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''2022-03-15T11%3A33%3A30.817091Z''\"","location":"eastus2euap","tags":{"Tag1":"Value2","CreatedOnDate":"2022-03-15T11:33:28.8876206Z"},"properties":{"provisioningState":"Succeeded","enabled":false,"backupPolicyId":"a8cac998-a453-11ec-a45c-263999ef5744","dailyBackupsToKeep":4,"weeklyBackupsToKeep":5,"monthlyBackupsToKeep":6,"volumesAssigned":0},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:32:55.4001758Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:33:29.9663331Z"}}' headers: cache-control: - no-cache content-length: - - '656' + - '948' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 08:51:10 GMT + - Tue, 15 Mar 2022 11:34:02 GMT etag: - - W/"datetime'2021-10-20T08%3A50%3A39.1399082Z'" + - W/"datetime'2022-03-15T11%3A33%3A30.817091Z'" expires: - '-1' pragma: 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 3b06397250b..7be4d10e7df 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_pool.yaml @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A52%3A53.2846121Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:52:49.6385456Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:52:52.512011Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:52:52.512011Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A17.4388086Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:11.8889467Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:16.5779791Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:16.5779791Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49e229f4-b256-4db2-9828-24572e326cf7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e4d00476-45b3-4195-9451-19c29895a24f?api-version=2021-10-01 cache-control: - no-cache content-length: - - '699' + - '701' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:52:54 GMT + - Tue, 15 Mar 2022 10:56:18 GMT etag: - - W/"datetime'2022-01-07T08%3A52%3A53.2846121Z'" + - W/"datetime'2022-03-15T10%3A56%3A17.4388086Z'" expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49e229f4-b256-4db2-9828-24572e326cf7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e4d00476-45b3-4195-9451-19c29895a24f?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/49e229f4-b256-4db2-9828-24572e326cf7","name":"49e229f4-b256-4db2-9828-24572e326cf7","status":"Succeeded","startTime":"2022-01-07T08:52:53.2899309Z","endTime":"2022-01-07T08:52:53.3270917Z","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/southcentralusstage/operationResults/e4d00476-45b3-4195-9451-19c29895a24f","name":"e4d00476-45b3-4195-9451-19c29895a24f","status":"Succeeded","startTime":"2022-03-15T10:56:17.4293782Z","endTime":"2022-03-15T10:56:17.4606659Z","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: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:53:24 GMT + - Tue, 15 Mar 2022 10:56:48 GMT expires: - '-1' pragma: @@ -90,10 +90,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -115,23 +111,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T08%3A52%3A53.3233868Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:52:49.6385456Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:52:52.512011Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:52:52.512011Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A17.462639Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:11.8889467Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:16.5779791Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:16.5779791Z"}}' headers: cache-control: - no-cache content-length: - - '1143' + - '1165' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:53:25 GMT + - Tue, 15 Mar 2022 10:56:48 GMT etag: - - W/"datetime'2022-01-07T08%3A52%3A53.3233868Z'" + - W/"datetime'2022-03-15T10%3A56%3A17.462639Z'" expires: - '-1' pragma: @@ -140,10 +136,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -170,25 +162,25 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A53%3A32.1172962Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:53:26.8284580Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T08:53:31.180883Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:53:31.180883Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A56%3A55.7332124Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:50.5876866Z"},"properties":{"serviceLevel":"Premium","size":4398046511104,"totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T10:56:54.7569201Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:56:54.7569201Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b48058f-8e6e-4a0f-a0fc-13f81b6b91d7?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd41567c-9d89-4c67-91f6-c875e1d2df6a?api-version=2021-10-01 cache-control: - no-cache content-length: - - '862' + - '864' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:53:32 GMT + - Tue, 15 Mar 2022 10:56:56 GMT etag: - - W/"datetime'2022-01-07T08%3A53%3A32.1172962Z'" + - W/"datetime'2022-03-15T10%3A56%3A55.7332124Z'" expires: - '-1' pragma: @@ -220,12 +212,12 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b48058f-8e6e-4a0f-a0fc-13f81b6b91d7?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/fd41567c-9d89-4c67-91f6-c875e1d2df6a?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8b48058f-8e6e-4a0f-a0fc-13f81b6b91d7","name":"8b48058f-8e6e-4a0f-a0fc-13f81b6b91d7","status":"Succeeded","startTime":"2022-01-07T08:53:32.1220732Z","endTime":"2022-01-07T08:53:32.2341241Z","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/southcentralusstage/operationResults/fd41567c-9d89-4c67-91f6-c875e1d2df6a","name":"fd41567c-9d89-4c67-91f6-c875e1d2df6a","status":"Succeeded","startTime":"2022-03-15T10:56:55.7378424Z","endTime":"2022-03-15T10:56:56.0816391Z","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: cache-control: - no-cache @@ -234,7 +226,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:54:02 GMT + - Tue, 15 Mar 2022 10:57:27 GMT expires: - '-1' pragma: @@ -268,23 +260,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A53%3A32.2263574Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:53:26.8284580Z"},"properties":{"poolId":"230e2d82-a177-b231-4f68-3d4e889ea505","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A56%3A56.088281Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:50.5876866Z"},"properties":{"poolId":"a4ddd934-abcf-46cc-d93d-6d836dbdaee6","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '701' + - '698' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:54:02 GMT + - Tue, 15 Mar 2022 10:57:27 GMT etag: - - W/"datetime'2022-01-07T08%3A53%3A32.2263574Z'" + - W/"datetime'2022-03-15T10%3A56%3A56.088281Z'" expires: - '-1' pragma: @@ -318,23 +310,23 @@ interactions: ParameterSetName: - -g -a -p --tags --qos-type User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A53%3A32.2263574Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:53:26.8284580Z"},"properties":{"poolId":"230e2d82-a177-b231-4f68-3d4e889ea505","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T10%3A56%3A56.088281Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:50.5876866Z"},"properties":{"poolId":"a4ddd934-abcf-46cc-d93d-6d836dbdaee6","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '701' + - '698' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:54:05 GMT + - Tue, 15 Mar 2022 10:57:28 GMT etag: - - W/"datetime'2022-01-07T08%3A53%3A32.2263574Z'" + - W/"datetime'2022-03-15T10%3A56%3A56.088281Z'" expires: - '-1' pragma: @@ -373,29 +365,29 @@ interactions: ParameterSetName: - -g -a -p --tags --qos-type User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A54%3A08.0680593Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T08:53:26.8284580Z"},"properties":{"provisioningState":"Patching","poolId":"230e2d82-a177-b231-4f68-3d4e889ea505","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false}}' + 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''2022-03-15T10%3A57%3A33.1798153Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T10:56:50.5876866Z"},"properties":{"provisioningState":"Patching","poolId":"a4ddd934-abcf-46cc-d93d-6d836dbdaee6","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/351a966c-af36-42ea-8381-84146bf9647a?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a2324b0-12ad-4a9b-b11c-f635f8b2c8a9?api-version=2021-10-01 cache-control: - no-cache content-length: - - '700' + - '698' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:54:07 GMT + - Tue, 15 Mar 2022 10:57:32 GMT etag: - - W/"datetime'2022-01-07T08%3A54%3A08.0680593Z'" + - W/"datetime'2022-03-15T10%3A57%3A33.1798153Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/351a966c-af36-42ea-8381-84146bf9647a?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a2324b0-12ad-4a9b-b11c-f635f8b2c8a9?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -425,12 +417,12 @@ interactions: ParameterSetName: - -g -a -p --tags --qos-type User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/351a966c-af36-42ea-8381-84146bf9647a?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/9a2324b0-12ad-4a9b-b11c-f635f8b2c8a9?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/351a966c-af36-42ea-8381-84146bf9647a","name":"351a966c-af36-42ea-8381-84146bf9647a","status":"Succeeded","startTime":"2022-01-07T08:54:08.0751103Z","endTime":"2022-01-07T08:54:09.8003217Z","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/southcentralusstage/operationResults/9a2324b0-12ad-4a9b-b11c-f635f8b2c8a9","name":"9a2324b0-12ad-4a9b-b11c-f635f8b2c8a9","status":"Succeeded","startTime":"2022-03-15T10:57:33.1813048Z","endTime":"2022-03-15T10:57:34.9156857Z","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: cache-control: - no-cache @@ -439,7 +431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:54:37 GMT + - Tue, 15 Mar 2022 10:58:03 GMT expires: - '-1' pragma: @@ -473,12 +465,12 @@ interactions: ParameterSetName: - -g -a -p --tags --qos-type User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_pool_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T08%3A54%3A09.790083Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T08:54:05.5197519Z"},"properties":{"poolId":"230e2d82-a177-b231-4f68-3d4e889ea505","serviceLevel":"Premium","size":4398046511104,"qosType":"Manual","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"},"systemData":{"lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T08:54:07.381016Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T10%3A57%3A34.9098144Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T10:57:30.4530958Z"},"properties":{"poolId":"a4ddd934-abcf-46cc-d93d-6d836dbdaee6","serviceLevel":"Premium","size":4398046511104,"qosType":"Manual","totalThroughputMibps":256.0,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"},"systemData":{"lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T10:57:32.4476357Z"}}' headers: cache-control: - no-cache @@ -487,9 +479,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 08:54:37 GMT + - Tue, 15 Mar 2022 10:58:04 GMT etag: - - W/"datetime'2022-01-07T08%3A54%3A09.790083Z'" + - W/"datetime'2022-03-15T10%3A57%3A34.9098144Z'" 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 94e98ae6186..c5900a820a1 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 @@ -17,25 +17,25 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A03%3A29.2130045Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:03:24.6055158Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:03:28.4023192Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:03:28.4023192Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A20%3A54.4845133Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:20:49.0535456Z"},"properties":{"provisioningState":"Creating"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:20:53.757028Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:20:53.757028Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/157338fc-e960-42e7-b00a-47d8284cb215?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10f82b51-f052-4027-b8c4-e28b34c0a813?api-version=2021-10-01 cache-control: - no-cache content-length: - - '712' + - '710' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:03:29 GMT + - Tue, 15 Mar 2022 11:20:55 GMT etag: - - W/"datetime'2022-01-07T09%3A03%3A29.2130045Z'" + - W/"datetime'2022-03-15T11%3A20%3A54.4845133Z'" expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -67,12 +67,12 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/157338fc-e960-42e7-b00a-47d8284cb215?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/10f82b51-f052-4027-b8c4-e28b34c0a813?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/157338fc-e960-42e7-b00a-47d8284cb215","name":"157338fc-e960-42e7-b00a-47d8284cb215","status":"Succeeded","startTime":"2022-01-07T09:03:29.2196996Z","endTime":"2022-01-07T09:03:29.2497232Z","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/southcentralusstage/operationResults/10f82b51-f052-4027-b8c4-e28b34c0a813","name":"10f82b51-f052-4027-b8c4-e28b34c0a813","status":"Succeeded","startTime":"2022-03-15T11:20:54.4852831Z","endTime":"2022-03-15T11:20:54.5322112Z","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: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:04:00 GMT + - Tue, 15 Mar 2022 11:21:25 GMT expires: - '-1' pragma: @@ -115,23 +115,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A03%3A29.2470904Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T09:03:24.6055158Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:03:28.4023192Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:03:28.4023192Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A20%3A54.5366128Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T11:20:49.0535456Z"},"properties":{"activeDirectories":[{"activeDirectoryId":"6411f198-b5fc-ad07-113d-56dd4da0e462","username":"testadmin","password":"****************","domain":"testdomain.local","dns":"10.0.2.4,10.0.2.5","status":"Created","smbServerName":"testsmb","organizationalUnit":"CN=Computers","aesEncryption":false,"ldapSigning":false,"ldapOverTLS":false,"allowLocalNFSUsersWithLdap":false,"encryptDCConnections":false,"ldapSearchScope":{}}],"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:20:53.757028Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:20:53.757028Z"}}' headers: cache-control: - no-cache content-length: - - '1156' + - '1175' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:04:01 GMT + - Tue, 15 Mar 2022 11:21:26 GMT etag: - - W/"datetime'2022-01-07T09%3A03%3A29.2470904Z'" + - W/"datetime'2022-03-15T11%3A20%3A54.5366128Z'" expires: - '-1' pragma: @@ -175,25 +175,25 @@ interactions: --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled --tags User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A04%3A06.94258Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T09:04:01.8745068Z"},"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"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:04:06.1752692Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:04:06.1752692Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A32.7113959Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:21:26.8126439Z"},"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"},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:31.9463902Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:31.9463902Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/05c049f1-9720-4150-9446-33e0c9b1a10c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/21cb55ba-7f9e-4d96-b9cd-be1239278755?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1080' + - '1082' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:04:07 GMT + - Tue, 15 Mar 2022 11:21:34 GMT etag: - - W/"datetime'2022-01-07T09%3A04%3A06.94258Z'" + - W/"datetime'2022-03-15T11%3A21%3A32.7113959Z'" expires: - '-1' pragma: @@ -205,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -235,29 +235,29 @@ interactions: --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A04%3A09.5603231Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T09:04:01.8745068Z"},"properties":{"provisioningState":"Patching","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}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:04:06.1752692Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:04:06.1752692Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A39.739481Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:21:26.8126439Z"},"properties":{"provisioningState":"Patching","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}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:31.9463902Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:31.9463902Z"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28afa0f4-b119-4026-a79c-149d3a5fb920?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0e35d4b3-6e98-4ee7-90b3-1802d56f9f34?api-version=2021-10-01 cache-control: - no-cache content-length: - - '1082' + - '1081' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:04:08 GMT + - Tue, 15 Mar 2022 11:21:39 GMT etag: - - W/"datetime'2022-01-07T09%3A04%3A09.5603231Z'" + - W/"datetime'2022-03-15T11%3A21%3A39.739481Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28afa0f4-b119-4026-a79c-149d3a5fb920?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0e35d4b3-6e98-4ee7-90b3-1802d56f9f34?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -289,12 +289,12 @@ interactions: --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28afa0f4-b119-4026-a79c-149d3a5fb920?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0e35d4b3-6e98-4ee7-90b3-1802d56f9f34?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/28afa0f4-b119-4026-a79c-149d3a5fb920","name":"28afa0f4-b119-4026-a79c-149d3a5fb920","status":"Succeeded","startTime":"2022-01-07T09:04:09.5642746Z","endTime":"2022-01-07T09:04:09.6642811Z","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/southcentralusstage/operationResults/0e35d4b3-6e98-4ee7-90b3-1802d56f9f34","name":"0e35d4b3-6e98-4ee7-90b3-1802d56f9f34","status":"Succeeded","startTime":"2022-03-15T11:21:39.7314669Z","endTime":"2022-03-15T11:21:39.8263148Z","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: cache-control: - no-cache @@ -303,7 +303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:04:39 GMT + - Tue, 15 Mar 2022 11:22:09 GMT expires: - '-1' pragma: @@ -312,10 +312,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -339,12 +335,12 @@ interactions: --weekly-minute --monthly-minute --daily-hour --weekly-hour --monthly-hour --weekly-day --monthly-days --enabled User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A04%3A09.6582687Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T09:04:01.8745068Z"},"properties":{"provisioningState":"Succeeded","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}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:04:06.1752692Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:04:08.8651126Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A39.8254316Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:21:26.8126439Z"},"properties":{"provisioningState":"Succeeded","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}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:31.9463902Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:38.4776044Z"}}' headers: cache-control: - no-cache @@ -353,9 +349,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:04:40 GMT + - Tue, 15 Mar 2022 11:22:10 GMT etag: - - W/"datetime'2022-01-07T09%3A04%3A09.6582687Z'" + - W/"datetime'2022-03-15T11%3A21%3A39.8254316Z'" expires: - '-1' pragma: @@ -364,10 +360,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -389,12 +381,12 @@ interactions: ParameterSetName: - -g -a --snapshot-policy-name User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-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=2021-10-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''2022-01-07T09%3A04%3A09.6582687Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-01-07T09:04:01.8745068Z"},"properties":{"provisioningState":"Succeeded","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}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdAt":"2022-01-07T09:04:06.1752692Z","createdByType":"Application","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedAt":"2022-01-07T09:04:08.8651126Z","lastModifiedByType":"Application"}}' + 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''2022-03-15T11%3A21%3A39.8254316Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value1","CreatedOnDate":"2022-03-15T11:21:26.8126439Z"},"properties":{"provisioningState":"Succeeded","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}},"systemData":{"createdBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","createdByType":"Application","createdAt":"2022-03-15T11:21:31.9463902Z","lastModifiedBy":"c6c4faba-2b22-44d9-80a4-71ff5b71f811","lastModifiedByType":"Application","lastModifiedAt":"2022-03-15T11:21:38.4776044Z"}}' headers: cache-control: - no-cache @@ -403,9 +395,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 09:04:41 GMT + - Tue, 15 Mar 2022 11:22:12 GMT etag: - - W/"datetime'2022-01-07T09%3A04%3A09.6582687Z'" + - W/"datetime'2022-03-15T11%3A21%3A39.8254316Z'" 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 13b556f1b02..6951d313b84 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/recordings/test_update_volume.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"d5722832-fc2b-4c17-b31d-56a0d761fcf7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8e4b0fd3-a069-41fa-9b9d-51093dc8d38e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:38:58.7168847Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:25:33.3324905Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"98fdeee0-0437-4f05-aeb3-181b7f50a79d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78303557-f32b-48e9-a3ab-5efad579a98c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/61db5dd4-fc55-4040-bd00-2aed3b27e4f8?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/2fe20e22-f886-4169-ab17-ee4d6d76ff83?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '769' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:39:04 GMT + - Tue, 15 Mar 2022 14:25:37 GMT expires: - '-1' pragma: @@ -58,61 +58,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2df83503-543d-4d7f-8c94-359c31f2a9f8 + - d380d149-a7a6-4359-a87e-57a7af53ee9c x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group -l --address-prefix - User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/61db5dd4-fc55-4040-bd00-2aed3b27e4f8?api-version=2021-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 10:39:07 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: - - 8f5f2684-691b-4eac-8475-25c47ebd0f2a - status: - code: 200 - message: '' + message: Created - request: body: null headers: @@ -127,9 +78,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/61db5dd4-fc55-4040-bd00-2aed3b27e4f8?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/2fe20e22-f886-4169-ab17-ee4d6d76ff83?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -141,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:39:18 GMT + - Tue, 15 Mar 2022 14:25:40 GMT expires: - '-1' pragma: @@ -151,17 +102,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 112a8833-4a48-47a1-b78e-8fab52f362cd + - 7dcddaec-88e7-4eb8-8802-fb6c707d21bb status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -176,17 +123,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"60567fc3-52f1-4b04-ab8a-3586e8b9b3a6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3a11351f-4920-41a7-9394-7ccb4f16a0ee\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:38:58.7168847Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:25:33.3324905Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"98fdeee0-0437-4f05-aeb3-181b7f50a79d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78303557-f32b-48e9-a3ab-5efad579a98c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -195,13 +142,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:39:18 GMT + - Tue, 15 Mar 2022 14:25:40 GMT etag: - - W/"60567fc3-52f1-4b04-ab8a-3586e8b9b3a6" + - W/"3a11351f-4920-41a7-9394-7ccb4f16a0ee" expires: - '-1' pragma: @@ -211,17 +158,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 73f82804-5c63-4ac9-9f6e-24e53b3f90d2 + - 221fde88-6d9f-4a34-954b-84edeba1f145 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -236,17 +179,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"60567fc3-52f1-4b04-ab8a-3586e8b9b3a6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3a11351f-4920-41a7-9394-7ccb4f16a0ee\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:38:58.7168847Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:25:33.3324905Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"98fdeee0-0437-4f05-aeb3-181b7f50a79d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78303557-f32b-48e9-a3ab-5efad579a98c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -255,13 +198,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:39:19 GMT + - Tue, 15 Mar 2022 14:25:40 GMT etag: - - W/"60567fc3-52f1-4b04-ab8a-3586e8b9b3a6" + - W/"3a11351f-4920-41a7-9394-7ccb4f16a0ee" expires: - '-1' pragma: @@ -271,20 +214,16 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 23c6c24a-8ef4-4548-8eb3-98d7743e411e + - 2dd99431-047b-4f70-ab6c-f04ba451b933 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T10:38:58.7168847Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T14:25:33.3324905Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000006", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -301,33 +240,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"ff00d55f-518b-4779-8f8f-de6bb66a9b96\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"86bdfaa8-7d81-4e5f-b3ac-5273bd9e37cd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:38:58.7168847Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:25:33.3324905Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"98fdeee0-0437-4f05-aeb3-181b7f50a79d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78303557-f32b-48e9-a3ab-5efad579a98c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"ff00d55f-518b-4779-8f8f-de6bb66a9b96\\\"\",\r\n + \ \"etag\": \"W/\\\"86bdfaa8-7d81-4e5f-b3ac-5273bd9e37cd\\\"\",\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/\\\"ff00d55f-518b-4779-8f8f-de6bb66a9b96\\\"\",\r\n + \ \"etag\": \"W/\\\"86bdfaa8-7d81-4e5f-b3ac-5273bd9e37cd\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -342,15 +281,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/c5fc7469-38d8-4e57-83b4-16a4b65ffeb0?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a10183d0-0456-44e2-911f-110f5dc37343?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2258' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:39:20 GMT + - Tue, 15 Mar 2022 14:25:42 GMT expires: - '-1' pragma: @@ -360,19 +299,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b30f07c-b88a-4e37-9f50-19b7bd08a42b + - f30b8d38-7eb2-4337-9b18-a2c0166f8600 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -387,9 +322,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/c5fc7469-38d8-4e57-83b4-16a4b65ffeb0?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/a10183d0-0456-44e2-911f-110f5dc37343?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -401,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:39:24 GMT + - Tue, 15 Mar 2022 14:25:46 GMT expires: - '-1' pragma: @@ -411,17 +346,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b9960f6-0a3a-4d26-9a98-e1c23686e67b + - a73abb41-975d-4ca4-8fb1-8d64e2f21801 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -436,27 +367,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"e589e38f-a461-4397-8786-ee17eeabe41c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f55d460a-4070-4f7d-84c5-f57fa6e48be1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T10:38:58.7168847Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T14:25:33.3324905Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"98fdeee0-0437-4f05-aeb3-181b7f50a79d\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"78303557-f32b-48e9-a3ab-5efad579a98c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"e589e38f-a461-4397-8786-ee17eeabe41c\\\"\",\r\n + \ \"etag\": \"W/\\\"f55d460a-4070-4f7d-84c5-f57fa6e48be1\\\"\",\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/\\\"e589e38f-a461-4397-8786-ee17eeabe41c\\\"\",\r\n + \ \"etag\": \"W/\\\"f55d460a-4070-4f7d-84c5-f57fa6e48be1\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -471,13 +402,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2260' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:39:24 GMT + - Tue, 15 Mar 2022 14:25:46 GMT etag: - - W/"e589e38f-a461-4397-8786-ee17eeabe41c" + - W/"f55d460a-4070-4f7d-84c5-f57fa6e48be1" expires: - '-1' pragma: @@ -487,17 +418,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2bae656-c94c-43e8-bd04-7ab012bd79d5 + - 187c035b-f4e0-45e3-b67e-6ae977479762 status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -510,31 +437,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T10%3A39%3A30.393756Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:39:25.3119212Z"},"properties":{"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''2022-03-15T14%3A25%3A52.4773066Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:25:48.3634712Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e6cc5b35-23e8-4ecb-9d58-b4738f400653?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5dad924e-ed2c-48c8-add6-8d15d6f66b72?api-version=2021-10-01 cache-control: - no-cache content-length: - - '418' + - '413' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:39:32 GMT + - Tue, 15 Mar 2022 14:25:53 GMT etag: - - W/"datetime'2022-01-07T10%3A39%3A30.393756Z'" + - W/"datetime'2022-03-15T14%3A25%3A52.4773066Z'" expires: - '-1' pragma: @@ -566,21 +493,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e6cc5b35-23e8-4ecb-9d58-b4738f400653?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5dad924e-ed2c-48c8-add6-8d15d6f66b72?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/e6cc5b35-23e8-4ecb-9d58-b4738f400653","name":"e6cc5b35-23e8-4ecb-9d58-b4738f400653","status":"Succeeded","startTime":"2022-01-07T10:39:30.3957903Z","endTime":"2022-01-07T10:39:30.4207876Z","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/southcentralusstage/operationResults/5dad924e-ed2c-48c8-add6-8d15d6f66b72","name":"5dad924e-ed2c-48c8-add6-8d15d6f66b72","status":"Succeeded","startTime":"2022-03-15T14:25:52.4809482Z","endTime":"2022-03-15T14:25:52.5209713Z","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: cache-control: - no-cache content-length: - - '531' + - '525' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:40:02 GMT + - Tue, 15 Mar 2022 14:26:23 GMT expires: - '-1' pragma: @@ -614,23 +541,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-01-07T10%3A39%3A30.417573Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:39:25.3119212Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002","name":"cli-acc-000002","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2022-03-15T14%3A25%3A52.5137855Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:25:48.3634712Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '465' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:40:02 GMT + - Tue, 15 Mar 2022 14:26:24 GMT etag: - - W/"datetime'2022-01-07T10%3A39%3A30.417573Z'" + - W/"datetime'2022-03-15T14%3A25%3A52.5137855Z'" expires: - '-1' pragma: @@ -663,31 +590,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T10%3A40%3A07.6905361Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:40:03.5605002Z"},"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''2022-03-15T14%3A26%3A30.6077128Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:26:26.0128163Z"},"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/southcentralusstage/operationResults/d178e032-b88a-4087-b091-17f14aadc0af?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d1d98900-62e2-4389-9d27-7f33b453794e?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:40:08 GMT + - Tue, 15 Mar 2022 14:26:31 GMT etag: - - W/"datetime'2022-01-07T10%3A40%3A07.6905361Z'" + - W/"datetime'2022-03-15T14%3A26%3A30.6077128Z'" expires: - '-1' pragma: @@ -719,21 +646,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d178e032-b88a-4087-b091-17f14aadc0af?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d1d98900-62e2-4389-9d27-7f33b453794e?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d178e032-b88a-4087-b091-17f14aadc0af","name":"d178e032-b88a-4087-b091-17f14aadc0af","status":"Succeeded","startTime":"2022-01-07T10:40:07.6929256Z","endTime":"2022-01-07T10:40:08.2134909Z","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/southcentralusstage/operationResults/d1d98900-62e2-4389-9d27-7f33b453794e","name":"d1d98900-62e2-4389-9d27-7f33b453794e","status":"Succeeded","startTime":"2022-03-15T14:26:30.6138764Z","endTime":"2022-03-15T14:26:30.7891954Z","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: cache-control: - no-cache content-length: - - '561' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:40:39 GMT + - Tue, 15 Mar 2022 14:27:02 GMT expires: - '-1' pragma: @@ -767,23 +694,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003","name":"cli-acc-000002/cli-pool-000003","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2022-01-07T10%3A40%3A08.2060464Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:40:03.5605002Z"},"properties":{"poolId":"7aeb742f-1a73-6e9d-53c5-9a731be41b24","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T14%3A26%3A30.7776929Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:26:26.0128163Z"},"properties":{"poolId":"a5c9909b-748f-6c4f-2c2b-4474b1d0659b","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '697' + - '691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:40:39 GMT + - Tue, 15 Mar 2022 14:27:02 GMT etag: - - W/"datetime'2022-01-07T10%3A40%3A08.2060464Z'" + - W/"datetime'2022-03-15T14%3A26%3A30.7776929Z'" expires: - '-1' pragma: @@ -805,7 +732,8 @@ interactions: message: OK - request: body: '{"location": "southcentralusstage", "properties": {"creationToken": "cli-vol-000004", - "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006"}}' + "serviceLevel": "Premium", "usageThreshold": 107374182400, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006", + "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -816,32 +744,32 @@ interactions: Connection: - keep-alive Content-Length: - - '342' + - '368' 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 User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A40%3A45.5704499Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:40:40.9171412Z"},"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''2022-03-15T14%3A27%3A08.8435524Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:27:03.8827937Z"},"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","enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 cache-control: - no-cache content-length: - - '814' + - '871' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:40:46 GMT + - Tue, 15 Mar 2022 14:27:09 GMT etag: - - W/"datetime'2022-01-07T10%3A40%3A45.5704499Z'" + - W/"datetime'2022-03-15T14%3A27%3A08.8435524Z'" expires: - '-1' pragma: @@ -874,70 +802,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Creating","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' - headers: - cache-control: - - no-cache - content-length: - - '573' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 10:41:16 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: - - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Creating","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ea9dc584-d1ee-426a-b38d-b1e884820c4c","name":"ea9dc584-d1ee-426a-b38d-b1e884820c4c","status":"Creating","startTime":"2022-03-15T14:27:08.8797995Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:41:47 GMT + - Tue, 15 Mar 2022 14:27:40 GMT expires: - '-1' pragma: @@ -946,10 +825,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -972,21 +847,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Creating","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ea9dc584-d1ee-426a-b38d-b1e884820c4c","name":"ea9dc584-d1ee-426a-b38d-b1e884820c4c","status":"Creating","startTime":"2022-03-15T14:27:08.8797995Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:42:17 GMT + - Tue, 15 Mar 2022 14:28:10 GMT expires: - '-1' pragma: @@ -995,10 +870,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1021,21 +892,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Creating","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ea9dc584-d1ee-426a-b38d-b1e884820c4c","name":"ea9dc584-d1ee-426a-b38d-b1e884820c4c","status":"Creating","startTime":"2022-03-15T14:27:08.8797995Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:42:47 GMT + - Tue, 15 Mar 2022 14:28:40 GMT expires: - '-1' pragma: @@ -1070,21 +941,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Creating","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ea9dc584-d1ee-426a-b38d-b1e884820c4c","name":"ea9dc584-d1ee-426a-b38d-b1e884820c4c","status":"Creating","startTime":"2022-03-15T14:27:08.8797995Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:43:17 GMT + - Tue, 15 Mar 2022 14:29:10 GMT expires: - '-1' pragma: @@ -1119,21 +990,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Creating","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ea9dc584-d1ee-426a-b38d-b1e884820c4c","name":"ea9dc584-d1ee-426a-b38d-b1e884820c4c","status":"Creating","startTime":"2022-03-15T14:27:08.8797995Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:43:48 GMT + - Tue, 15 Mar 2022 14:29:41 GMT expires: - '-1' pragma: @@ -1168,21 +1039,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Creating","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ea9dc584-d1ee-426a-b38d-b1e884820c4c","name":"ea9dc584-d1ee-426a-b38d-b1e884820c4c","status":"Creating","startTime":"2022-03-15T14:27:08.8797995Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:44:18 GMT + - Tue, 15 Mar 2022 14:30:11 GMT expires: - '-1' pragma: @@ -1217,21 +1088,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Creating","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/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/ea9dc584-d1ee-426a-b38d-b1e884820c4c","name":"ea9dc584-d1ee-426a-b38d-b1e884820c4c","status":"Creating","startTime":"2022-03-15T14:27:08.8797995Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004"}}' headers: cache-control: - no-cache content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:44:48 GMT + - Tue, 15 Mar 2022 14:30:41 GMT expires: - '-1' pragma: @@ -1266,21 +1137,21 @@ interactions: - --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.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/0bc23ba1-32eb-45f3-9419-bb4e9b27778c","name":"0bc23ba1-32eb-45f3-9419-bb4e9b27778c","status":"Succeeded","startTime":"2022-01-07T10:40:45.5762696Z","endTime":"2022-01-07T10:45:08.4222921Z","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/southcentralusstage/operationResults/ea9dc584-d1ee-426a-b38d-b1e884820c4c","name":"ea9dc584-d1ee-426a-b38d-b1e884820c4c","status":"Succeeded","startTime":"2022-03-15T14:27:08.8797995Z","endTime":"2022-03-15T14:31:01.4970082Z","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: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:45:18 GMT + - Tue, 15 Mar 2022 14:31:11 GMT expires: - '-1' pragma: @@ -1315,23 +1186,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: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A45%3A08.4100517Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:40:40.9171412Z"},"properties":{"fileSystemId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_46067fb2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","fileSystemId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A31%3A01.4873742Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:27:03.8827937Z"},"properties":{"fileSystemId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_25964b72","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","fileSystemId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2048' + - '2075' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:45:19 GMT + - Tue, 15 Mar 2022 14:31:11 GMT etag: - - W/"datetime'2022-01-07T10%3A45%3A08.4100517Z'" + - W/"datetime'2022-03-15T14%3A31%3A01.4873742Z'" expires: - '-1' pragma: @@ -1365,23 +1236,23 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A45%3A08.4100517Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:40:40.9171412Z"},"properties":{"fileSystemId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_46067fb2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","fileSystemId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A31%3A01.4873742Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:27:03.8827937Z"},"properties":{"fileSystemId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_25964b72","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","fileSystemId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2048' + - '2075' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:45:20 GMT + - Tue, 15 Mar 2022 14:31:13 GMT etag: - - W/"datetime'2022-01-07T10%3A45%3A08.4100517Z'" + - W/"datetime'2022-03-15T14%3A31%3A01.4873742Z'" expires: - '-1' pragma: @@ -1390,10 +1261,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -1420,29 +1287,29 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A45%3A24.0161537Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T10:40:40.9171412Z"},"properties":{"provisioningState":"Patching","fileSystemId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_46067fb2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","fileSystemId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A31%3A17.1784351Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T14:27:03.8827937Z"},"properties":{"provisioningState":"Patching","fileSystemId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_25964b72","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","fileSystemId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e153ef-0a41-493d-9f35-399f75e8ec00?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ceb20f3d-fae3-414d-ac3f-47bee7134da7?api-version=2021-10-01 cache-control: - no-cache content-length: - - '2047' + - '2074' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:45:24 GMT + - Tue, 15 Mar 2022 14:31:16 GMT etag: - - W/"datetime'2022-01-07T10%3A45%3A24.0161537Z'" + - W/"datetime'2022-03-15T14%3A31%3A17.1784351Z'" expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e153ef-0a41-493d-9f35-399f75e8ec00?api-version=2021-08-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ceb20f3d-fae3-414d-ac3f-47bee7134da7?api-version=2021-10-01&operationResultResponseType=Location pragma: - no-cache server: @@ -1472,21 +1339,21 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e153ef-0a41-493d-9f35-399f75e8ec00?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ceb20f3d-fae3-414d-ac3f-47bee7134da7?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/d4e153ef-0a41-493d-9f35-399f75e8ec00","name":"d4e153ef-0a41-493d-9f35-399f75e8ec00","status":"Succeeded","startTime":"2022-01-07T10:45:24.0228475Z","endTime":"2022-01-07T10:45:27.0526257Z","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/southcentralusstage/operationResults/ceb20f3d-fae3-414d-ac3f-47bee7134da7","name":"ceb20f3d-fae3-414d-ac3f-47bee7134da7","status":"Succeeded","startTime":"2022-03-15T14:31:17.1855552Z","endTime":"2022-03-15T14:31:20.3882718Z","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: cache-control: - no-cache content-length: - - '584' + - '578' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:45:54 GMT + - Tue, 15 Mar 2022 14:31:46 GMT expires: - '-1' pragma: @@ -1520,23 +1387,23 @@ interactions: ParameterSetName: - --resource-group -a -p -v --tags --usage-threshold User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-01-07T10%3A45%3A27.0474252Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value2","CreatedOnDate":"2022-01-07T10:45:21.5952773Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_46067fb2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","fileSystemId":"a695e2e3-36ee-72c5-3430-9915d1d803e1","ipAddress":"10.0.0.4"}],"throughputMibps":12.8,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000002/capacityPools/cli-pool-000003/volumes/cli-vol-000004","name":"cli-acc-000002/cli-pool-000003/cli-vol-000004","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T14%3A31%3A20.3813624Z''\"","location":"southcentralusstage","tags":{"Tag1":"Value2","CreatedOnDate":"2022-03-15T14:31:15.0889929Z"},"properties":{"provisioningState":"Succeeded","fileSystemId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_25964b72","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000005/subnets/cli-subnet-000006","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","fileSystemId":"72f701ca-c632-3f25-4b41-a5fc8edef7af","ipAddress":"10.0.0.4"}],"throughputMibps":12.8,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000}}' headers: cache-control: - no-cache content-length: - - '2065' + - '2092' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 10:45:54 GMT + - Tue, 15 Mar 2022 14:31:46 GMT etag: - - W/"datetime'2022-01-07T10%3A45%3A27.0474252Z'" + - W/"datetime'2022-03-15T14%3A31%3A20.3813624Z'" 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 e19a4a26abc..ccbe1c82738 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": "southcentralusstage", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}}}' + body: '{"location": "southcentralusstage", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}}}' headers: Accept: - application/json @@ -12,23 +12,23 @@ interactions: Connection: - keep-alive Content-Length: - - '130' + - '124' Content-Type: - application/json ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"68803212-0789-424e-ac11-d41a6eb7971e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8ca0b4ee-7da9-4d88-9706-55233b55ec28\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:26:05.3644427Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:17:38.9871044Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"fca7507d-b219-408d-8b00-f43801201164\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"19c7ec0f-b984-403c-b72f-8cd5b6fbd885\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -37,15 +37,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7fa9e3e3-6537-4e54-bc35-3af4975ee3f8?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/2851050e-e882-4199-b6e7-01b778725c5f?api-version=2021-05-01 cache-control: - no-cache content-length: - - '775' + - '769' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:26:11 GMT + - Tue, 15 Mar 2022 15:17:44 GMT expires: - '-1' pragma: @@ -58,61 +58,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a652c22-561f-45ff-a75c-7c8eb5b2325b + - 0563db05-7ba0-4e70-b485-b0caddd9a0fc x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 201 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -n --resource-group -l --address-prefix - User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7fa9e3e3-6537-4e54-bc35-3af4975ee3f8?api-version=2021-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 11:26:14 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: - - e9dcbcba-253b-4bd6-9732-d2d9745610a6 - status: - code: 200 - message: '' + message: Created - request: body: null headers: @@ -127,9 +78,9 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/7fa9e3e3-6537-4e54-bc35-3af4975ee3f8?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/2851050e-e882-4199-b6e7-01b778725c5f?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -141,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:26:24 GMT + - Tue, 15 Mar 2022 15:17:48 GMT expires: - '-1' pragma: @@ -158,10 +109,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d801f553-ca4a-4611-a6c3-ebe516fc755b + - 6a0799b4-0745-403c-9804-41f8d1a80390 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -176,17 +127,17 @@ interactions: ParameterSetName: - -n --resource-group -l --address-prefix User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"ed489607-e6f5-423b-a258-0b9373111d8d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"041b7a84-297f-49e8-b14d-d7e9a088d6b6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:26:05.3644427Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:17:38.9871044Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fca7507d-b219-408d-8b00-f43801201164\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"19c7ec0f-b984-403c-b72f-8cd5b6fbd885\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -195,13 +146,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:26:25 GMT + - Tue, 15 Mar 2022 15:17:48 GMT etag: - - W/"ed489607-e6f5-423b-a258-0b9373111d8d" + - W/"041b7a84-297f-49e8-b14d-d7e9a088d6b6" expires: - '-1' pragma: @@ -218,10 +169,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de3cf3c6-3134-41dc-bf75-0dd6ded72024 + - 51ff18b8-26c6-4b48-a0fd-f8a1e3c094b0 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -236,17 +187,17 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"ed489607-e6f5-423b-a258-0b9373111d8d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"041b7a84-297f-49e8-b14d-d7e9a088d6b6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:26:05.3644427Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:17:38.9871044Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fca7507d-b219-408d-8b00-f43801201164\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"19c7ec0f-b984-403c-b72f-8cd5b6fbd885\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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\": @@ -255,13 +206,13 @@ interactions: cache-control: - no-cache content-length: - - '776' + - '770' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:26:26 GMT + - Tue, 15 Mar 2022 15:17:49 GMT etag: - - W/"ed489607-e6f5-423b-a258-0b9373111d8d" + - W/"041b7a84-297f-49e8-b14d-d7e9a088d6b6" expires: - '-1' pragma: @@ -278,13 +229,13 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 38173c06-1173-4eff-9179-6c384ac6fe00 + - 6431008f-5914-411f-a25a-38bea0ceffb0 status: code: 200 - message: '' + message: OK - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002", - "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-01-07T11:26:05.3644427Z"}, + "location": "southcentralusstage", "tags": {"CreatedOnDate": "2022-03-15T15:17:38.9871044Z"}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "cli-subnet-000003", "properties": {"addressPrefix": "10.0.0.0/24", "delegations": [{"name": "0", "properties": @@ -301,33 +252,33 @@ interactions: Connection: - keep-alive Content-Length: - - '701' + - '695' Content-Type: - application/json ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"b8ee71cb-5a79-453a-bff1-017fdcb51b52\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5c132f36-d092-4d62-80ca-7bcfc8f1ebf6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:26:05.3644427Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:17:38.9871044Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"fca7507d-b219-408d-8b00-f43801201164\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"19c7ec0f-b984-403c-b72f-8cd5b6fbd885\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"b8ee71cb-5a79-453a-bff1-017fdcb51b52\\\"\",\r\n + \ \"etag\": \"W/\\\"5c132f36-d092-4d62-80ca-7bcfc8f1ebf6\\\"\",\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/\\\"b8ee71cb-5a79-453a-bff1-017fdcb51b52\\\"\",\r\n + \ \"etag\": \"W/\\\"5c132f36-d092-4d62-80ca-7bcfc8f1ebf6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -342,15 +293,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/343fdb50-0ddd-4212-92be-7a5a1d8607f8?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4a547ddf-006f-4840-aeac-b1d95b519e81?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2264' + - '2258' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:26:27 GMT + - Tue, 15 Mar 2022 15:17:51 GMT expires: - '-1' pragma: @@ -367,12 +318,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 223a5896-5c3c-4a2f-b46a-df66b61d87cd + - d903a848-3211-4ee3-8211-d2f3e3dd6d42 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -387,9 +338,9 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/343fdb50-0ddd-4212-92be-7a5a1d8607f8?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralusstage/operations/4a547ddf-006f-4840-aeac-b1d95b519e81?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -401,7 +352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:26:30 GMT + - Tue, 15 Mar 2022 15:17:54 GMT expires: - '-1' pragma: @@ -418,10 +369,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aea8c778-031c-4670-a823-7638511f9494 + - 1acc1b5b-ac29-4c6a-99b5-8a2e4f667d75 status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -436,27 +387,27 @@ interactions: ParameterSetName: - -n -g --vnet-name --address-prefixes --delegations User-Agent: - - AZURECLI/2.32.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (macOS-12.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=2021-05-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/\\\"901bfc76-9dd9-449e-89c8-773e7bba97b4\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2b258095-e086-4c3e-a183-eff15a59ff5c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralusstage\",\r\n - \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-01-07T11:26:05.3644427Z\"\r\n + \ \"tags\": {\r\n \"CreatedOnDate\": \"2022-03-15T15:17:38.9871044Z\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"fca7507d-b219-408d-8b00-f43801201164\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"19c7ec0f-b984-403c-b72f-8cd5b6fbd885\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\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/\\\"901bfc76-9dd9-449e-89c8-773e7bba97b4\\\"\",\r\n + \ \"etag\": \"W/\\\"2b258095-e086-4c3e-a183-eff15a59ff5c\\\"\",\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/\\\"901bfc76-9dd9-449e-89c8-773e7bba97b4\\\"\",\r\n + \ \"etag\": \"W/\\\"2b258095-e086-4c3e-a183-eff15a59ff5c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"serviceName\": \"Microsoft.Netapp/volumes\",\r\n \ \"actions\": [\r\n \"Microsoft.Network/networkinterfaces/*\",\r\n @@ -471,13 +422,13 @@ interactions: cache-control: - no-cache content-length: - - '2266' + - '2260' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:26:30 GMT + - Tue, 15 Mar 2022 15:17:54 GMT etag: - - W/"901bfc76-9dd9-449e-89c8-773e7bba97b4" + - W/"2b258095-e086-4c3e-a183-eff15a59ff5c" expires: - '-1' pragma: @@ -494,10 +445,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49c902c1-6bbb-46c0-be41-eff15b075aa1 + - 4cd63dd8-c850-4634-9837-bea64ed7436d status: code: 200 - message: '' + message: OK - request: body: '{"location": "southcentralusstage"}' headers: @@ -510,31 +461,31 @@ interactions: Connection: - keep-alive Content-Length: - - '29' + - '23' Content-Type: - application/json ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2021-10-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''2022-01-07T11%3A26%3A34.8836962Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:26:31.5871324Z"},"properties":{"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''2022-03-15T15%3A18%3A02.6977553Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:17:58.6020401Z"},"properties":{"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06a7704e-0fc5-4a8d-b66c-04eb03d4ab8c?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d7756b4-d50b-48a6-9e2a-88351dca220c?api-version=2021-10-01 cache-control: - no-cache content-length: - - '419' + - '413' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:26:36 GMT + - Tue, 15 Mar 2022 15:18:03 GMT etag: - - W/"datetime'2022-01-07T11%3A26%3A34.8836962Z'" + - W/"datetime'2022-03-15T15%3A18%3A02.6977553Z'" expires: - '-1' pragma: @@ -546,7 +497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -566,21 +517,21 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06a7704e-0fc5-4a8d-b66c-04eb03d4ab8c?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/4d7756b4-d50b-48a6-9e2a-88351dca220c?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/06a7704e-0fc5-4a8d-b66c-04eb03d4ab8c","name":"06a7704e-0fc5-4a8d-b66c-04eb03d4ab8c","status":"Succeeded","startTime":"2022-01-07T11:26:34.8838135Z","endTime":"2022-01-07T11:26:34.9247738Z","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/southcentralusstage/operationResults/4d7756b4-d50b-48a6-9e2a-88351dca220c","name":"4d7756b4-d50b-48a6-9e2a-88351dca220c","status":"Succeeded","startTime":"2022-03-15T15:18:02.7052156Z","endTime":"2022-03-15T15:18:02.7352851Z","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: cache-control: - no-cache content-length: - - '531' + - '525' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:27:06 GMT + - Tue, 15 Mar 2022 15:18:34 GMT expires: - '-1' pragma: @@ -589,10 +540,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -614,23 +561,23 @@ interactions: ParameterSetName: - -g -a -l User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004?api-version=2021-10-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''2022-01-07T11%3A26%3A34.9219315Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:26:31.5871324Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' + 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''2022-03-15T15%3A18%3A02.7319872Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:17:58.6020401Z"},"properties":{"encryption":{"keySource":"Microsoft.NetApp"},"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '466' + - '460' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:27:06 GMT + - Tue, 15 Mar 2022 15:18:35 GMT etag: - - W/"datetime'2022-01-07T11%3A26%3A34.9219315Z'" + - W/"datetime'2022-03-15T15%3A18%3A02.7319872Z'" expires: - '-1' pragma: @@ -639,10 +586,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -663,31 +606,31 @@ interactions: Connection: - keep-alive Content-Length: - - '95' + - '89' Content-Type: - application/json ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005?api-version=2021-10-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''2022-01-07T11%3A27%3A11.1787972Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:27:07.7368536Z"},"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''2022-03-15T15%3A18%3A41.2786819Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:18:37.4436167Z"},"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/southcentralusstage/operationResults/a979e8b1-81bd-4c1e-8947-4aabc981d204?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25e64cc6-66a8-4ba3-99b7-54ded5e095c0?api-version=2021-10-01 cache-control: - no-cache content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:27:11 GMT + - Tue, 15 Mar 2022 15:18:41 GMT etag: - - W/"datetime'2022-01-07T11%3A27%3A11.1787972Z'" + - W/"datetime'2022-03-15T15%3A18%3A41.2786819Z'" expires: - '-1' pragma: @@ -719,21 +662,21 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a979e8b1-81bd-4c1e-8947-4aabc981d204?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/25e64cc6-66a8-4ba3-99b7-54ded5e095c0?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/a979e8b1-81bd-4c1e-8947-4aabc981d204","name":"a979e8b1-81bd-4c1e-8947-4aabc981d204","status":"Succeeded","startTime":"2022-01-07T11:27:11.1774576Z","endTime":"2022-01-07T11:27:11.272493Z","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/southcentralusstage/operationResults/25e64cc6-66a8-4ba3-99b7-54ded5e095c0","name":"25e64cc6-66a8-4ba3-99b7-54ded5e095c0","status":"Succeeded","startTime":"2022-03-15T15:18:41.2847012Z","endTime":"2022-03-15T15:18:41.3996992Z","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: cache-control: - no-cache content-length: - - '560' + - '555' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:27:42 GMT + - Tue, 15 Mar 2022 15:19:12 GMT expires: - '-1' pragma: @@ -742,10 +685,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -767,23 +706,23 @@ interactions: ParameterSetName: - -g -a -p -l --service-level --size User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005?api-version=2021-10-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''2022-01-07T11%3A27%3A11.2641898Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:27:07.7368536Z"},"properties":{"poolId":"b7ae7da6-5c71-ac23-a18b-8503c1915dcd","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"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''2022-03-15T15%3A18%3A41.3861749Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:18:37.4436167Z"},"properties":{"poolId":"db78fd18-2520-a7ba-2f70-b75f89316a19","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"encryptionType":"Single","coolAccess":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '697' + - '691' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:27:42 GMT + - Tue, 15 Mar 2022 15:19:12 GMT etag: - - W/"datetime'2022-01-07T11%3A27%3A11.2641898Z'" + - W/"datetime'2022-03-15T15%3A18%3A41.3861749Z'" expires: - '-1' pragma: @@ -792,10 +731,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-powered-by: @@ -808,7 +743,7 @@ interactions: "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", "ldapEnabled": false, "avsDataStore": "Disabled", "isDefaultQuotaEnabled": - false}}' + false, "enableSubvolumes": "Disabled"}}' headers: Accept: - application/json @@ -819,7 +754,7 @@ interactions: Connection: - keep-alive Content-Length: - - '526' + - '552' Content-Type: - application/json ParameterSetName: @@ -827,25 +762,25 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006?api-version=2021-10-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''2022-01-07T11%3A27%3A49.2508817Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:27:43.8659920Z"},"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,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"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''2022-03-15T15%3A19%3A22.3633182Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:19:16.4885472Z"},"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,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 cache-control: - no-cache content-length: - - '986' + - '1043' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:27:50 GMT + - Tue, 15 Mar 2022 15:19:23 GMT etag: - - W/"datetime'2022-01-07T11%3A27%3A49.2508817Z'" + - W/"datetime'2022-03-15T15%3A19%3A22.3633182Z'" expires: - '-1' pragma: @@ -879,71 +814,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Creating","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"0001-01-01T00:00: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: - cache-control: - - no-cache - content-length: - - '573' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 07 Jan 2022 11:28:20 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: - - --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 --is-def-quota-enabled --avs-data-store - User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Creating","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"0001-01-01T00:00: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/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d","name":"c0eec748-9d23-4aea-a631-18dd61d9a17d","status":"Creating","startTime":"2022-03-15T15:19:22.375021Z","endTime":"0001-01-01T00:00: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: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:28:50 GMT + - Tue, 15 Mar 2022 15:19:53 GMT expires: - '-1' pragma: @@ -979,21 +864,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Creating","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"0001-01-01T00:00: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/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d","name":"c0eec748-9d23-4aea-a631-18dd61d9a17d","status":"Creating","startTime":"2022-03-15T15:19:22.375021Z","endTime":"0001-01-01T00:00: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: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:29:20 GMT + - Tue, 15 Mar 2022 15:20:24 GMT expires: - '-1' pragma: @@ -1029,21 +914,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Creating","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"0001-01-01T00:00: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/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d","name":"c0eec748-9d23-4aea-a631-18dd61d9a17d","status":"Creating","startTime":"2022-03-15T15:19:22.375021Z","endTime":"0001-01-01T00:00: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: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:29:51 GMT + - Tue, 15 Mar 2022 15:20:57 GMT expires: - '-1' pragma: @@ -1079,21 +964,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Creating","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"0001-01-01T00:00: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/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d","name":"c0eec748-9d23-4aea-a631-18dd61d9a17d","status":"Creating","startTime":"2022-03-15T15:19:22.375021Z","endTime":"0001-01-01T00:00: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: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:30:21 GMT + - Tue, 15 Mar 2022 15:21:27 GMT expires: - '-1' pragma: @@ -1129,21 +1014,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Creating","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"0001-01-01T00:00: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/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d","name":"c0eec748-9d23-4aea-a631-18dd61d9a17d","status":"Creating","startTime":"2022-03-15T15:19:22.375021Z","endTime":"0001-01-01T00:00: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: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:30:51 GMT + - Tue, 15 Mar 2022 15:21:58 GMT expires: - '-1' pragma: @@ -1179,21 +1064,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Creating","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"0001-01-01T00:00: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/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d","name":"c0eec748-9d23-4aea-a631-18dd61d9a17d","status":"Creating","startTime":"2022-03-15T15:19:22.375021Z","endTime":"0001-01-01T00:00: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: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:31:21 GMT + - Tue, 15 Mar 2022 15:22:31 GMT expires: - '-1' pragma: @@ -1229,21 +1114,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Creating","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"0001-01-01T00:00: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/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d","name":"c0eec748-9d23-4aea-a631-18dd61d9a17d","status":"Creating","startTime":"2022-03-15T15:19:22.375021Z","endTime":"0001-01-01T00:00: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: cache-control: - no-cache content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:31:52 GMT + - Tue, 15 Mar 2022 15:23:03 GMT expires: - '-1' pragma: @@ -1279,21 +1164,21 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.2-x86_64-i386-64bit) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/8f3d0410-fbc9-42d3-bfb7-4d61366417c1","name":"8f3d0410-fbc9-42d3-bfb7-4d61366417c1","status":"Succeeded","startTime":"2022-01-07T11:27:49.2622983Z","endTime":"2022-01-07T11:32:00.0622422Z","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/southcentralusstage/operationResults/c0eec748-9d23-4aea-a631-18dd61d9a17d","name":"c0eec748-9d23-4aea-a631-18dd61d9a17d","status":"Succeeded","startTime":"2022-03-15T15:19:22.375021Z","endTime":"2022-03-15T15:23:26.6115234Z","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: cache-control: - no-cache content-length: - - '584' + - '577' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:32:22 GMT + - Tue, 15 Mar 2022 15:23:33 GMT expires: - '-1' pragma: @@ -1329,23 +1214,23 @@ interactions: --usage-threshold --file-path --vnet --subnet --smb-encryption --smb-continuously-avl --encryption-key-source --ldap-enabled --is-def-quota-enabled --avs-data-store User-Agent: - - AZURECLI/2.32.0 azsdk-python-mgmt-netapp/6.0.0 Python/3.8.10 (macOS-11.6.2-x86_64-i386-64bit) + - AZURECLI/2.34.1 azsdk-python-mgmt-netapp/7.0.0 Python/3.8.10 (macOS-12.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=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.NetApp/netAppAccounts/cli-acc-000004/capacityPools/cli-pool-000005/volumes/cli-vol-000006?api-version=2021-10-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''2022-01-07T11%3A32%3A00.0574796Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-01-07T11:27:43.8659920Z"},"properties":{"fileSystemId":"d2018b4e-b73c-8a0d-08da-7ce9fc8a2eea","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f672e56f2b211eab140b6c0e8ee56e4_06af5cc1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","networkFeatures":"Basic","networkSiblingSetId":"1402078b-ede1-f652-1956-8e2659173ed6","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"d2018b4e-b73c-8a0d-08da-7ce9fc8a2eea","fileSystemId":"d2018b4e-b73c-8a0d-08da-7ce9fc8a2eea","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","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/volumes/cli-vol-000006","name":"cli-acc-000004/cli-pool-000005/cli-vol-000006","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2022-03-15T15%3A23%3A26.6031139Z''\"","location":"southcentralusstage","tags":{"CreatedOnDate":"2022-03-15T15:19:16.4885472Z"},"properties":{"fileSystemId":"3aeac327-3a68-8381-daff-f157dcf88cd7","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,"chownMode":"Restricted"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_39af7cbe","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_netappfiles_test_volume_000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","networkFeatures":"Basic","networkSiblingSetId":"8873ecfc-9610-e18f-f9b4-32539067c653","storageToNetworkProximity":"Default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix","smbEncryption":false,"smbContinuouslyAvailable":false,"encryptionKeySource":"Microsoft.NetApp","ldapEnabled":false,"unixPermissions":"0770","mountTargets":[{"mountTargetId":"3aeac327-3a68-8381-daff-f157dcf88cd7","fileSystemId":"3aeac327-3a68-8381-daff-f157dcf88cd7","ipAddress":"10.0.0.4"}],"throughputMibps":6.4,"volumeSpecName":"generic","coolAccess":false,"avsDataStore":"Disabled","isDefaultQuotaEnabled":false,"defaultUserQuotaInKiBs":0,"defaultGroupQuotaInKiBs":0,"enableSubvolumes":"Disabled","maximumNumberOfFiles":100000000,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '2048' + - '2075' content-type: - application/json; charset=utf-8 date: - - Fri, 07 Jan 2022 11:32:22 GMT + - Tue, 15 Mar 2022 15:23:33 GMT etag: - - W/"datetime'2022-01-07T11%3A32%3A00.0574796Z'" + - W/"datetime'2022-03-15T15%3A23%3A26.6031139Z'" 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 1b0439a6d21..54d98b97728 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 @@ -5,7 +5,6 @@ from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer import time -import unittest LOCATION = "southcentralusstage" VNET_LOCATION = "southcentralus" @@ -14,7 +13,6 @@ # As a refactoring consideration for the future, consider use of authoring patterns described here # https://github.com/Azure/azure-cli/blob/dev/doc/authoring_tests.md#sample-5-get-more-from-resourcegrouppreparer -@unittest.skip("showing class skipping") class AzureNetAppFilesAccountBackupServiceScenarioTest(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" % 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 eb10e029e7d..4040a1faf80 100644 --- a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_commands.py +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_account_commands.py @@ -4,8 +4,7 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer -LOCATION = "southcentralusstage" -VAULT_LOCATION = "southcentralus" +LOCATION = "eastus2" # No tidy up of tests required. The resource group is automatically removed diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_backup_commands.py index a033f4035c0..2aa3b90e6ba 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 @@ -4,7 +4,6 @@ # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer import time -import unittest LOCATION = "southcentralusstage" VNET_LOCATION = "southcentralus" 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 0f0209adc69..b5cb41dcfa3 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 @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer -LOCATION = "eastus2euap" +LOCATION = "southcentralusstage" # No tidy up of tests required. The resource group is automatically removed diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_snapshot_commands.py index fd63a790380..fdbd8d15a68 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 @@ -175,3 +175,27 @@ def test_get_snapshot(self): # get snapshot from id snapshot_from_id = self.cmd("az netappfiles snapshot show --ids %s" % snapshot['id']).get_output_in_json() assert snapshot_from_id['name'] == account_name + '/' + pool_name + '/' + volume_name + '/' + snapshot_name + + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_snapshot_', additional_tags={'owner': 'cli_test'}) + def test_restore_file(self): + # create volume + account_name = self.create_random_name(prefix='cli-acc-', length=24) + pool_name = self.create_random_name(prefix='cli-pool-', length=24) + volume_name = self.create_random_name(prefix='cli-vol-', length=24) + volume = self.create_volume(account_name, pool_name, volume_name) + assert volume['name'] == account_name + '/' + pool_name + '/' + volume_name + + # create snapshot + snapshot_name = self.create_random_name(prefix='cli-sn-', length=24) + 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, LOCATION)) + + snapshot_file_path = "'/snap_file_path_1.txt' '/snap_file_path_2.txt'" + + self.cmd("az netappfiles snapshot restore-files -g {rg} -a %s -p %s -v %s -s %s --file-paths %s" % + (account_name, pool_name, volume_name, snapshot_name, snapshot_file_path)) + + 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['provisioningState'] == 'Succeeded' diff --git a/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_subvolume_commands.py b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_subvolume_commands.py new file mode 100644 index 00000000000..2258d4b4826 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/netappfiles/tests/latest/test_subvolume_commands.py @@ -0,0 +1,153 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer + +LOCATION = "southcentralusstage" +VNET_LOCATION = "southcentralus" + + +class AzureNetAppFilesSubvolumeServiceScenarioTest(ScenarioTest): + def create_volume(self, volume_only=False): + if not volume_only: + # create vnet, account and pool + self.cmd("az network vnet create -n {vnet} -g {rg} -l {vnet_loc} --address-prefix 10.5.0.0/16") + self.cmd("az network vnet subnet create -n {subnet} --vnet-name {vnet} --address-prefixes '10.5.0.0/24' " + "--delegations 'Microsoft.Netapp/volumes' -g {rg}") + self.cmd("netappfiles account create -g {rg} -a {acc_name} -l {loc}") + self.cmd("netappfiles pool create -g {rg} -a {acc_name} -p {pool_name} -l {loc} --service-level 'Premium' " + "--size 4") + + # create volume + return self.cmd("netappfiles volume create -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} -l {loc} " + "--vnet {vnet} --subnet {subnet} --file-path {vol_name} --usage-threshold 100 " + "--enable-subvolumes {enable_subvolumes}") + + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_subvolume_crud_', additional_tags={'owner': 'cli_test'}) + def test_subvolume_crud(self): + self.kwargs.update({ + 'loc': LOCATION, + 'acc_name': self.create_random_name(prefix='cli-acc-', length=24), + 'pool_name': self.create_random_name(prefix='cli-pool-', length=24), + 'vol_name': self.create_random_name(prefix='cli-vol-', length=24), + 'sub_vol_name': self.create_random_name(prefix='cli-sub-vol-', length=24), + 'path': "/sub_vol_1.txt", + 'vnet': self.create_random_name(prefix='cli-vnet-', length=24), + 'subnet': self.create_random_name(prefix='cli-subnet-', length=24), + 'vnet_loc': VNET_LOCATION, + 'enable_subvolumes': 'Enabled' + }) + self.create_volume() + + # create + self.cmd("az netappfiles subvolume create -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name} --path {path}", checks=[ + self.check('name', '{acc_name}' + '/' + '{pool_name}' + '/' + '{vol_name}' + '/' + '{sub_vol_name}'), + self.check('path', '{path}')]) + + # update + self.kwargs.update({ + 'path': "/sub_vol_update.txt" + }) + self.cmd("az netappfiles subvolume update -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name} --path {path}", checks=[ + self.check('name', '{acc_name}' + '/' + '{pool_name}' + '/' + '{vol_name}' + '/' + '{sub_vol_name}'), + self.check('path', '{path}')]) + + # get + self.cmd("az netappfiles subvolume show -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name}", checks=[ + self.check('name', '{acc_name}' + '/' + '{pool_name}' + '/' + '{vol_name}' + '/' + '{sub_vol_name}'), + self.check('path', '{path}')]) + + # delete + self.cmd("az netappfiles subvolume delete -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name} -y") + self.cmd("az netappfiles subvolume list -g {rg} -a {acc_name} -p {pool_name} -v {vol_name}", checks=[ + self.check('length(@)', 0)]) + + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_subvolume_list_', additional_tags={'owner': 'cli_test'}) + def test_subvolume_list(self): + self.kwargs.update({ + 'loc': LOCATION, + 'acc_name': self.create_random_name(prefix='cli-acc-', length=24), + 'pool_name': self.create_random_name(prefix='cli-pool-', length=24), + 'vol_name': self.create_random_name(prefix='cli-vol-', length=24), + 'sub_vol_name1': self.create_random_name(prefix='cli-sub-vol-', length=24), + 'sub_vol_name2': self.create_random_name(prefix='cli-sub-vol-', length=24), + 'path1': "/sub_vol_1.txt", + 'path2': "/sub_vol_2.txt", + 'vnet': self.create_random_name(prefix='cli-vnet-', length=24), + 'subnet': self.create_random_name(prefix='cli-subnet-', length=24), + 'vnet_loc': VNET_LOCATION, + 'enable_subvolumes': 'Enabled' + }) + self.create_volume() + + # create + self.cmd("az netappfiles subvolume create -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name1} --path {path1}", checks=[ + self.check('name', '{acc_name}' + '/' + '{pool_name}' + '/' + '{vol_name}' + '/' + '{sub_vol_name1}'), + self.check('path', '{path1}')]) + + # list + self.cmd("az netappfiles subvolume list -g {rg} -a {acc_name} -p {pool_name} -v {vol_name}", checks=[ + self.check('length(@)', 1)]) + + # create + self.cmd("az netappfiles subvolume create -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name2} --path {path2}", checks=[ + self.check('name', '{acc_name}' + '/' + '{pool_name}' + '/' + '{vol_name}' + '/' + '{sub_vol_name2}'), + self.check('path', '{path2}')]) + + # list + self.cmd("az netappfiles subvolume list -g {rg} -a {acc_name} -p {pool_name} -v {vol_name}", checks=[ + self.check('length(@)', 2)]) + + # delete + self.cmd("az netappfiles subvolume delete -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name1} -y") + + # list + self.cmd("az netappfiles subvolume list -g {rg} -a {acc_name} -p {pool_name} -v {vol_name}", checks=[ + self.check('length(@)', 1)]) + + # delete + self.cmd("az netappfiles subvolume delete -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name2} -y") + + # list + self.cmd("az netappfiles subvolume list -g {rg} -a {acc_name} -p {pool_name} -v {vol_name}", checks=[ + self.check('length(@)', 0)]) + + @ResourceGroupPreparer(name_prefix='cli_netappfiles_test_subvolume_metadata_', additional_tags={'owner': 'cli_test'}) + def test_subvolume_get_metadata(self): + self.kwargs.update({ + 'loc': LOCATION, + 'acc_name': self.create_random_name(prefix='cli-acc-', length=24), + 'pool_name': self.create_random_name(prefix='cli-pool-', length=24), + 'vol_name': self.create_random_name(prefix='cli-vol-', length=24), + 'sub_vol_name': self.create_random_name(prefix='cli-sub-vol-', length=24), + 'path': "/sub_vol_1.txt", + 'vnet': self.create_random_name(prefix='cli-vnet-', length=24), + 'subnet': self.create_random_name(prefix='cli-subnet-', length=24), + 'vnet_loc': VNET_LOCATION, + 'enable_subvolumes': 'Enabled' + }) + self.create_volume() + + # create + self.cmd("az netappfiles subvolume create -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name} --path {path}", checks=[ + self.check('name', '{acc_name}' + '/' + '{pool_name}' + '/' + '{vol_name}' + '/' + '{sub_vol_name}'), + self.check('path', '{path}')]) + + # get metadata + self.cmd("az netappfiles subvolume metadata show -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name}", checks=[ + self.check('path', '{path}')]) + + self.cmd("az netappfiles subvolume delete -g {rg} -a {acc_name} -p {pool_name} -v {vol_name} " + "--subvolume-name {sub_vol_name} -y") + \ No newline at end of file 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 250302964c1..01613176d86 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 @@ -108,7 +108,7 @@ def test_create_delete_volumes(self): volume_list = self.cmd("netappfiles volume list --resource-group {rg} --account-name %s --pool-name %s" % (account_name, pool_name)).get_output_in_json() assert len(volume_list) == 1 - self.cmd("az netappfiles volume delete --resource-group {rg} --account-name %s --pool-name %s --volume-name %s" % (account_name, pool_name, volume_name)) + self.cmd("az netappfiles volume delete --resource-group {rg} --account-name %s --pool-name %s --volume-name %s --force" % (account_name, pool_name, volume_name)) volume_list = self.cmd("netappfiles volume list --resource-group {rg} -a %s -p %s" % (account_name, pool_name)).get_output_in_json() assert len(volume_list) == 0 diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index c5f2423ef24..d2dd150b5a1 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -61,7 +61,7 @@ azure-mgmt-marketplaceordering==1.1.0 azure-mgmt-media==7.0.0 azure-mgmt-monitor==3.0.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==6.0.1 +azure-mgmt-netapp==7.0.0 azure-mgmt-network==19.3.0 azure-mgmt-policyinsights==1.0.0 azure-mgmt-privatedns==1.0.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 5f4fa9c8d40..73ae1f6e862 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -61,7 +61,7 @@ azure-mgmt-marketplaceordering==1.1.0 azure-mgmt-media==7.0.0 azure-mgmt-monitor==3.0.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==6.0.1 +azure-mgmt-netapp==7.0.0 azure-mgmt-network==19.3.0 azure-mgmt-policyinsights==1.0.0 azure-mgmt-privatedns==1.0.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 715cb7699f3..200c8982ebe 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -61,7 +61,7 @@ azure-mgmt-marketplaceordering==1.1.0 azure-mgmt-media==7.0.0 azure-mgmt-monitor==3.0.0 azure-mgmt-msi==0.2.0 -azure-mgmt-netapp==6.0.1 +azure-mgmt-netapp==7.0.0 azure-mgmt-network==19.3.0 azure-mgmt-policyinsights==1.0.0 azure-mgmt-privatedns==1.0.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index ab2a85a28b8..acfff94727b 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -106,7 +106,7 @@ 'azure-mgmt-media~=7.0', 'azure-mgmt-monitor~=3.0.0', 'azure-mgmt-msi~=0.2', - 'azure-mgmt-netapp~=6.0.1', + 'azure-mgmt-netapp~=7.0.0', 'azure-mgmt-network~=19.3.0', 'azure-mgmt-policyinsights~=1.0.0', 'azure-mgmt-privatedns~=1.0.0',