Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/SourceCreationErrors.md
2025-02-20 12:59:19 -05:00

1.4 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
beta-source-creation-errors SourceCreationErrors SourceCreationErrors SourceCreationErrors pythonsdk
python
Python
sdk
SourceCreationErrors
BetaSourceCreationErrors
/tools/sdk/python/beta/models/source-creation-errors
SDK
Software Development Kit
SourceCreationErrors
BetaSourceCreationErrors

SourceCreationErrors

Properties

Name Type Description Notes
multihost_id str Multi-Host Integration ID. [optional] [readonly]
source_name str Source's human-readable name. [optional]
source_error str Source's human-readable description. [optional]
created datetime Date-time when the source was created [optional]
modified datetime Date-time when the source was last modified. [optional]
operation str operation category (e.g. DELETE). [optional]
}

Example

from sailpoint.beta.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]