Compute Pool
Lists compute pools¶
GET/api/v2/compute-pools
Lists the compute pools under the account.
詳細情報をご参照ください
引数、オプション、権限要件、使用ガイドラインに関する詳細情報を表示するには、 SQL コマンドページに移動してください。
クエリパラメーター¶
| パラメーター | 説明 |
|---|---|
| like string | Query parameter to filter the command output by resource name. Uses case-insensitive pattern matching, with support for SQL wildcard characters. |
| startsWith string | Query parameter to filter the command output based on the string of characters that appear at the beginning of the object name. Uses case-sensitive pattern matching. |
| showLimit integer | Query parameter to limit the maximum number of rows returned by a command. |
応答¶
| コード | 説明 |
|---|---|
| 200 | Successful request. |
| 202 | Successfully accepted the request, but it is not completed yet. |
Creates a compute pool¶
POST/api/v2/compute-pools
Creates a compute pool, with standard create modifiers as query parameters. See the Compute Pool component definition for what is required to be provided in the request body.
詳細情報をご参照ください
引数、オプション、権限要件、使用ガイドラインに関する詳細情報を表示するには、 SQL コマンドページに移動してください。
クエリパラメーター¶
| パラメーター | 説明 |
|---|---|
| createMode string | Query parameter allowing support for different modes of resource creation. Possible values include:
|
| initiallySuspended boolean | Specifies whether the compute pool is created initially in the suspended state. |
応答¶
| コード | 説明 |
|---|---|
| 200 | Successful request. |
| 202 |
Fetches a compute pool¶
GET/api/v2/compute-pools/{name}
Fetches a named compute pool. You can get the name of the compute pool from the `/api/v2/compute-pools` GET request.
詳細情報をご参照ください
引数、オプション、権限要件、使用ガイドラインに関する詳細情報を表示するには、 SQL コマンドページに移動してください。
パスパラメータ¶
| パラメーター | 説明 |
|---|---|
| name | Identifier (i.e. name) for the resource. |
応答¶
| コード | 説明 |
|---|---|
| 200 | Successful request. |
| 202 |
Create a (or alter an existing) compute pool¶
Deletes a compute pool¶
DELETE/api/v2/compute-pools/{name}
Deletes a compute pool with the given name. If you enable the `ifExists` parameter, the operation succeeds even if the object does not exist. Otherwise, a 404 failure is returned if the object does not exist.
詳細情報をご参照ください
引数、オプション、権限要件、使用ガイドラインに関する詳細情報を表示するには、 SQL コマンドページに移動してください。
クエリパラメーター¶
| パラメーター | 説明 |
|---|---|
| ifExists boolean | Query parameter that specifies how to handle the request for a resource that does not exist:
|
応答¶
| コード | 説明 |
|---|---|
| 200 | |
| 202 |