Skip to main content

TaskResultDetailsMessagesInner

Properties

NameTypeDescriptionNotes
TypeEnum [ "INFO", "WARN", "ERROR" ]Type of the message.[optional]
VarErrorBooleanFlag whether message is an error.[optional] [default to $false]
WarningBooleanFlag whether message is a warning.[optional] [default to $false]
KeyStringMessage string identifier.[optional]
LocalizedTextStringMessage context with the locale based language.[optional]

Examples

  • Prepare the resource
$TaskResultDetailsMessagesInner = Initialize-PSSailpoint.V2024TaskResultDetailsMessagesInner  -Type WARN `
-VarError false `
-Warning true `
-Key The following account(s) failed to correlate: A,B,C `
-LocalizedText The following account(s) failed to correlate: A,B,C
  • Convert the resource to JSON
$TaskResultDetailsMessagesInner | ConvertTo-JSON

[Back to top]