Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/Certification.md
2025-05-07 14:37:48 +00:00

2.6 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
certification Certification Certification Certification powershellsdk
powershell
PowerShell
sdk
Certification
Certification
/tools/sdk/powershell/v3/models/certification
SDK
Software Development Kit
Certification
Certification

Certification

Properties

Name Type Description Notes
Id String id of the certification [optional]
Name String name of the certification [optional]
Campaign CampaignReference [optional]
Completed Boolean Have all decisions been made? [optional]
IdentitiesCompleted Int32 The number of identities for whom all decisions have been made and are complete. [optional]
IdentitiesTotal Int32 The total number of identities in the Certification, both complete and incomplete. [optional]
Created System.DateTime created date [optional]
Modified System.DateTime modified date [optional]
DecisionsMade Int32 The number of approve/revoke/acknowledge decisions that have been made. [optional]
DecisionsTotal Int32 The total number of approve/revoke/acknowledge decisions. [optional]
Due System.DateTime The due date of the certification. [optional]
Signed System.DateTime The date the reviewer signed off on the Certification. [optional]
Reviewer Reviewer [optional]
Reassignment Reassignment [optional]
HasErrors Boolean Identifies if the certification has an error [optional]
ErrorMessage String Description of the certification error [optional]
Phase CertificationPhase [optional]

Examples

  • Prepare the resource
$Certification = Initialize-Certification  -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]