Skip to main content

Firstvalid

Properties

NameTypeDescriptionNotes
Values[[]SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0An array of attributes to evaluate for existence.[required]
IgnoreErrorsBooleana true or false value representing to move on to the next option if an error (like an Null Pointer Exception) were to occur.[optional] [default to $false]
RequiresPeriodicRefreshBooleanA value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process[optional] [default to $false]

Examples

  • Prepare the resource
$Firstvalid = Initialize-Firstvalid  -Values [{"attributes":{"sourceName":"Active Directory","attributeName":"sAMAccountName"},"type":"accountAttribute"},{"attributes":{"sourceName":"Okta","attributeName":"login"},"type":"accountAttribute"},{"attributes":{"sourceName":"HR Source","attributeName":"employeeID"},"type":"accountAttribute"}] `
-IgnoreErrors false `
-RequiresPeriodicRefresh false
  • Convert the resource to JSON
$Firstvalid | ConvertTo-JSON

[Back to top]