Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AttributeDTO.md
2025-05-07 14:37:48 +00: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-dto AttributeDTO AttributeDTO AttributeDTO powershellsdk
powershell
PowerShell
sdk
AttributeDTO
BetaAttributeDTO
/tools/sdk/powershell/beta/models/attribute-dto
SDK
Software Development Kit
AttributeDTO
BetaAttributeDTO

AttributeDTO

Properties

Name Type Description Notes
Key String Technical name of the Attribute. This is unique and cannot be changed after creation. [optional]
Name String The display name of the key. [optional]
Multiselect Boolean Indicates whether the attribute can have multiple values. [optional] [default to $false]
Status String The status of the Attribute. [optional]
Type String The type of the Attribute. This can be either ""custom"" or ""governance"". [optional]
ObjectTypes []String An 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]
Description String The description of the Attribute. [optional]
Values []AttributeValueDTO [optional]

Examples

  • Prepare the resource
$AttributeDTO = Initialize-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]