Skip to main content

AttributeDTO

Properties

NameTypeDescriptionNotes
KeyStringTechnical name of the Attribute. This is unique and cannot be changed after creation.[optional]
NameStringThe display name of the key.[optional]
MultiselectBooleanIndicates whether the attribute can have multiple values.[optional] [default to $false]
StatusStringThe status of the Attribute.[optional]
TypeStringThe type of the Attribute. This can be either ""custom"" or ""governance"".[optional]
ObjectTypes[]StringAn array of object types this attributes values can be applied to. Possible values are ""all"" or ""entitlement"". Value ""all"" means this attribute can be used with all object types that are supported.[optional]
DescriptionStringThe description of the Attribute.[optional]
Values[]AttributeValueDTO[optional]

Examples

  • Prepare the resource
$AttributeDTO = Initialize-PSSailpoint.BetaAttributeDTO  -Key iscPrivacy `
-Name Privacy `
-Multiselect false `
-Status active `
-Type governance `
-ObjectTypes [entitlement] `
-Description Specifies the level of privacy associated with an access item. `
-Values null
  • Convert the resource to JSON
$AttributeDTO | ConvertTo-JSON

[Back to top]