Skip to main content

IdentityProfile

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the Object[optional] [readonly]
NameStringName of the Object[required]
CreatedSystem.DateTimeCreation date of the Object[optional] [readonly]
ModifiedSystem.DateTimeLast modification date of the Object[optional] [readonly]
DescriptionStringThe description of the Identity Profile.[optional]
OwnerIdentityProfileAllOfOwner[optional]
PriorityInt64The priority for an Identity Profile.[optional]
AuthoritativeSourceIdentityProfileAllOfAuthoritativeSource[required]
IdentityRefreshRequiredBooleanTrue if a identity refresh is needed. Typically triggered when a change on the source has been made.[optional] [default to $false]
IdentityCountInt32The number of identities that belong to the Identity Profile.[optional]
IdentityAttributeConfigIdentityAttributeConfig[optional]
IdentityExceptionReportReferenceIdentityExceptionReportReference[optional]
HasTimeBasedAttrBooleanIndicates the value of requiresPeriodicRefresh attribute for the Identity Profile.[optional] [default to $false]

Examples

  • Prepare the resource
$IdentityProfile = Initialize-PSSailpoint.V2024IdentityProfile  -Id id12345 `
-Name aName `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z `
-Description My custom flat file profile `
-Owner null `
-Priority 10 `
-AuthoritativeSource null `
-IdentityRefreshRequired true `
-IdentityCount 8 `
-IdentityAttributeConfig null `
-IdentityExceptionReportReference null `
-HasTimeBasedAttr true
  • Convert the resource to JSON
$IdentityProfile | ConvertTo-JSON

[Back to top]