You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/BuildAzureSqlDatabaseDataMaskingRule.cs
-5Lines changed: 0 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -70,35 +70,30 @@ public abstract class BuildAzureSqlDatabaseDataMaskingRule : SqlDatabaseDataMask
70
70
/// Gets or sets the prefix size when using the text masking function
71
71
/// </summary>
72
72
[Parameter(Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The prefix size when using the text masking function.")]
73
-
[ValidateNotNullOrEmpty]
74
73
publicuint?PrefixSize{get;set;}
75
74
76
75
/// <summary>
77
76
/// Gets or sets the replacement string when using the text masking function
78
77
/// </summary>
79
78
[Parameter(Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The replacement string when using the text masking function.")]
80
-
[ValidateNotNullOrEmpty]
81
79
publicstringReplacementString{get;set;}
82
80
83
81
/// <summary>
84
82
/// Gets or sets the suffix size when using the text masking function
85
83
/// </summary>
86
84
[Parameter(Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The suffix size string when using the text masking function.")]
87
-
[ValidateNotNullOrEmpty]
88
85
publicuint?SuffixSize{get;set;}
89
86
90
87
/// <summary>
91
88
/// Gets or sets the NumberFrom property, which is the lower bound of the random interval when using the number masking function
92
89
/// </summary>
93
90
[Parameter(Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The lower bound of the random interval when using the number masking function.")]
94
-
[ValidateNotNullOrEmpty]
95
91
publicdouble?NumberFrom{get;set;}
96
92
97
93
/// <summary>
98
94
/// Gets or sets the NumberTo property, which is the upper bound of the random interval when using the number masking function
99
95
/// </summary>
100
96
[Parameter(Mandatory=false,ValueFromPipelineByPropertyName=true,HelpMessage="The upper bound of the random interval when using the number masking function.")]
0 commit comments