Skip to main content

ManagedCluster

Properties

NameTypeDescriptionNotes
IdStringManagedCluster ID[required]
NameStringManagedCluster name[optional]
PodStringManagedCluster pod[optional]
OrgStringManagedCluster org[optional]
TypeManagedClusterTypes[optional]
Configurationmap[string]StringManagedProcess configuration map[optional]
KeyPairManagedClusterKeyPair[optional]
AttributesManagedClusterAttributes[optional]
DescriptionStringManagedCluster description[optional]
RedisManagedClusterRedis[optional]
ClientTypeManagedClientType[required]
CcgVersionStringCCG version used by the ManagedCluster[required]
PinnedConfigBooleanboolean flag indiacting whether or not the cluster configuration is pinned[optional] [default to $false]
LogConfigurationClientLogConfiguration[optional]
OperationalBooleanWhether or not the cluster is operational or not[optional] [default to $false]
StatusStringCluster status[optional]
PublicKeyCertificateStringPublic key certificate[optional]
PublicKeyThumbprintStringPublic key thumbprint[optional]
PublicKeyStringPublic key[optional]
AlertKeyStringKey describing any immediate cluster alerts[optional]
ClientIds[]StringList of clients in a cluster[optional]
ServiceCountInt32Number of services bound to a cluster[optional] [default to 0]
CcIdStringCC ID only used in calling CC, will be removed without notice when Migration to CEGS is finished[optional] [default to "0"]
CreatedAtSystem.DateTimeThe date/time this cluster was created[optional]
UpdatedAtSystem.DateTimeThe date/time this cluster was last updated[optional]

Examples

  • Prepare the resource
$ManagedCluster = Initialize-PSSailpoint.BetaManagedCluster  -Id aClusterId `
-Name Managed Cluster Name `
-Pod megapod-useast1 `
-Org denali `
-Type null `
-Configuration {clusterExternalId=externalId, ccgVersion=77.0.0} `
-KeyPair null `
-Attributes null `
-Description A short description of the managed cluster. `
-Redis null `
-ClientType null `
-CcgVersion v01 `
-PinnedConfig false `
-LogConfiguration null `
-Operational false `
-Status NORMAL `
-PublicKeyCertificate -----BEGIN CERTIFICATE-----TCCAb2gAwIBAgIBADANBgkqhkiG9w0BAQsFADAuMQ0wCwYDVQQD-----END CERTIFICATE----- `
-PublicKeyThumbprint obc6pLiulGbtZ `
-PublicKey -----BEGIN PUBLIC KEY-----jANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3WgnsxP52MDgBTfHR+5n4-----END PUBLIC KEY----- `
-AlertKey LIMITED_RESOURCES `
-ClientIds [1244, 1245] `
-ServiceCount 6 `
-CcId 1533 `
-CreatedAt 2023-08-04T20:48:01.865Z `
-UpdatedAt 2023-08-04T20:48:01.865Z
  • Convert the resource to JSON
$ManagedCluster | ConvertTo-JSON

[Back to top]