Skip to content

Commit 05b4323

Browse files
committed
Improving piping support
1 parent 0c68c0c commit 05b4323

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/BuildAzureSqlDatabaseDataMaskingRule.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,35 +70,30 @@ public abstract class BuildAzureSqlDatabaseDataMaskingRule : SqlDatabaseDataMask
7070
/// Gets or sets the prefix size when using the text masking function
7171
/// </summary>
7272
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The prefix size when using the text masking function.")]
73-
[ValidateNotNullOrEmpty]
7473
public uint? PrefixSize { get; set; }
7574

7675
/// <summary>
7776
/// Gets or sets the replacement string when using the text masking function
7877
/// </summary>
7978
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The replacement string when using the text masking function.")]
80-
[ValidateNotNullOrEmpty]
8179
public string ReplacementString { get; set; }
8280

8381
/// <summary>
8482
/// Gets or sets the suffix size when using the text masking function
8583
/// </summary>
8684
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The suffix size string when using the text masking function.")]
87-
[ValidateNotNullOrEmpty]
8885
public uint? SuffixSize { get; set; }
8986

9087
/// <summary>
9188
/// Gets or sets the NumberFrom property, which is the lower bound of the random interval when using the number masking function
9289
/// </summary>
9390
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The lower bound of the random interval when using the number masking function.")]
94-
[ValidateNotNullOrEmpty]
9591
public double? NumberFrom { get; set; }
9692

9793
/// <summary>
9894
/// Gets or sets the NumberTo property, which is the upper bound of the random interval when using the number masking function
9995
/// </summary>
10096
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "The upper bound of the random interval when using the number masking function.")]
101-
[ValidateNotNullOrEmpty]
10297
public double? NumberTo { get; set; }
10398

10499
[Parameter(Mandatory = false)]

0 commit comments

Comments
 (0)