Skip to main content

IdentityProfile1

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]
DescriptionStringIdentity profile's description.[optional]
OwnerIdentityProfileAllOfOwner[optional]
PriorityInt64Identity profile's priority.[optional]
AuthoritativeSourceIdentityProfile1AllOfAuthoritativeSource[required]
IdentityRefreshRequiredBooleanSet this value to 'True' if an identity refresh is necessary. You would typically want to trigger an identity refresh when a change has been made on the source.[optional] [default to $false]
IdentityCountInt32Number of identities belonging to the identity profile.[optional]
IdentityAttributeConfigIdentityAttributeConfig1[optional]
IdentityExceptionReportReferenceIdentityExceptionReportReference1[optional]
HasTimeBasedAttrBooleanIndicates the value of requiresPeriodicRefresh attribute for the identity profile.[optional] [default to $false]

Examples

  • Prepare the resource
$IdentityProfile1 = Initialize-PSSailpoint.BetaIdentityProfile1  -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
$IdentityProfile1 | ConvertTo-JSON

[Back to top]