Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/SpConfigMessage.md
2025-04-01 09:23:12 -04:00

1.1 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
v2025-sp-config-message SpConfigMessage SpConfigMessage SpConfigMessage pythonsdk
python
Python
sdk
SpConfigMessage
V2025SpConfigMessage
/tools/sdk/python/v2025/models/sp-config-message
SDK
Software Development Kit
SpConfigMessage
V2025SpConfigMessage

SpConfigMessage

Message model for Config Import/Export.

Properties

Name Type Description Notes
key str Message key. [required]
text str Message text. [required]
details map[string]object Message details if any, in key:value pairs. [required]
}

Example

from sailpoint.v2025.models.sp_config_message import SpConfigMessage

sp_config_message = SpConfigMessage(
key='UNKNOWN_REFERENCE_RESOLVER',
text='Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]',
details={details=message details}
)

[Back to top]