Skip to main content

ClusterConfigCreateInput

Input for creating a new cluster configuration template

input ClusterConfigCreateInput {
name: String!
settings: [ClusterConfigSettingInput!]
}

Fields

ClusterConfigCreateInput.name ● String! non-null scalar

Human-readable name of the cluster configuration.

Must be unique. Maximum length is 35 characters. Must be SNAKE_CASE: only uppercase letters (A-Z), digits (0-9) and underscores (_) are accepted; lowercase letters, spaces and any other punctuation are rejected.

ClusterConfigCreateInput.settings ● [ClusterConfigSettingInput!] list input

Configuration settings that define how clusters built from the template can be customised.

Member Of

clusterConfigCreate mutation