OBJECT

MissingCluster

Description

Information about missing clusters.

link GraphQL Schema definition

  • type MissingCluster {
  • # Cluster name.
  • name: String!
  • # Cluster UUID.
  • uuid: String!
  • # Cluster version.
  • version: String!
  • # Cluster Type.
  • clusterType: String!
  • # Cluster IP address.
  • clusterIp: String!
  • # Number of nodes in the cluster.
  • numOfNodes: Int!
  • # Nodes in the cluster.
  • nodes: [String!]!
  • # Connection Status of the cluster.
  • connectionStatus: MissingClusterConnectionStatus!
  • # Current state of disconnection for the cluster.
  • disconnectedState: MissingClusterDisconnectedState!
  • # Specifies whether the cluster is excluded by the customer.
  • isExcluded: Boolean!
  • # Reason for exclusion of cluster connection from RSC.
  • exclusionReason: String!
  • }