メインコンテンツまでスキップ

グローバルエンドポイントの削除 (V2)

Disbands the Global Cluster endpoint after all secondary clusters have been removed. The remaining primary cluster continues as a regular dedicated cluster.

POST/v2/globalClusters/{globalClusterId}/removeGlobalEndpoint
接続エンドポイント

https://api.cloud.zilliz.com

shell
export BASE_URL="https://api.cloud.zilliz.com"
パラメータ
Authorizationstringheader必要

認証トークンは、適切な権限を持つAPI keyである必要があります。

値の例: Bearer {{TOKEN}}
globalClusterIdstringpath必要

Global Clusterの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"
レスポンス

削除されたGlobal Cluster endpointの情報を返します。

oldGlobalClusterIdstring

削除されたGlobal Cluster endpointのID。

値の例: glo-xxxxxxxxxxxxxxx

エラーメッセージを返します。

codeinteger

レスポンスコード。

値の例: 400
messagestring

エラーメッセージ。

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