mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.7 KiB
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 |
|
/tools/sdk/powershell/v2024/models/attribute-definition |
|
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