跳到主要内容

移除全球端点 (V2)

在所有从集群均已删除后解散全球集群端点。剩余主集群会继续作为普通 Dedicated 集群运行。

POST/v2/globalClusters/{globalClusterId}/removeGlobalEndpoint
连接端点

该 API 的 Base URL 格式如下:

https://api.cloud.zilliz.com

📘说明

控制面接口速率限制为单用户单接口每秒最多 20 个请求。

shell
export BASE_URL="https://api.cloud.zilliz.com"
参数
Authorizationstringheader必填项

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

示例值:Bearer {{TOKEN}}
globalClusterIdstringpath必填项

全球集群 ID。

示例值:glo-xxxxxxxxxxxxxxx
bash
export TOKEN="YOUR_API_KEY"
export globalClusterId="glo-xxxxxxxxxxxxxxx"

curl --request POST \
--url "${BASE_URL}/v2/globalClusters/${globalClusterId}/removeGlobalEndpoint" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Request-Timeout: 5" \
--header "Content-Type: application/json"
响应

返回已移除全球集群端点的信息。

oldGlobalClusterIdstring

已移除全球集群端点的 ID。

示例值:glo-xxxxxxxxxxxxxxx

返回错误消息。

codeinteger

响应码。

示例值:400
messagestring

错误描述。

示例值:Invalid request parameters.
Successjson
{
"oldGlobalClusterId": "glo-xxxxxxxxxxxxxxx"
}
Ctrl I