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: articles/active-directory/app-provisioning/functions-for-customizing-application-data.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -808,7 +808,7 @@ Generates a random string with 10 characters (2 numbers, 2 special characters, a
808
808
809
809
**Example 2:** - Genareate a random string with special character restrictions:
810
810
`RandomString(10,2,2,2,"?,")`
811
-
Generates a random string with 10 characters (2 numbers, 2 special characters, and 2 capital letters). Excludes "?" from the random string generated.
811
+
Generates a random string with 10 characters (2 numbers, 2 special characters, and 2 capital letters). Excludes "?" and "," from the random string generated.
812
812
813
813
---
814
814
@@ -818,7 +818,7 @@ Generates a random string with 10 characters (2 numbers, 2 special characters, a
818
818
Redact()
819
819
820
820
**Description:**
821
-
The Redact function securely removes the attribute value from the provisioning logs.
821
+
The Redact function replaces the attribute value with the string literal "[Redact]" in the provisioning logs.
822
822
823
823
**Parameters:**
824
824
@@ -835,7 +835,7 @@ Removes the userPrincipalName from the provisioning logs.
835
835
Removes a constant string from the provisioning logs.
836
836
837
837
**Example 3:** Redact a random string:
838
-
`Redact("RandomString(10,2,2,2)")`
838
+
`Redact(RandomString(10,2,2,2))`
839
839
Removes the random string from the provisioning logs.
0 commit comments