Skip to main content

ManagedClusterType

Managed Cluster Type for Cluster upgrade configuration information

Properties

NameTypeDescriptionNotes
idstrManagedClusterType ID[optional] [readonly]
typestrManagedClusterType type name[required]
podstrManagedClusterType pod[required]
orgstrManagedClusterType org[required]
managed_process_ids[]strList of processes for the cluster type[optional]
}

Example

from sailpoint.v2024.models.managed_cluster_type import ManagedClusterType

managed_cluster_type = ManagedClusterType(
id='aClusterTypeId',
type='idn',
pod='megapod-useast1',
org='denali-cjh',
managed_process_ids=[someId, someId2]
)

[Back to top]