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-PSSailpoint.V3AttributeDTO -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