Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/IdentityCertified.md
2025-02-28 14:46:13 +00:00

1.8 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-certified IdentityCertified IdentityCertified IdentityCertified powershellsdk
powershell
PowerShell
sdk
IdentityCertified
BetaIdentityCertified
/tools/sdk/powershell/beta/models/identity-certified
SDK
Software Development Kit
IdentityCertified
BetaIdentityCertified

IdentityCertified

Properties

Name Type Description Notes
CertificationId String the id of the certification item [optional]
CertificationName String the certification item name [optional]
SignedDate String the date ceritification was signed [optional]
Certifiers []CertifierResponse this field is deprecated and may go away [optional]
Reviewers []CertifierResponse The list of identities who review this certification [optional]
Signer CertifierResponse [optional]
EventType String the event type [optional]
Dt String the date of event [optional]

Examples

  • Prepare the resource
$IdentityCertified = Initialize-PSSailpoint.BetaIdentityCertified  -CertificationId 2c91808a77ff216301782327a50f09bf `
 -CertificationName Cert name `
 -SignedDate 2019-03-08T22:37:33.901Z `
 -Certifiers [{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}] `
 -Reviewers [{id=8a80828f643d484f01643e14202e206f, displayName=John Snow}] `
 -Signer null `
 -EventType IdentityCertified `
 -Dt 2019-03-08T22:37:33.901Z
  • Convert the resource to JSON
$IdentityCertified | ConvertTo-JSON

[Back to top]