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

無料クラスターの作成 (V2)

Free Clusterを作成します。現在、Zilliz Cloud では Free Cluster を作成できます。作成可能なクラスター数については、Zilliz Cloud Limits を参照してください。

POST/v2/clusters/createFree
接続エンドポイント

https://api.cloud.zilliz.com

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

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

値の例: Bearer {{TOKEN}}
Acceptstringheader

application/json を使用します。

値の例: application/json
リクエスト・ボディ
clusterNamestring必要

作成するクラスターの名前。

descriptionstring

クラスターの説明。

値の例: Production vector search cluster
projectIdstring必要

クラスターが属するプロジェクトの ID。

値の例: proj-xxxxxxxxxxxxxxxxxxxx
レスポンス

作成されたクラスターの詳細情報を返します。

codeinteger

レスポンスコード。

dataobject

レスポンスペイロード。

clusterIdstring

作成されたクラスターの ID。

usernamestring

クラスター管理ユーザーの名前。

passwordstring

クラスター管理ユーザーのパスワード。このパスワードは再表示されません。必ず控えて安全に保管してください。

promptstring

返されたプロンプトメッセージ。

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

codeinteger

レスポンスコード。

messagestring

エラーメッセージ。

Successjson
{
"code": 0,
"data": {
"clusterId": "inxx-xxxxxxxxxxxxxxx",
"username": "db_xxxxxxxx",
"password": "*************",
"prompt": "successfully submitted, cluster is being created. You can access data about the creation progress and status of your cluster by DescribeCluster API. Once the cluster status is RUNNING, you may access your vector database using the SDK with the admin account and the initial password you specified."
}
}
Ctrl I