Skip to main content

ManagedCluster

Managed Cluster

Properties

NameTypeDescriptionNotes
idstrManagedCluster ID[required]
namestrManagedCluster name[optional]
podstrManagedCluster pod[optional]
orgstrManagedCluster org[optional]
typeManagedClusterTypes[optional]
configurationmap[string]strManagedProcess configuration map[optional]
key_pairManagedClusterKeyPair[optional]
attributesManagedClusterAttributes[optional]
descriptionstrManagedCluster description[optional] [default to 'q']
redisManagedClusterRedis[optional]
client_typeManagedClientType[required]
ccg_versionstrCCG version used by the ManagedCluster[required]
pinned_configboolboolean flag indiacting whether or not the cluster configuration is pinned[optional] [default to False]
log_configurationClientLogConfiguration[optional]
operationalboolWhether or not the cluster is operational or not[optional] [default to False]
statusEnum [ 'CONFIGURING', 'FAILED', 'NO_CLIENTS', 'NORMAL', 'WARNING' ]Cluster status[optional]
public_key_certificatestrPublic key certificate[optional]
public_key_thumbprintstrPublic key thumbprint[optional]
public_keystrPublic key[optional]
alert_keystrKey describing any immediate cluster alerts[optional]
client_ids[]strList of clients in a cluster[optional]
service_countintNumber of services bound to a cluster[optional] [default to 0]
cc_idstrCC ID only used in calling CC, will be removed without notice when Migration to CEGS is finished[optional] [default to '0']
created_atdatetimeThe date/time this cluster was created[optional]
updated_atdatetimeThe date/time this cluster was last updated[optional]
}

Example

from sailpoint.v2024.models.managed_cluster import ManagedCluster

managed_cluster = ManagedCluster(
id='e1ff7bb24c934240bbf55e1aa39e41c5',
name='Managed Cluster Name',
pod='megapod-useast1',
org='denali',
type='idn',
configuration={clusterExternalId=e1ff7bb24c934240bbf55e1aa39e41c5, clusterType=sqsCluster, gmtOffset=-5},
key_pair=sailpoint.v2024.models.managed_cluster_key_pair.ManagedClusterKeyPair(
public_key = '-----BEGIN PUBLIC KEY-----******-----END PUBLIC KEY-----',
public_key_thumbprint = '6CMlaJIV44-xJxcB3CJBjDUUn54',
public_key_certificate = '-----BEGIN CERTIFICATE-----****-----END CERTIFICATE-----', ),
attributes=sailpoint.v2024.models.managed_cluster_attributes.ManagedClusterAttributes(
queue = sailpoint.v2024.models.managed_cluster_queue.ManagedClusterQueue(
name = 'megapod-useast1-denali-lwt-cluster-1533',
region = 'us-east-1', ),
keystore = '/u3+7QAAAAIAAAABAAAAAQAvL3Byb3h5LWNsdXN0ZXIvMmM5MTgwODc3Yjg3MW', ),
description='q',
redis=sailpoint.v2024.models.managed_cluster_redis.ManagedClusterRedis(
redis_host = 'megapod-useast1-shared-redis.cloud.sailpoint.com',
redis_port = 6379, ),
client_type='CCG',
ccg_version='v01',
pinned_config=False,
log_configuration=sailpoint.v2024.models.client_log_configuration.ClientLogConfiguration(
client_id = '3a38a51992e8445ab51a549c0a70ee66',
duration_minutes = 120,
expiration = '2024-11-06T01:31:08.013164Z',
root_level = 'INFO',
log_levels = INFO, ),
operational=False,
status='NORMAL',
public_key_certificate='-----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE-----',
public_key_thumbprint='obc6pLiulGbtZ',
public_key='-----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY-----',
alert_key='LIMITED_RESOURCES',
client_ids=[1244, 1245],
service_count=6,
cc_id='0',
created_at='2023-08-04T20:48:01.865Z',
updated_at='2023-08-04T20:48:01.865Z'
)

[Back to top]