Skip to content

Spelling Fixes #28066

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public override void ExecuteCmdlet()
var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName);
if (anfAccount == null)
{
throw new ArgumentException($"Specified NetAppAccount with name '{this.AccountName}' does not extist in Resource Group '{this.ResourceGroupName}'");
throw new ArgumentException($"Specified NetAppAccount with name '{this.AccountName}' does not exist in Resource Group '{this.ResourceGroupName}'");
}

var activeDirectory = new Management.NetApp.Models.ActiveDirectory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public override void ExecuteCmdlet()
var anfAccount = AzureNetAppFilesManagementClient.Accounts.Get(ResourceGroupName, AccountName);
if (anfAccount == null)
{
throw new ArgumentException($"Specified NetAppAccount with name '{this.AccountName}' does not extist in Resource Group '{this.ResourceGroupName}'");
throw new ArgumentException($"Specified NetAppAccount with name '{this.AccountName}' does not exist in Resource Group '{this.ResourceGroupName}'");
}
string dnsStr = null;
if (Dns != null)
Expand Down
14 changes: 7 additions & 7 deletions src/NetAppFiles/NetAppFiles/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
## Version 0.18.0
* Fixed some minor issues
* Added `SnapshotName` to `New-AzNetAppFilesBackup`
* Fixed `New-AzNetAppFilesBackup`, `Label` is not a requred parameter
* Fixed `New-AzNetAppFilesBackup`, `Label` is not a required parameter

## Version 0.17.0
* Updated to api-version 2024-03-01
Expand Down Expand Up @@ -121,9 +121,9 @@ Breaking change:
* Added cmdLet `Update-NetAppFilesAccountCredential`
* Added properties `Identity`, `Encryption` and `DisableShowmount` to `PSNetAppFilesAccount`
* Added properties `Encrypted` and `Zones`, `DeleteBaseSnapshot`, `KeyVaultPrivateEndpointResourceId`,`SmbAccessBasedEnumeration`, `SmbNonBrowsable`, `EncryptionKeySource`, `VolumeSpecName` to `PSNetAppFilesVolume`
* Added paramter `CoolAccess` to `Update-AzNetAppFilesPool`
* Added paramter `DeleteBaseSnapshot`, `SmbAccessBasedEnumeration`, `SmbNonBrowsable`, `EncryptionKeySource` and `KeyVaultPrivateEndpointResourceId` to `New-AzNetAppFilesVolume`
* Added paramter `CoolAccess`, `CoolnessPeriod`, `EncryptionKeySource` and `KeyVaultPrivateEndpointResourceId` to `Update-AzNetAppFilesVolume`
* Added parameter `CoolAccess` to `Update-AzNetAppFilesPool`
* Added parameter `DeleteBaseSnapshot`, `SmbAccessBasedEnumeration`, `SmbNonBrowsable`, `EncryptionKeySource` and `KeyVaultPrivateEndpointResourceId` to `New-AzNetAppFilesVolume`
* Added parameter `CoolAccess`, `CoolnessPeriod`, `EncryptionKeySource` and `KeyVaultPrivateEndpointResourceId` to `Update-AzNetAppFilesVolume`
* Planning to deprecate the cmdLet `Get-AzNetAppFilesVault` as it will not be needed

## Version 0.10.0
Expand All @@ -144,7 +144,7 @@ Breaking change:
* Added `CapacityPoolResourceId`, `ProximityPlacementGroup`, `VolumeSpecName` and `PlacementRules` to `Volume`

Breaking change:
* The `Administrators` parameter in `New-AzNetAppFilesActiveDirectory` and `Update-AzNetAppFilesActiveDirectory` is changed to singularform `Administrator` to follow Powrshell convetion
* The `Administrators` parameter in `New-AzNetAppFilesActiveDirectory` and `Update-AzNetAppFilesActiveDirectory` is changed to singularform `Administrator` to follow Powershell convention

## Version 0.8.0
* Added list NetAppAccounts by subscription
Expand Down Expand Up @@ -221,14 +221,14 @@ Breaking change:
- BackupId
- SecurityStyle
- KerberosEnabled
* Add paramters to `Update-AzNetAppFilesVolume`
* Add parameters to `Update-AzNetAppFilesVolume`
- Backup to to enable Backups and Backup Policy
- totalThroughputMips
* Add property StatusDetails to Account
* Add properties to support LDAP over SSL/TLS to ActiveDirectory
* Add properties to support Kerberos to ExportPolicy rule
* Add QosType parameter to Pool `New-AzNetAppFilesPool` and `Update-AzNetAppFilesPool`
* Breaking Removed ServiecLevel from `Update-AzNetAppFilesPool` as that updating servie level is not supported
* Breaking Removed ServiecLevel from `Update-AzNetAppFilesPool` as that updating service level is not supported
* Add `Initialize-AzNetAppFilesReplication` cmdLet
* Add ForceBreak parameter to `Suspend-AzNetAppFilesReplication` to force break the replication if replication is in status transferring

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class PSNetAppFilesActiveDirectory
public string AccountName { get; set; }

/// <summary>
/// Id of the active drectory.
/// Id of the active directory.
/// Value of this property can not be set by user.
/// </summary>
/// <value>Id of the Active Directory.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ public class NewAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase

[Parameter(
Mandatory = true,
HelpMessage = "A hashtable array which represents the montly Schedule")]
HelpMessage = "A hashtable array which represents the monthly Schedule")]
[ValidateNotNullOrEmpty]
public PSNetAppFilesWeeklySchedule WeeklySchedule { get; set; }

[Parameter(
Mandatory = true,
HelpMessage = "A hashtable array which represents the montly Schedule")]
HelpMessage = "A hashtable array which represents the monthly Schedule")]
[ValidateNotNullOrEmpty]
public PSNetAppFilesMonthlySchedule MonthlySchedule { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ public class SetAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase

[Parameter(
Mandatory = true,
HelpMessage = "A hashtable array which represents the montly Schedule")]
HelpMessage = "A hashtable array which represents the monthly Schedule")]
[ValidateNotNullOrEmpty]
public PSNetAppFilesWeeklySchedule WeeklySchedule { get; set; }

[Parameter(
Mandatory = true,
HelpMessage = "A hashtable array which represents the montly Schedule")]
HelpMessage = "A hashtable array which represents the monthly Schedule")]
[ValidateNotNullOrEmpty]
public PSNetAppFilesMonthlySchedule MonthlySchedule { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ public class UpdateAzureRmNetAppFilesSnapshotPolicy : AzureNetAppFilesCmdletBase

[Parameter(
Mandatory = false,
HelpMessage = "A hashtable array which represents the montly Schedule")]
HelpMessage = "A hashtable array which represents the monthly Schedule")]
[ValidateNotNullOrEmpty]
public PSNetAppFilesWeeklySchedule WeeklySchedule { get; set; }

[Parameter(
Mandatory = false,
HelpMessage = "A hashtable array which represents the montly Schedule")]
HelpMessage = "A hashtable array which represents the monthly Schedule")]
[ValidateNotNullOrEmpty]
public PSNetAppFilesMonthlySchedule MonthlySchedule { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class NewAzureNetAppFilesExportPolicyObject : AzureNetAppFilesCmdletBase
{
[Parameter(
Mandatory = true,
HelpMessage = "List of items which need to be included into endpont scope.",
HelpMessage = "List of items which need to be included into endpoint scope.",
ParameterSetName = "ExportPolicyObject")]
[ValidateNotNullOrEmpty]
public PSNetAppFilesExportPolicyRule[] Rule { get; set; }
Expand Down
Loading
Loading