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.managed_cluster_types.models.managedclustertype import Managedclustertype

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

[Back to top]