OBJECT

ClusterNode

link GraphQL Schema definition

1type ClusterNode {
2
3id: ID!
4
5clusterId: ID
6
7cluster: Cluster
8
9name: String
10
11metrics: JSONData
12
13# Cluster configuration overrides
14nodeConfig: JSONData
15
16paused: Boolean
17
18createdDateTime: DateTime
19
20modifiedDateTime: DateTime
21
22status: ClusterNodeStatus
23
24role: String
25
26}