Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AttributeDefinition.md
2025-05-07 14:37:48 +00:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-attribute-definition AttributeDefinition AttributeDefinition AttributeDefinition powershellsdk
powershell
PowerShell
sdk
AttributeDefinition
V2024AttributeDefinition
/tools/sdk/powershell/v2024/models/attribute-definition
SDK
Software Development Kit
AttributeDefinition
V2024AttributeDefinition

AttributeDefinition

Properties

Name Type Description Notes
Name String The name of the attribute. [optional]
Type AttributeDefinitionType [optional]
Schema AttributeDefinitionSchema [optional]
Description String A human-readable description of the attribute. [optional]
IsMulti Boolean Flag indicating whether or not the attribute is multi-valued. [optional] [default to $false]
IsEntitlement Boolean Flag indicating whether or not the attribute is an entitlement. [optional] [default to $false]
IsGroup Boolean Flag 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-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]