Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/SourceUpdated.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-updated SourceUpdated SourceUpdated SourceUpdated pythonsdk
python
Python
sdk
SourceUpdated
BetaSourceUpdated
/tools/sdk/python/beta/models/source-updated
SDK
Software Development Kit
SourceUpdated
BetaSourceUpdated

SourceUpdated

Properties

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

Example

from sailpoint.beta.models.source_updated import SourceUpdated

source_updated = SourceUpdated(
id='2c9180866166b5b0016167c32ef31a66',
name='Test source',
type='DIRECT_CONNECT',
modified='2021-03-29T22:01:50.474Z',
connector='active-directory',
actor=sailpoint.beta.models.source_updated_actor.SourceUpdated_actor(
                    type = 'IDENTITY', 
                    id = '2c7180a46faadee4016fb4e018c20648', 
                    name = 'William Wilson', )
)

[Back to top]