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: beta-managed-cluster-attributes
title: ManagedClusterAttributes
pagination_label: ManagedClusterAttributes
sidebar_label: ManagedClusterAttributes
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ManagedClusterAttributes', 'BetaManagedClusterAttributes']
slug: /tools/sdk/python/beta/models/managed-cluster-attributes
tags: ['SDK', 'Software Development Kit', 'ManagedClusterAttributes', 'BetaManagedClusterAttributes']
---
# ManagedClusterAttributes
Managed Cluster Attributes for Cluster Configuration. Supported Cluster Types [sqsCluster, spConnectCluster]
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**queue** | [**ManagedClusterQueue**](managed-cluster-queue) | | [optional]
**keystore** | **str** | ManagedCluster keystore for spConnectCluster type | [optional]
}
## Example
```python
from sailpoint.beta.models.managed_cluster_attributes import ManagedClusterAttributes
managed_cluster_attributes = ManagedClusterAttributes(
queue=sailpoint.beta.models.managed_cluster_queue.ManagedClusterQueue(
name = 'megapod-useast1-denali-lwt-cluster-1533',
region = 'us-east-1', ),
keystore='/u3+7QAAAAIAAAABAAAAAQAvL3Byb3h5LWNsdXN0ZXIvMmM5MTgwODc3Yjg3MW'
)
```
[[Back to top]](#)