Storage Integration の詳細を取得 (V2)
この操作は、バケットストレージ統合の詳細を取得します。プロジェクトスコープは integration ID から解決されます。
GET/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 GET \
--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
dataundefined
ストレージ統合の詳細を返します。
失敗レスポンス。
codeinteger
レスポンスコード。
値の例: 1800
messagestring
エラーメッセージ。
値の例: User hasn't authenticated
Failurejson
{
"code": 1800,
"message": "User hasn't authenticated"
}