Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AttributeDefinition.md
2025-01-28 13:29:29 -05:00

1.8 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
beta-attribute-definition AttributeDefinition AttributeDefinition AttributeDefinition powershellsdk
powershell
PowerShell
sdk
AttributeDefinition
BetaAttributeDefinition
/tools/sdk/powershell/beta/models/attribute-definition
SDK
Software Development Kit
AttributeDefinition
BetaAttributeDefinition

AttributeDefinition

Properties

Name Type Description Notes
Name Pointer to String The name of the attribute. [optional]
Type Pointer to AttributeDefinitionType [optional]
Schema Pointer to AttributeDefinitionSchema [optional]
Description Pointer to String A human-readable description of the attribute. [optional]
IsMulti Pointer to Boolean Flag indicating whether or not the attribute is multi-valued. [optional] [default to $false]
IsEntitlement Pointer to Boolean Flag indicating whether or not the attribute is an entitlement. [optional] [default to $false]
IsGroup Pointer to 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-PSSailpoint.BetaAttributeDefinition  -Name sAMAccountName `
 -Type null `
 -Schema null `
 -Description The sAMAccountName attribute `
 -IsMulti false `
 -IsEntitlement false `
 -IsGroup false
  • Convert the resource to JSON
$AttributeDefinition | ConvertTo-JSON

[Back to top]