Skip to main content

SourceCreationErrors

Properties

NameTypeDescriptionNotes
multihost_idstrMulti-Host Integration ID.[optional] [readonly]
source_namestrSource's human-readable name.[optional]
source_errorstrSource's human-readable description.[optional]
createddatetimeDate-time when the source was created[optional]
modifieddatetimeDate-time when the source was last modified.[optional]
operationstroperation category (e.g. DELETE).[optional]
}

Example

from sailpoint.v2024.models.source_creation_errors import SourceCreationErrors

source_creation_errors = SourceCreationErrors(
multihost_id='2c91808568c529c60168cca6f90c1324',
source_name='My Source',
source_error='Source with internal name "My Source [source]" already exists.',
created='2022-02-08T14:50:03.827Z',
modified='2024-01-23T18:08:50.897Z',
operation='DELETE'
)

[Back to top]