List Kubernetes Clusters
clusters_list_kubernetes(
organization_id = NULL,
organization_slug = NULL,
raw_cluster_slug = NULL,
exclude_inactive_orgs = NULL,
limit = NULL,
page_num = NULL,
order = NULL,
order_dir = NULL
)
An array containing the following fields:
integer, The ID of this cluster.
string, The id of this cluster's organization.
string, The name of this cluster's organization.
string, The slug of this cluster's organization.
string, The slug of this cluster's raw configuration.
boolean, Whether this cluster has a custom partition configuration.
array, An array containing the following fields:
clusterPartitionId integer, The ID of this cluster partition.
name string, The name of the cluster partition.
labels array, Labels associated with this partition.
instanceConfigs array, The instances configured for this cluster partition.
defaultInstanceConfigId integer, The id of the InstanceConfig that is the default for this partition.
boolean, Whether this cluster needs a NAT gateway or not.
integer optional. The ID of this cluster's organization. Cannot be used along with the organization slug.
string optional. The slug of this cluster's organization. Cannot be used along with the organization ID.
string optional. The slug of this cluster's raw configuration.
boolean optional. When true, excludes KubeClusters associated with inactive orgs. Defaults to false.
integer optional. Number of results to return. Defaults to its maximum of 50.
integer optional. Page number of the results to return. Defaults to the first page, 1.
string optional. The field on which to order the result set. Defaults to organization_id. Must be one of: organization_id, created_at.
string optional. Direction in which to sort, either asc (ascending) or desc (descending) defaulting to asc.