Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/SourceCreated.md
2025-03-21 03:35:56 +00: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-created SourceCreated SourceCreated SourceCreated pythonsdk
python
Python
sdk
SourceCreated
BetaSourceCreated
/tools/sdk/python/beta/models/source-created
SDK
Software Development Kit
SourceCreated
BetaSourceCreated

SourceCreated

Properties

Name Type Description Notes
id str Source's unique ID. [required]
name str Source name. [required]
type str Connection type. [required]
created datetime Date and time when the source was created. [required]
connector str Connector type used to connect to the source. [required]
actor SourceCreatedActor [required]
}

Example

from sailpoint.beta.models.source_created import SourceCreated

source_created = SourceCreated(
id='2c9180866166b5b0016167c32ef31a66',
name='Test source',
type='DIRECT_CONNECT',
created='2021-03-29T22:01:50.474Z',
connector='active-directory',
actor=sailpoint.beta.models.source_created_actor.SourceCreated_actor(
                    type = 'IDENTITY', 
                    id = '2c7180a46faadee4016fb4e018c20648', 
                    name = 'William Wilson', )
)

[Back to top]