List security groups#

セキュリティグループを一覧表示します。

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

HTTPステータスコード#

正常時:200

エラー時:401

リクエストパラメータの説明#

名前 In Type デフォルト値
/必須指定
Description
fields query string 任意 属性を指定します。
省略した場合は、すべての属性が表示されます。
複数指定ができます。
例えば、「fields=id&fields=name」を指定すると、「id」と「name」の属性だけが表示されます。

レスポンスボディ(正常系)の説明#

名前 Type Description
security_groups array セキュリティグループオブジェクトの一覧
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_groups": [
        {
            "created_at": "2018-05-22T01:28:30Z",
            "description": "Default security group",
            "id": "f101d8c4-dca7-4053-8973-14c2b51daae4",
            "name": "default",
            "project_id": "bc268f48c71f4684bb2f562adaad4313",
            "revision_number": 1,
            "security_group_rules": [
                {
                    "created_at": "2018-05-22T01:28:30Z",
                    "description": null,
                    "direction": "egress",
                    "ethertype": "IPv4",
                    "id": "0c7dadc6-4ee2-4b8b-a5c4-9221efdb028a",
                    "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": "f101d8c4-dca7-4053-8973-14c2b51daae4",
                    "tenant_id": "bc268f48c71f4684bb2f562adaad4313",
                    "updated_at": "2018-05-22T01:28:30Z"
                },
                {
                    "created_at": "2018-05-22T01:28:30Z",
                    "description": null,
                    "direction": "egress",
                    "ethertype": "IPv6",
                    "id": "1072ff40-5586-4f14-843f-2fbd34542280",
                    "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": "f101d8c4-dca7-4053-8973-14c2b51daae4",
                    "tenant_id": "bc268f48c71f4684bb2f562adaad4313",
                    "updated_at": "2018-05-22T01:28:30Z"
                },
                {
                    "created_at": "2018-05-22T01:28:30Z",
                    "description": null,
                    "direction": "ingress",
                    "ethertype": "IPv4",
                    "id": "d7e4dc1b-d2fc-4f08-a182-e91a1281c514",
                    "port_range_max": null,
                    "port_range_min": null,
                    "project_id": "bc268f48c71f4684bb2f562adaad4313",
                    "protocol": null,
                    "remote_group_id": "f101d8c4-dca7-4053-8973-14c2b51daae4",
                    "remote_ip_prefix": null,
                    "revision_number": 1,
                    "security_group_id": "f101d8c4-dca7-4053-8973-14c2b51daae4",
                    "tenant_id": "bc268f48c71f4684bb2f562adaad4313",
                    "updated_at": "2018-05-22T01:28:30Z"
                },
                {
                    "created_at": "2018-05-22T01:28:30Z",
                    "description": null,
                    "direction": "ingress",
                    "ethertype": "IPv6",
                    "id": "f54f9e40-301e-4214-8480-abc676a3af4f",
                    "port_range_max": null,
                    "port_range_min": null,
                    "project_id": "bc268f48c71f4684bb2f562adaad4313",
                    "protocol": null,
                    "remote_group_id": "f101d8c4-dca7-4053-8973-14c2b51daae4",
                    "remote_ip_prefix": null,
                    "revision_number": 1,
                    "security_group_id": "f101d8c4-dca7-4053-8973-14c2b51daae4",
                    "tenant_id": "bc268f48c71f4684bb2f562adaad4313",
                    "updated_at": "2018-05-22T01:28:30Z"
                }
            ],
            "stateful": true,
            "tenant_id": "bc268f48c71f4684bb2f562adaad4313",
            "updated_at": "2018-05-22T01:28:30Z"
        }
    ]
}