mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.4 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-source-creation-errors | SourceCreationErrors | SourceCreationErrors | SourceCreationErrors | pythonsdk |
|
/tools/sdk/python/v2025/models/source-creation-errors |
|
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.v2025.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'
)