Show security group#
セキュリティグループの詳細を表示します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://networking.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://networking.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
GET
/v2.0/security-groups/{security_group_id}
HTTPステータスコード#
正常時:200
エラー時:401, 404
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
security_group_id | path | string | 必須 | セキュリティグループID |
verbose | query | boolean | 任意 | 詳細情報の表示有無 |
fields | query | string | 任意 | 一覧表示する属性を指定します。 省略した場合は、すべての属性が表示されます。 複数指定ができます。例えば、 fields=id&fields=name と指定すると、「id」と「name」の属性だけが表示されます。 |
レスポンスボディ(正常系)の説明#
名前 | Type | Description |
---|---|---|
security_group | object | セキュリティグループオブジェクト |
id | string | セキュリティグループID |
tenant_id | string | プロジェクトID |
project_id | string | プロジェクトID |
revision_number | integer | リソースの改訂番号 |
name | string | リソース名 |
description | string | リソースの説明 |
security_group_rules | array | セキュリティグループルールのオブジェクト |
stateful | boolean | セキュリティグループのstateful状態 |
created_at | string | セキュリティグループの生成時間 |
updated_at | string | セキュリティグループの更新時間 |
レスポンス例#
{ "security_group": { "created_at": "2018-09-07T05:33:30Z", "description": "security group for webservers", "id": "cb4fd462-67c4-4ab4-a8a7-f43fac14d9ae", "name": "new-webservers", "project_id": "bc268f48c71f4684bb2f562adaad4313", "revision_number": 1, "security_group_rules": [ { "created_at": "2018-09-07T05:33:30Z", "description": null, "direction": "egress", "ethertype": "IPv4", "id": "b2487d22-95fd-46bf-ba02-65086e739f4e", "port_range_max": null, "port_range_min": null, "project_id": "bc268f48c71f4684bb2f562adaad4313", "protocol": null, "remote_group_id": null, "remote_ip_prefix": null, "revision_number": 1, "security_group_id": "cb4fd462-67c4-4ab4-a8a7-f43fac14d9ae", "tenant_id": "bc268f48c71f4684bb2f562adaad4313", "updated_at": "2018-09-07T05:33:30Z" }, { "created_at": "2018-09-07T05:33:30Z", "description": null, "direction": "egress", "ethertype": "IPv6", "id": "e12937ea-0d8d-492e-9422-ffe4adbbe939", "port_range_max": null, "port_range_min": null, "project_id": "bc268f48c71f4684bb2f562adaad4313", "protocol": null, "remote_group_id": null, "remote_ip_prefix": null, "revision_number": 1, "security_group_id": "cb4fd462-67c4-4ab4-a8a7-f43fac14d9ae", "tenant_id": "bc268f48c71f4684bb2f562adaad4313", "updated_at": "2018-09-07T05:33:30Z" } ], "stateful": false, "tenant_id": "bc268f48c71f4684bb2f562adaad4313", "updated_at": "2018-09-07T05:33:30Z" } }