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

1.3 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-managed-cluster-attributes ManagedClusterAttributes ManagedClusterAttributes ManagedClusterAttributes pythonsdk
python
Python
sdk
ManagedClusterAttributes
BetaManagedClusterAttributes
/tools/sdk/python/beta/models/managed-cluster-attributes
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 [optional]
keystore str ManagedCluster keystore for spConnectCluster type [optional]
}

Example

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]