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

1.2 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
v2024-sp-config-message SpConfigMessage SpConfigMessage SpConfigMessage powershellsdk
powershell
PowerShell
sdk
SpConfigMessage
V2024SpConfigMessage
/tools/sdk/powershell/v2024/models/sp-config-message
SDK
Software Development Kit
SpConfigMessage
V2024SpConfigMessage

SpConfigMessage

Properties

Name Type Description Notes
Key String Message key. [required]
Text String Message text. [required]
Details [map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 Message details if any, in key:value pairs. [required]

Examples

  • Prepare the resource
$SpConfigMessage = Initialize-PSSailpoint.V2024SpConfigMessage  -Key UNKNOWN_REFERENCE_RESOLVER `
 -Text Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity] `
 -Details {details=message details}
  • Convert the resource to JSON
$SpConfigMessage | ConvertTo-JSON

[Back to top]