Skip to main content

RemediationItems

Properties

NameTypeDescriptionNotes
IdStringThe ID of the certification[optional]
TargetIdStringThe ID of the certification target[optional]
TargetNameStringThe name of the certification target[optional]
TargetDisplayNameStringThe display name of the certification target[optional]
ApplicationNameStringThe name of the application/source[optional]
AttributeNameStringThe name of the attribute being certified[optional]
AttributeOperationStringThe operation of the certification on the attribute[optional]
AttributeValueStringThe value of the attribute being certified[optional]
NativeIdentityStringThe native identity of the target[optional]

Examples

  • Prepare the resource
$RemediationItems = Initialize-PSSailpoint.V2024RemediationItems  -Id 2c9180835d2e5168015d32f890ca1581 `
-TargetId 2c9180835d2e5168015d32f890ca1581 `
-TargetName john.smith `
-TargetDisplayName emailAddress `
-ApplicationName Active Directory `
-AttributeName phoneNumber `
-AttributeOperation update `
-AttributeValue 512-555-1212 `
-NativeIdentity jason.smith2
  • Convert the resource to JSON
$RemediationItems | ConvertTo-JSON

[Back to top]