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

962 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-source-cluster SourceCluster SourceCluster SourceCluster pythonsdk
python
Python
sdk
SourceCluster
V2024SourceCluster
/tools/sdk/python/v2024/models/source-cluster
SDK
Software Development Kit
SourceCluster
V2024SourceCluster

SourceCluster

Reference to the source's associated cluster.

Properties

Name Type Description Notes
type Enum [ 'CLUSTER' ] Type of object being referenced. [required]
id str Cluster ID. [required]
name str Cluster's human-readable display name. [required]
}

Example

from sailpoint.v2024.models.source_cluster import SourceCluster

source_cluster = SourceCluster(
type='CLUSTER',
id='2c9180866166b5b0016167c32ef31a66',
name='Corporate Cluster'
)

[Back to top]