action linode_get_lkeclusters { label: "Kubernetes Clusters List" description: "Lists current Kubernetes clusters available on your account.\n" provider: linode method: GET path: "/lke/clusters" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "A Kubernetes cluster." properties: { control_plane: { type: "object" description: "Defines settings for the Kubernetes Control Plane. Allows for the enabling of High Availability (HA) for Control Plane Components. Enabling High Avaialability for LKE is an **irreversible** change.\n" properties: { high_availability: { type: "boolean" description: "Defines whether High Availability is enabled for the Control Plane Components of the cluster. Defaults to `false`.\n" } } } created: { type: "string" format: "date-time" description: "When this Kubernetes cluster was created." } id: { type: "integer" description: "This Kubernetes cluster's unique ID." } k8s_version: { type: "string" description: "The desired Kubernetes version for this Kubernetes cluster in the format of <major>.<minor>, and the latest supported patch version will be deployed.\n" } label: { type: "string" description: "This Kubernetes cluster's unique label for display purposes only.\nLabels have the following constraints:\n\n * UTF-8 characters will be returned by the API using escape\n sequences of their Unicode code points. For example, the\n Japanese character *か* is 3 bytes in UTF-8 (`0xE382AB`). Its\n Unicode code point is 2 bytes (`0x30AB`). APIv4 supports this\n character and the API will return it as the escape sequence\n using six 1 byte characters which represent 2 bytes of Unicode\n code point (`\"\\u30ab\"`).\n * 4 byte UTF-8 characters are not supported.\n * If the label is entirely composed of UTF-8 characters, the API\n response will return the code points using up to 193 1 byte\n characters.\n" } region: { type: "string" description: "This Kubernetes cluster's location." } tags: { type: "array" description: "An array of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.\n" items: { type: "string" } } updated: { type: "string" format: "date-time" description: "When this Kubernetes cluster was updated." } } } } page: { type: "integer" description: "The current [page](/docs/api/#pagination)." } pages: { type: "integer" description: "The total number of [pages](/docs/api/#pagination)." } results: { type: "integer" description: "The total number of results." } } } }