Skip to main content
본 한국어 번역은 사용자 편의를 위해 제공되는 기계 번역입니다. 영어 버전과 한국어 버전이 서로 어긋나는 경우에는 언제나 영어 버전이 우선합니다.

List the clusters for a cloud

기여자

GET /accounts/{account_id}/topology/v1/clouds/{cloud_id}/clusters

Returns a JSON array of all matching resources in the collection. If individual fields are specified in the request, the items JSON array will contain the fields requested for each matching resource in the order specified.

Parameters

Name Type In Required Description

account_id

string

path

True

ID of the containing account resource

  • example: {{.Account}}

cloud_id

string

path

True

ID of the containing cloud resource

include

string

query

False

Indicates which fields should be returned when listing a collection.

URL examples: "include=id", "include=id,name"

OpenAPI examples: "id"

  • example: id,name,managedState

limit

string

query

False

Indicates the maximum number of resources to return when listing a collection.

URL examples: "limit=2"

OpenAPI examples: "2"

filter

string

query

False

Indicates which fields should be matched in order to return a resource when listing a collection.

Supported operators are:

  • eq - Equality

  • lt/gt - Less than/Greater than

  • lte/gte - Less than or equals to/Greater than or equals to

URL example: "filter=field%20eq%20%27value%27"

OpenAPI examples: "field eq 'value'"

Response

Status: 200, Returns a JSON array of all matching resources in the collection. If individual fields are specified in the request, the items JSON array will contain the fields requested for each matching resource in the order specified.
Name Type Required Description

items

array[Any of: cluster_1.7_get_response_body, array[]]

True

metadata

type_astra_metadata_list

True

Example response
{
  "type": "application/astra-clusters",
  "version": "1.7",
  "items": [
    [
      "0f284377-e5dc-4dcd-bacd-3197f2b8a347",
      "GKE-21",
      "managed"
    ],
    [
      "04dc80fa-d1d8-4850-a49f-3b70d0ec1369",
      "GKE-22",
      "unmanaged"
    ]
  ],
  "metadata": {
    "labels": [],
    "creationTimestamp": "2022-10-06T20:58:16.305662Z",
    "modificationTimestamp": "2022-10-06T20:58:16.305662Z",
    "createdBy": "8f84cf09-8036-51e4-b579-bd30cb07b269"
  }
}

Response

Status: 401, Unauthorized
Name Type Required Description

type

string

True

title

string

True

detail

string

True

status

string

True

correlationID

string

False

Example response
{
  "type": "https://astra.netapp.io/problems/3",
  "title": "Missing bearer token",
  "detail": "The request is missing the required bearer token.",
  "status": "401"
}

Response

Status: 400, Bad request
Name Type Required Description

type

string

True

title

string

True

detail

string

True

status

string

True

correlationID

string

False

invalidParams

array[invalidParams]

False

List of invalid query parameters

Example response
{
  "type": "https://astra.netapp.io/problems/5",
  "title": "Invalid query parameters",
  "detail": "The supplied query parameters are invalid.",
  "status": "400"
}

Response

Status: 403, Forbidden
Name Type Required Description

type

string

True

title

string

True

detail

string

True

status

string

True

correlationID

string

False

Example response
{
  "type": "https://astra.netapp.io/problems/11",
  "title": "Operation not permitted",
  "detail": "The requested operation isn't permitted.",
  "status": "403"
}

Error

Status: 404, Not found
Name Type Required Description

type

string

True

title

string

True

detail

string

True

status

string

True

correlationID

string

False

Example error response
{
  "type": "https://astra.netapp.io/problems/2",
  "title": "Collection not found",
  "detail": "The collection specified in the request URI wasn't found.",
  "status": "404"
}

Definitions

See Definitions

additionalDetails

type_astra_stateDetail

Name Type Required Description

type

string

True

title

string

True

detail

string

True

additionalDetails

additionalDetails

False

type_astra_label

Name Type Required Description

name

string

True

value

string

True

type_astra_metadata_update

Client and service-specified metadata associated with the resource. Defined values are:

  • Conforms to the Astra Metadata Schema If not specified on create, a metadata object will be created with no labels. If not specified on update, the metadata object's labels, creationTimestamp and createdBy, will be preserved without modification.

Name Type Required Description

labels

array[type_astra_label]

False

creationTimestamp

string

False

modificationTimestamp

string

False

createdBy

string

False

modifiedBy

string

False

cluster_1.7_get_response_body

Name Type Required Description

type

string

True

