Skip to main content

CertificationSignedOffCertification

Properties

NameTypeDescriptionNotes
IdStringUnique ID of the certification.[required]
NameStringThe name of the certification.[required]
CreatedSystem.DateTimeThe date and time the certification was created.[required]
ModifiedSystem.DateTimeThe date and time the certification was last modified.[optional]
CampaignRefCampaignReference[required]
PhaseCertificationPhase[required]
DueSystem.DateTimeThe due date of the certification.[required]
SignedSystem.DateTimeThe date the reviewer signed off on the certification.[required]
ReviewerReviewer[required]
ReassignmentReassignment[optional]
HasErrorsBooleanIndicates it the certification has any errors.[required]
ErrorMessageStringA message indicating what the error is.[optional]
CompletedBooleanIndicates if all certification decisions have been made.[required]
DecisionsMadeInt32The number of approve/revoke/acknowledge decisions that have been made by the reviewer.[required]
DecisionsTotalInt32The total number of approve/revoke/acknowledge decisions for the certification.[required]
EntitiesCompletedInt32The number of entities (identities, access profiles, roles, etc.) for which all decisions have been made and are complete.[required]
EntitiesTotalInt32The total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete.[required]

Examples

  • Prepare the resource
$CertificationSignedOffCertification = Initialize-PSSailpoint.BetaCertificationSignedOffCertification  -Id 2c91808576f886190176f88caf0d0067 `
-Name Manager Access Review for Alice Baker `
-Created 2020-02-16T03:04:45.815Z `
-Modified 2020-02-16T03:06:45.815Z `
-CampaignRef null `
-Phase null `
-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 `
-Completed false `
-DecisionsMade 20 `
-DecisionsTotal 40 `
-EntitiesCompleted 5 `
-EntitiesTotal 10
  • Convert the resource to JSON
$CertificationSignedOffCertification | ConvertTo-JSON

[Back to top]