Description

セキュリティグループルールの詳細情報を取得します。

Request URL

Network API

GET /v2.0/security-group-rules/{securitygroupruleid}

Request Json

This operation does not accept a request body.

Request Parameters

Parameter Value Style Description
X-Auth-Token トークン header トークンの情報を指定します。
トークンの発行方法は、トークン発行 にてご確認ください。
securitygroupruleid セキュリティグループルールID path セキュリティグループルールIDを指定します。
セキュリティグループルールIDの確認方法は、セキュリティグループ ルール一覧取得 を実行の上、レスポンス結果から対象セキュリティグループルールのセキュリティグループルールIDをご確認ください。
fields
(Optional)
フィールド名 query レスポンス内容を特定のフィールドのみにフィルターしたい場合に利用します。
レスポンス結果で得たいフィールド名を指定します。
複数指定する場合は、以下のように指定します。
例 fields[]=フィールド名&fields[]=フィールド名

Response Code

Success

200

Example

Request

curl -X GET \
-H "Accept: application/json" \
-H "X-Auth-Token: トークン" \
https://networking.c3j1.conoha.io/v2.0/security-group-rules/セキュリティグループルールID

Response

{
	"security_group_rule": {
		"id": "セキュリティグループルールID",
		"tenant_id": "テナントID",
		"security_group_id": "セキュリティグループID",
		"ethertype": "IPv4",
		"direction": "ingress",
		"protocol": null,
		"port_range_min": null,
		"port_range_max": null,
		"remote_ip_prefix": null,
		"remote_group_id": "セキュリティグループID",
		"project_id": "テナントID"
	}
}

ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。