サーバー操作(起動/停止/再起動/強制停止)
Description
作成済みサーバーに対して起動・停止・再起動・強制停止の操作をします。
Request URL
Compute API POST /v2.1/servers/{serverid}/action
Request Json
・サーバー起動の場合
{ "os-start": null }
・サーバー停止の場合
{ "os-stop": null }
・サーバー再起動の場合
{ "reboot": { "type": "SOFT" } }
・サーバー強制停止の場合
{ "os-stop": { "force_shutdown": true } }
Request Parameters
Parameter | Value | Style | Description |
---|---|---|---|
X-Auth-Token | トークン | header | トークンの情報を指定します。トークンの発行方法は、トークン発行 にてご確認ください。 |
Content-Type | application/json | header | データの形式(メディアタイプ)を指定します。 |
serverid | サーバーID | path | サーバーIDを指定します。サーバーIDの確認方法は、サーバー一覧取得 を実行の上、レスポンス結果から対象VPSのサーバーIDをご確認ください。 |
Response Code
Success
202
Example
Request
curl -X POST \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "X-Auth-Token: トークン" \ -d '{"reboot": {"type": "SOFT"}}' \ https://compute.c3j1.conoha.io/v2.1/servers/サーバーID/action
Response
There is no response body for this operation.
ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。