Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/IdentityCertificationTask.md
2025-01-28 13:29:29 -05:00

1.4 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
beta-identity-certification-task IdentityCertificationTask IdentityCertificationTask IdentityCertificationTask powershellsdk
powershell
PowerShell
sdk
IdentityCertificationTask
BetaIdentityCertificationTask
/tools/sdk/powershell/beta/models/identity-certification-task
SDK
Software Development Kit
IdentityCertificationTask
BetaIdentityCertificationTask

IdentityCertificationTask

Properties

Name Type Description Notes
Id Pointer to String The task id [optional]
CertificationId Pointer to String The certification id [optional]
Type Pointer to Enum [ "REASSIGN" ] [optional]
Status Pointer to Enum [ "QUEUED", "IN_PROGRESS", "SUCCESS", "ERROR" ] [optional]
Errors Pointer to []String Any errors executing the task (Optional). [optional]

Examples

  • Prepare the resource
$IdentityCertificationTask = Initialize-PSSailpoint.BetaIdentityCertificationTask  -Id abcd-ef12-3456 `
 -CertificationId ef38f94347e94562b5bb8424a56397d8 `
 -Type null `
 -Status null `
 -Errors []
  • Convert the resource to JSON
$IdentityCertificationTask | ConvertTo-JSON

[Back to top]