Skip to main content

AttributeDefinition

Properties

NameTypeDescriptionNotes
NameStringThe name of the attribute.[optional]
TypeAttributeDefinitionType[optional]
SchemaAttributeDefinitionSchema[optional]
DescriptionStringA human-readable description of the attribute.[optional]
IsMultiBooleanFlag indicating whether or not the attribute is multi-valued.[optional] [default to $false]
IsEntitlementBooleanFlag indicating whether or not the attribute is an entitlement.[optional] [default to $false]
IsGroupBooleanFlag indicating whether or not the attribute represents a group. This can only be true if isEntitlement is also true and there is a schema defined for the attribute..[optional] [default to $false]

Examples

  • Prepare the resource
$AttributeDefinition = Initialize-PSSailpoint.V2024AttributeDefinition  -Name sAMAccountName `
-Type null `
-Schema null `
-Description SAM Account Name `
-IsMulti false `
-IsEntitlement false `
-IsGroup false
  • Convert the resource to JSON
$AttributeDefinition | ConvertTo-JSON

[Back to top]