Skip to main content

IdentityAttribute

Properties

NameTypeDescriptionNotes
NameStringIdentity attribute's technical name.[required]
DisplayNameStringIdentity attribute's business-friendly name.[optional]
StandardBooleanIndicates whether the attribute is 'standard' or 'default'.[optional] [default to $false]
TypeStringIdentity attribute's type.[optional]
MultiBooleanIndicates whether the identity attribute is multi-valued.[optional] [default to $false]
SearchableBooleanIndicates whether the identity attribute is searchable.[optional] [default to $false]
SystemBooleanIndicates whether the identity attribute is 'system', meaning that it doesn't have a source and isn't configurable.[optional] [default to $false]
Sources[]Source1Identity attribute's list of sources - this specifies how the rule's value is derived.[optional]

Examples

  • Prepare the resource
$IdentityAttribute = Initialize-PSSailpoint.V2024IdentityAttribute  -Name costCenter `
-DisplayName Cost Center `
-Standard false `
-Type string `
-Multi false `
-Searchable false `
-System false `
-Sources null
  • Convert the resource to JSON
$IdentityAttribute | ConvertTo-JSON

[Back to top]