starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
---
id: source-cluster-dto
title: SourceClusterDto
pagination_label: SourceClusterDto
sidebar_label: SourceClusterDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SourceClusterDto', 'SourceClusterDto']
slug: /tools/sdk/python/v3/models/source-cluster-dto
tags: ['SDK', 'Software Development Kit', 'SourceClusterDto', 'SourceClusterDto']
---
# SourceClusterDto
Source cluster.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **Enum** [ 'CLUSTER' ] | Source cluster DTO type. | [optional]
**id** | **str** | Source cluster ID. | [optional]
**name** | **str** | Source cluster display name. | [optional]
}
## Example
```python
from sailpoint.v3.models.source_cluster_dto import SourceClusterDto
source_cluster_dto = SourceClusterDto(
type='CLUSTER',
id='2c9180847a7fccdd017aa5896f9f4f6f',
name='Training VA'
)
```
[[Back to top]](#)