Show security group rule#

セキュリティグループルールの詳細を表示します。

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-group-rules/{security_group_rule_id}

HTTPステータスコード#

正常時:200

エラー時:401, 404

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

名前 In Type デフォルト値
/必須指定
Description
security_group_rule_id path string 必須 セキュリティグループルールのID
verbose query boolean 任意 詳細情報の表示有無
fields query string 任意 一覧表示する属性を指定します。
省略した場合は、すべての属性が表示されます。
複数指定ができます。例えば、fields=id&fields=nameと指定すると、「id」と「name」の属性だけが表示されます。

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

名前 Type Description
security_group_rule object セキュリティグループルールオブジェクト
remote_group_id string セキュリティグループルールに関連付けられるリモートグループのUUID
リクエストボディに「remote_group_id」または「remote_ip_prefix」が指定できます。
direction string 測定ルールの適用方向
「ingress」または「egress」です。
protocol string IPプロトコル
以下のうちどれかが表示されます。
- icmpまたは1
- icmpv6または58
- tcpまたは6
- udpまたは17
- 0~142の任意の整数
ethertype string ネットワークトラフィックのIPタイプ
IPv4が表示されます。
CIDRのアドレスはingressとegressのルールに一致する必要があります。
port_range_max integer 最大ポート番号
protocolがTCP、UDP、DCCP、SCTP、UDP-Liteの場合は、port_range_minの値以上の値が必要です。protocolがICMPの場合は、ICMPコードが表示されます。
security_group_id string 関連付けるセキュリティグループのID
tenant_id string プロジェクトのID
project_id string プロジェクトのID
port_range_min integer 最小ポート番号
protocolがTCP、UDP、DCCP、SCTP、UDP-Liteの場合は、port_range_maxの値以下の値が必要です。protocolがICMPの場合は、ICMPタイプが表示されます。
remote_ip_prefix string セキュリティグループルールに関連付けるリモートIPのプレフィックス
[0.0.0.0/0]に指定することで、全通信を許可することが可能です。
revision_number integer リソースの改訂番号
id string セキュリティグループルールのID
description string リソースの説明

レスポンス例#

{
    "security_group_rule": {
        "direction": "egress",
        "ethertype": "IPv6",
        "id": "3c0e45ff-adaf-4124-b083-bf390e5482ff",
        "port_range_max": null,
        "port_range_min": null,
        "protocol": null,
        "remote_group_id": null,
        "remote_ip_prefix": null,
        "revision_number": 1,
        "security_group_id": "85cc3048-abc3-43cc-89b3-377341426ac5",
        "project_id": "e4f50856753b4dc6afee5fa6b9b6c550",
        "tenant_id": "e4f50856753b4dc6afee5fa6b9b6c550"
    }
}