跳到主要内容

查看集群详情

Describes a cluster in detail.

GET
/v1/clusters/{CLUSTER_ID}
Base URL

该 API 的 Base URL 格式如下:

https://controller.api.${CLOUD_REGION}.zilliz.com.cn

📘说明
export CLOUD_REGION="ali-cn-hangzhou"
export BASE_URL="https://controller.api.${CLOUD_REGION}.zilliz.com.cn"
参数
Authorizationstringheaderrequired

认证令牌,应为具备适当权限的 API 密钥。

示例值:Bearer {{TOKEN}}
CLUSTER_IDstringpathrequired

The ID of the cluster.

示例值:inxx-xxxxxxxxxxxxxxx
export TOKEN="YOUR_API_KEY"
export CLUSTER_ID="inxx-xxxxxxxxxxxxxxx"

curl --request GET \
--url "${BASE_URL}/v1/clusters/${CLUSTER_ID}" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json"
响应200 - application/json

A success response.

codeinteger

响应码。

dataobject

响应载荷,包含集群详情。

clusterIdstring

集群的 ID。

clusterNamestring

集群的名称。

descriptionstring

集群的描述。

regionIdstring

集群的地域 ID。

clusterTypestring

集群的 CU 类型。

planstring

集群所属的订阅计划。

cuSizeinteger

集群的 CU 大小。

statusstring

集群的状态。

connectAddressstring

集群的公网地址。你可以从公网连接到集群。

privateLinkAddressstring

集群的私网地址。你可以设置私有连接,使你的 VPS 同属于同一云区域的用户可以访问你的集群。

createTimestring

集群的创建时间。

storageSizeinteger<sint64>

集群的存储大小。

snapshotNumberinteger

集群创建的快照数量。

createProgressinteger

集群创建进度。

取值范围:0≤ 100
projectIdstring

集群所在项目的 ID。

Returns an error message.

codeinteger

响应码。

messagestring

错误描述。

{
"code": 200,
"data": {
"clusterId": "inxx-xxxxxxxxxxxxxxx",
"clusterName": "Cluster-02",
"description": "",
"regionId": "gcp-us-west1",
"clusterType": "Performance-optimized",
"plan": "Standard",
"cuSize": 1,
"status": "RUNNING",
"connectAddress": "https://inxx-xxxxxxxxxxxxxxx.gcp-us-west1.vectordb.zillizcloud.com:19530",
"privateLinkAddress": "",
"createTime": "2024-07-22T07:43:04Z",
"storageSize": 0,
"snapshotNumber": 0,
"createProgress": 100,
"projectId": "proj-xxxxxxxxxxxxxxxxxxxxxx"
}
}