action linode_get_lkecluster_apiendpoints { label: "Kubernetes API Endpoints List" description: "List the Kubernetes API server endpoints for this cluster. Please note that it often takes 2-5 minutes before the endpoint is ready after first [creating a new cluster](/docs/api/linode-kubernetes-engine-lke/#kubernetes-cluster-create).\n" provider: linode method: GET path: "/lke/clusters/{clusterId}/api-endpoints" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "The Kubernetes API server endpoints for this cluster.\n" properties: { endpoint: { type: "string" description: "A Kubernetes API server endpoint for this cluster.\n" } } } } 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." } } } }