Media type of the resource. Defined values are:

  • "application/astra-cluster"

version

string

True

Version of the resource. Defined values are:

  • "1.0"

  • "1.1"

  • "1.2"

  • "1.3"

  • "1.4"

  • "1.5"

  • "1.6"

  • "1.7"

id

string

True

Globally unique identifier of the resource. Defined values are:

  • Conforms to the UUIDv4 Schema

name

string

True

JSON string containing a name for the cluster. If not specified, the Kubernetes name of the cluster will be used. Defined values are:

  • Minimum length: 1

  • Maximum length: 63

  • This string is internally validated to prevent XSS, Unicode, directory traversal, and SQL-injection attacks

state

string

True

JSON string containing a value indicating the operational state of the cluster. Defined values are:

  • "pending" - The cluster is scheduled for discovery

  • "discovering" - The cluster is in the process of being discovered

  • "provisioning" - The cluster is in the process of being provisioned

  • "running" - The cluster is running normally

  • "failed" - The cluster is in a permanent failure state

  • "removed" - The cluster is not currently accessible

  • "unknown" - The cluster state cannot be determined

stateUnready

array[string]

True

JSON array of JSON strings, each indicating a reason why the cluster is unable to transition to "running" state, when there are issues while in "running" state, or why it has transitioned to "failed" or "removed" state. Defined values are:

  • Minimum length: 1

  • Maximum length: 127

managedState

string

True

JSON string containing a value indicating the management state of the cluster. Defined values are:

  • "pending" - The cluster is scheduled to be discovered or added

  • "ineligible" - The cluster is in "running" state, is not under management, and is not eligible for management. The reasons for this ineligibility are provided in the unready key value

  • "deleting" - The cluster is in the process of being deleted

  • "unmanaged" - The cluster is in "running" or "failed" state, is not under management, and is eligible for management

  • "managing" - The cluster is in "running" state and is in the process of being managed

  • "managed" - The cluster is in "running", "failed", or "removed" state and is under management

managedStateDetails

array[type_astra_stateDetail]

False

JSON array of JSON objects which lists additional details about the current state, including why the current state was reached. If no details are available, this array will be empty. Defined values are:

  • Minimum Items: 0

protectionState

string

True

JSON string containing a value indicating the protection state of the cluster. Defined values are:

  • "full" - The clusters default storage class supports snapshots

  • "partial" - The cluster has only storageClasses that do not support snapshots

  • "atRisk" - The default storage class of the cluster does not support snapshots

protectionStateDetails

array[type_astra_stateDetail]

True

JSON array of JSON objects which lists additional details about the current protection state, including why the current state was reached. If no details are available, this array will be empty. Defined values are:

  • Minimum Items: 0

restoreTargetSupported

string

False

JSON string containing a value indicating the ability of the cluster to be a target of application data management operations. Defined values are:

  • "true" - Cluster is an eligible target for app data management operations.

  • "false" - Cluster is not an eligible target for app data management operations.

snapshotSupported

string

False

JSON string containing a value indicating the ability of the cluster to perform application data management backup-like operations. Defined values are:

  • "true" - Cluster is eligible to perform app data management operations.

  • "false" - Cluster is not eligible to perform app data management operations.

managedStateUnready

array[string]

True

JSON array of JSON strings, each indicating a reason why the cluster is ineligible to be managed, or that the cluster is managed but non-fatal errors were encountered while managing the cluster. Defined values are:

  • Minimum length: 1

  • Maximum length: 127

managedTimestamp

string

False

JSON string containing the timestamp indicating when the cluster was brought under management. Defined values are:

  • Conforms to the ISO-8601 Date Time Schema This key is only returned when a cluster has a managedState of "managed".

tridentVersion

string

False

JSON string containing the version of Trident installed on the cluster. Defined values are:

  • Conforms to the Software Version Schema

acpVersion

string

False

JSON string containing the version of Astra Control Provisioner installed on the cluster. Defined values are:

  • Conforms to the Software Version Schema

tridentManagedState

string

False

JSON string containing one of a set of enumerated values indicating the management state of Trident on this cluster. Defined values are:

  • "managed" - Trident instance on the cluster is managed by Astra

  • "unmanaged" - Trident instance on the cluster is not managed by Astra

tridentManagedStateDesired

string

False

JSON string containing a value indicating the desired management state for Trident. Defined values are:

  • "managed" - Manage Trident on this cluster

  • "unmanaged" - Do not manage Trident on this cluster

tridentManagedStateDetails

array[type_astra_stateDetail]

False

