Skip to main content

Spconfigmessage2

Message model for Config Import/Export.

Properties

NameTypeDescriptionNotes
keystrMessage key.[required]
textstrMessage text.[required]
detailsmap[string]objectMessage details if any, in key:value pairs.[required]
}

Example

from sailpoint.sp_config.models.spconfigmessage2 import Spconfigmessage2

spconfigmessage2 = Spconfigmessage2(
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]