サーバーに紐づくセキュリティグループ取得
Description
サーバーに割り当てられているセキュリティグループの情報を取得します。
Request URL
Compute API GET /v2.1/servers/{serverid}/os-security-groups
Request Json
This operation does not accept a request body.
Request Parameters
Parameter | Value | Style | Description |
---|---|---|---|
X-Auth-Token | トークン | header | トークンの情報を指定します。トークンの発行方法は、トークン発行 にてご確認ください。 |
serverid | サーバーID | path | サーバーIDを指定します。サーバーIDの確認方法は、サーバー一覧取得 を実行の上、レスポンス結果から対象VPSのサーバーIDをご確認ください。 |
Response Code
Success
200
Example
Request
curl -X GET \ -H "Accept: application/json" \ -H "X-Auth-Token: トークン" \ https://compute.c3j1.conoha.io/v2.1/servers/サーバーID/os-security-groups
Response
{ "security_groups": [ { "id": "c2bf422b-7c12-4e5c-99cf-11029fc49d19", "description": "Default security group", "name": "default", "tenant_id": "テナントID", "rules": [ { "id": "5e98f39c-203f-451d-9d25-a890b9f841e2", "parent_group_id": "c2bf422b-7c12-4e5c-99cf-11029fc49d19", "ip_protocol": null, "from_port": null, "to_port": null, "group": { "name": "default", "tenant_id": "テナントID" }, "ip_range": {} }, { "id": "c843535f-39c7-405b-b1ab-ed11e7bc8872", "parent_group_id": "c2bf422b-7c12-4e5c-99cf-11029fc49d19", "ip_protocol": null, "from_port": null, "to_port": null, "group": { "name": "default", "tenant_id": "テナントID" }, "ip_range": {} } ] } ] }
ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。