JSON array of JSON objects that lists additional details about why the state transitioned to "managed" or "unmanaged".
If no details are available, this array will be empty.

  • Minimum items: 0

tridentManagedStateAllowed

array[string]

False

States that can be requested in a given tridentManagedState. The following states can be requested in each defined state:

  • "managed": "managed"

  • "unmanaged": "unmanaged"

inUse

string

True

JSON string containing a value indicating if the cluster has any managed applications and therefore cannot be deleted. Defined values are:

  • "false" - The cluster is not managed or is managed but has no managed applications associated with it

  • "true" - The cluster is managed and has managed applications associated with it

accHost

string

False

JSON string that indicates that this cluster hosts the instance of Astra Control Center that is currently being accessed. Defined values are:

  • "true" - This cluster is hosting the instance of Astra Control Center that is currently being accessed.

clusterType

string

True

JSON string containing a value indicating the type of cluster. Defined values are:

  • "gke" - Kubernetes hosted on Google Kubernetes Engine

  • "aks" - Kubernetes hosted on Microsoft Azure Kubernetes Service

  • "eks" - Kubernetes hosted on Amazon Elastic Kubernetes Service

  • "rke" - The cluster is of type Rancher

  • "tanzu" -The cluster is of type Tanzu Kubernetes Grid

  • "openshift" - The cluster is of type OpenShift

  • "anthos" - The cluster is of type GKE Anthos

  • "kubernetes" - The cluster is generic Kubernetes

clusterVersion

string

False

JSON string containing a value indicating the semantic versioning representation of the cluster environment. For Kubernetes clusters, this is the Kubernetes version. Defined values are:

  • Minimum length: 1

  • Maximum length: 31

clusterVersionString

string

False

JSON string containing a value indicating the extended versioning information for the cluster environment. For Kubernetes clusters, this is the full Kubernetes version. Defined values are:

  • Minimum length: 1

  • Maximum length: 31

clusterCreationTimestamp

string

False

JSON string containing the timestamp indicating when the cluster was originally created. Defined values are:

  • Conforms to the ISO-8601 Date Time Schema

namespaces

array[string]

False

JSON array of JSON strings, each indicating a namespace within the cluster. Defined values are:

  • Minimum length: 1

  • Maximum length: 253

defaultStorageClass

string

False

JSON string containing a storage class ID that corresponds to the default storage class set in Kubernetes. Defined values are:

  • Conforms to the Astra Identifier Schema

cloudID

string

True

JSON string containing a value indicating the ID of the cloud the cluster is running on. Defined values are:

  • Conforms to the Astra Identifier Schema

credentialID

string

False

JSON string containing a value indicating the ID of the credential that contains the kubeconfig file for the cluster. Defined values are:

  • Conforms to the Astra Identifier Schema If privateRouteID and connectorCapabilities with the connectorV2 option are provided, credentialID is optional. If they are not provided, credentialID is required, otherwise, an error is generated. If credentialID and a relay capable connector is provided, an error is generated.

location

string

False

JSON string containing a value provided by the cloud that the cluster is running on, indicating the cloud-specific location of the cluster. Defined values are:

  • Minimum length: 1

  • Maximum length: 63

isMultizonal

string

False

JSON string containing a value provided by the cloud the cluster is running on, indicating whether the cluster spans two or more availability zones. Defined values are:

  • "true" - The cluster spans two or more availability zones

  • "false" - The cluster is wholly located within a single availability zone

privateRouteID

string

False

JSON string containing the location ID for private clusters.

  • Minimum length: 1

  • Maximum length: 255

connectorCapabilities

array[string]

False

Capabilities of the connector that is associated with this cluster. Optional for backwards compatibility. If not present, proxy is the assumed capability.

apiServiceID

string

False

JSON string containing the UUID from the Kubernetes (k8s) API service object. Used to uniquely identify a cluster.

metadata

type_astra_metadata_update

True

Client and service-specified metadata associated with the resource. Defined values are:

  • Conforms to the Astra Metadata Schema If not specified on create, a metadata object will be created with no labels. If not specified on update, the metadata object's labels, creationTimestamp and createdBy, will be preserved without modification.

type_astra_metadata_list

Name Type Required Description

continue

string

False

count

number

False

labels

array[type_astra_label]

False

creationTimestamp

string

False

modificationTimestamp

string

False

createdBy

string

False

modifiedBy

string

False

invalidParams

Name Type Required Description

name

string

True

Name of the invalid query parameter

reason

string

True

Reason why the query parameter is invalid