Storage Integration を削除する (V2)
この操作はバケットストレージ統合を削除します。プロジェクトスコープは統合IDから解決されます。
DELETE/v2/storageIntegrations/{integrationId}
https://api.cloud.zilliz.com
shell
export BASE_URL="https://api.cloud.zilliz.com"
パラメータ
Authorizationstringheader必要
認証トークンは、適切な権限を持つAPI keyである必要があります。
値の例: Bearer {{TOKEN}}
integrationIdstringpath必要
ストレージ統合のID。
値の例: integ-xxxxxxxxxxxxxxxxxxx
bash
export TOKEN="YOUR_API_KEY"
export integrationId="integ-xxxxxxxxxxxxxxxxxxx"
curl --request DELETE \
--url "${BASE_URL}/v2/storageIntegrations/${integrationId}" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Request-Timeout: 5" \
--header "Content-Type: application/json"
レスポンス200 OK - application/json
削除されたストレージ統合を返します。
成功レスポンス。
codeinteger
レスポンスコード。
値の例: 0
dataobject
削除されたストレージ統合を返します。
integrationIdstring
ストレージ統合のID。
namestring
ストレージ統合の名前。
失敗レスポンス。
codeinteger
レスポンスコード。
値の例: 1800
messagestring
エラーメッセージ。
値の例: User hasn't authenticated
Failurejson
{
"code": 1800,
"message": "User hasn't authenticated"
}