Update security group
セキュリティグループを更新します。
URI
/v2.0/security-groups/{security_group_id}
HTTPメソッド
PUT
リクエストパラメタ
キー | 説明 | 型 | 必須/省略可 |
---|---|---|---|
name | セキュリティグループ名 | xsd:string | Optional |
description | セキュリティグループの説明 | xsd:string | Optional |
リクエスト例
{
"security_group": {
"name": "new-webservers",
"description": "security group for webservers"
}
}
レスポンスステータス
ステータスコード | 説明 |
---|---|
200 | Normal response codes |
Bad Request (400) | Error response codes |
Unauthorized (401) | Error response codes |
Not Found (404) | Error response codes |
レスポンスボディ(正常系)
{
"security_group": {
"description": "security group for webservers",
"id": "2076db17-a522-4506-91de-c6dd8e837028",
"name": "new-webservers",
"security_group_rules": [
{
"direction": "egress",
"ethertype": "IPv4",
"id": "38ce2d8e-e8f1-48bd-83c2-d33cb9f50c3d",
"port_range_max": null,
"port_range_min": null,
"protocol": null,
"remote_group_id": null,
"remote_ip_prefix": null,
"security_group_id": "2076db17-a522-4506-91de-c6dd8e837028",
"tenant_id": "e4f50856753b4dc6afee5fa6b9b6c550"
},
{
"direction": "egress",
"ethertype": "IPv6",
"id": "565b9502-12de-4ffd-91e9-68885cff6ae1",
"port_range_max": null,
"port_range_min": null,
"protocol": null,
"remote_group_id": null,
"remote_ip_prefix": null,
"security_group_id": "2076db17-a522-4506-91de-c6dd8e837028",
"tenant_id": "e4f50856753b4dc6afee5fa6b9b6c550"
}
],
"tenant_id": "e4f50856753b4dc6afee5fa6b9b6c550"
}
}
レスポンスボディ(正常系)の説明
要素名 | 説明 |
---|---|
description | セキュリティグループの説明 |
id | セキュリティグループID |
name | セキュリティグループ名 |
tenant_id | プロジェクトID |
security_group_rules | このセキュリティグループと関連付ける通信先のセキュリティグループのID
リクエストボディ部では、remote_group_idまたはremote_ip_prefixを指定できます。 |