List servers (1)
Method | URI | Description |
---|---|---|
GET | /v2/{tenant_id}/servers{?changessince,image,flavor,name,status,host} | すべての仮想サーバのID、名前、リンクを一覧表示します。 |
Normal response codes: 200, 203
Request
下表は、サーバ一覧取得リクエストのURIパラメーターの一覧です。
Name | Type | Description |
---|---|---|
{tenant_id} | UUID | プロジェクトID |
下表は、サーバ一覧取得リクエストのクエリパラメーターの一覧です。
Name | Type | Description |
---|---|---|
changes-since | DateTime
(Optional) |
サーバの前回の状態の変更日時 |
image | AnyURI
(Optional) |
イメージ名 (URL形式) |
flavor | AnyURI
(Optional) |
フレーバー名 (URL形式) |
name | String
(Optional) |
サーバ名 (文字列) |
status | Server
Status (Optional) |
"ACTIVE"などでフィルタリングを行える、サーバのステータス値 |
host | String
(Optional) |
ホスト名 (文字列) |
Response
Example. List servers: JSON response
{
"servers": [
{
"id": "616fb98f-46ca-475e-917e-2563e5a8cd19",
"links": [
{
"href": "http://openstack.example.com/v2/openstack/servers/616fb98f-46ca-475e-917e-2563e5a8cd19",
"rel": "self"
},
{
"href": "http://openstack.example.com/openstack/servers/616fb98f-46ca-475e-917e-2563e5a8cd19",
"rel": "bookmark"
}
],
"name": "new-server-test"
}
]
}