Skip to main content

Fielddetailsdtov2

Properties

NameTypeDescriptionNotes
NameStringThe name of the attribute.[optional]
TransformSystemCollectionsHashtableThe transform to apply to the field[optional]
AttributesSystemCollectionsHashtableAttributes required for the transform[optional]
IsRequiredBooleanFlag indicating whether or not the attribute is required.[optional] [readonly] [default to $false]
TypeEnum [ "string", "int", "long", "date", "boolean", "secret" ]The type of the attribute. string: For text-based data. int: For whole numbers. long: For larger whole numbers. date: For date and time values. boolean: For true/false values. secret: For sensitive data like passwords, which will be masked and encrypted.[optional]
IsMultiValuedBooleanFlag indicating whether or not the attribute is multi-valued.[optional] [default to $false]

Examples

  • Prepare the resource
$Fielddetailsdtov2 = Initialize-Fielddetailsdtov2  -Name userName `
-Transform {"type":"rule","attributes":{"name":"Create Unique LDAP Attribute"}} `
-Attributes {"template":"firstname.lastname.uniqueCounter","cloudMaxUniqueChecks":"50","cloudMaxSize":"20","cloudRequired":"true"} `
-IsRequired false `
-Type string `
-IsMultiValued false
  • Convert the resource to JSON
$Fielddetailsdtov2 | ConvertTo-JSON

[Back to top]