INPUT_OBJECT

UpdateCluster

link GraphQL Schema definition

1input UpdateCluster {
3
2id: ID!
5
4name: String
7
6allowedEngines: [String]
9
8dockerCredentials: JSONData
11
10edgeVersion: Int
13
12containerTag: String
15
14memorySize: Int
17
16storageSize: Int
19
18bypassAllowedEngines: Boolean
23
20# Permissions granted to other organizations. Only the cluster owner
21# can view or edit this field.
22collaborators: [CreateClusterCollaborator!]
26
24# Tags for cluster
25tags: [String]
28
27status: ClusterStatus
31
29# Update the cluster config
30clusterConfig: JSONData
34
32# Media storage path. Optional -- use only for edge.
33mediaStoragePath: String
38
35# Designate a management node ID. Used only for edge/portable clusters.
36# Must be the ID of an existing node in the cluster.
37managementNodeID: ID
42
39# Optionally, specify a time at which the edge cluster should
40# be restarted daily. Applies only to edge clusters.
41restartTimeUTC: Time
45
43# Update subscriptions on the cluster.
44subscriptions: [UpdateClusterSubscription]
48
46# Optionally, specify an api-token for cluster
47serviceToken: String
51
49# Update base URL controller
50controllerUrl: String
54
52# ID of the core that the cluster is pulling jobs from
53coreId: String
57
55# The ID of the organization, specify default cluster for an organization
56setAsDefaultForOrganization: ID
60
58# Specify default cluster per environment
59setAsEnvironmentDefaultCluster: Boolean
63
61# List of business units, specify default cluster for each unit in the list
62setAsDefaultForBUs: [String!]
64}

link Required by

This element is not required by anyone