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

On-Demand Compute (V2) の詳細を取得

Describe the On-Demand Compute status for a project region.

GET/v2/on-demand-compute
接続エンドポイント

https://api.cloud.zilliz.com

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

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

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

プロジェクトの ID。

値の例: proj-xxx
regionIdstringquery必要

リージョンの ID。

値の例: aws-us-west-2
bash
export TOKEN="YOUR_API_KEY"

curl --request GET \
--url "${BASE_URL}/v2/on-demand-compute?projectId=proj-xxx&regionId=aws-us-west-2" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Request-Timeout: 5" \
--header "Content-Type: application/json"
レスポンス

On-Demand Compute のステータスを返します。

成功レスポンス

codeinteger

レスポンスコード。

値の例: 0
dataobject

On-Demand Compute のステータスを含むレスポンスペイロード。

projectIdstring

プロジェクトの ID。

regionIdstring

リージョンの ID。

statusstring

On-Demand Compute のステータス。

失敗レスポンス。

codeinteger

レスポンスコード。

messagestring

エラーメッセージ。

Ctrl I