Skip to content

Commit

Permalink
Fix Az.keyVault XML Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyuezh576 committed Jun 9, 2022
1 parent 76a0bd0 commit ce64b64
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.KeyVault
{
/// <summary>
/// Add network rule
/// NOTE: Define VaultName &lt; ResourceGroupName in this class instead of base one because TAB order for input.
/// NOTE: Define VaultName &amp; ResourceGroupName in this class instead of base one because TAB order for input.
/// </summary>
[Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "KeyVaultNetworkRule",SupportsShouldProcess = true,DefaultParameterSetName = ByVaultNameParameterSet)]
[OutputType(typeof(PSKeyVault))]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.KeyVault
{
/// <summary>
/// Remove network rule
/// NOTE: Define VaultName &lt; ResourceGroupName in this class instead of base one because TAB order for input.
/// NOTE: Define VaultName &amp; ResourceGroupName in this class instead of base one because TAB order for input.
/// </summary>
[Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "KeyVaultNetworkRule",DefaultParameterSetName = ByVaultNameParameterSet,SupportsShouldProcess = true)]
[OutputType(typeof(PSKeyVault))]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.KeyVault
{
/// <summary>
/// Update network rule set
/// NOTE: Define VaultName &lt; ResourceGroupName in this class instead of base one because TAB order for input.
/// NOTE: Define VaultName &amp; ResourceGroupName in this class instead of base one because TAB order for input.
/// </summary>
[Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "KeyVaultNetworkRuleSet",DefaultParameterSetName = ByVaultNameParameterSet,SupportsShouldProcess = true)]
[OutputType(typeof(PSKeyVault))]
Expand Down
2 changes: 1 addition & 1 deletion src/KeyVault/KeyVault/Helpers/ODataHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ internal static class ODataHelper
/// Format an ODataQuery filter expression to string.
/// </summary>
/// <remarks>
/// This method uses <see cref="FormatFilterString" /> class for the underlying parsing and serialization of the filter string.
/// This method uses <see cref="Rest.Azure.OData.ODataQuery{T}" /> class for the underlying parsing and serialization of the filter string.
/// It supports limited operations in the implementation of filter.
/// For string comparison, use `==` instead of `String.Equals()`.
/// </remarks>
Expand Down
8 changes: 4 additions & 4 deletions src/KeyVault/KeyVault/Models/VaultManagementClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,10 @@ public PSKeyVault UpdateVault(
/// <param name="updatedEnabledForDeployment">enabled for deployment</param>
/// <param name="updatedEnabledForTemplateDeployment">enabled for template deployment</param>
/// <param name="updatedEnabledForDiskEncryption">enabled for disk encryption</param>
/// <param name="updatedSoftDeleteSwitch"></param>
/// <param name="updatedPurgeProtectionSwitch"></param>
/// <param name="updatedRbacAuthorization"></param>
/// <param name="softDeleteRetentionInDays"></param>
/// <param name="updatedSoftDeleteSwitch">soft delete enabled</param>
/// <param name="updatedPurgeProtectionSwitch">purge protection enabled</param>
/// <param name="updatedRbacAuthorization">enabled for rbac authorization</param>
/// <param name="softDeleteRetentionInDays">soft delete retention period (days)</param>
/// <param name="updatedNetworkAcls">updated network rule set</param>
/// <param name="graphClient">the active directory client</param>
/// <returns>the updated vault</returns>
Expand Down

0 comments on commit ce64b64

Please sign in to comment.