Skip to main content

Certification

Properties

NameTypeDescriptionNotes
IdStringid of the certification[optional]
NameStringname of the certification[optional]
CampaignCampaignReference[optional]
CompletedBooleanHave all decisions been made?[optional]
IdentitiesCompletedInt32The number of identities for whom all decisions have been made and are complete.[optional]
IdentitiesTotalInt32The total number of identities in the Certification, both complete and incomplete.[optional]
CreatedSystem.DateTimecreated date[optional]
ModifiedSystem.DateTimemodified date[optional]
DecisionsMadeInt32The number of approve/revoke/acknowledge decisions that have been made.[optional]
DecisionsTotalInt32The total number of approve/revoke/acknowledge decisions.[optional]
DueSystem.DateTimeThe due date of the certification.[optional]
SignedSystem.DateTimeThe date the reviewer signed off on the Certification.[optional]
ReviewerReviewer[optional]
ReassignmentReassignment[optional]
HasErrorsBooleanIdentifies if the certification has an error[optional]
ErrorMessageStringDescription of the certification error[optional]
PhaseCertificationPhase[optional]

Examples

  • Prepare the resource
$Certification = Initialize-PSSailpoint.V2024Certification  -Id 2c9180835d2e5168015d32f890ca1581 `
-Name Source Owner Access Review for Employees [source] `
-Campaign null `
-Completed true `
-IdentitiesCompleted 5 `
-IdentitiesTotal 10 `
-Created 2018-06-25T20:22:28.104Z `
-Modified 2018-06-25T20:22:28.104Z `
-DecisionsMade 20 `
-DecisionsTotal 40 `
-Due 2018-10-19T13:49:37.385Z `
-Signed 2018-10-19T13:49:37.385Z `
-Reviewer null `
-Reassignment null `
-HasErrors false `
-ErrorMessage The certification has an error `
-Phase null
  • Convert the resource to JSON
$Certification | ConvertTo-JSON

[Back to top]