スタティックルート情報一覧取得(ファイアウォール)
API情報
API種別 | メソッド | URI | 対象 | 名称 | 実行 |
---|---|---|---|---|---|
設定 | GET | /:GisServiceCode/firewalls/:IfwServiceCode/static-routes.json | ファイアウォール | スタティックルート情報一覧取得(ファイアウォール) | 同期 |
- 指定したファイアウォールのスタティックルート一覧を取得します
リクエストパラメータ
パラメータ | 必須 | 意味 | 値 | |
---|---|---|---|---|
URL | GisServiceCode | ○ | P2契約のサービスコード | gis######## |
IfwServiceCode | ○ | ファイアウォールのサービスコード | ifw######## |
レスポンス
フィールド | タイプ | 意味 | 値 |
---|---|---|---|
StaticRouteList | Array | スタティックルート情報 | オブジェクトの配列 |
StaticRouteList.StaticRouteId | String | スタティックルートID | 数字 |
StaticRouteList.Destination | String | 宛先ネットワークアドレス | IPv4アドレス/マスク長 |
StaticRouteList.Gateway | String | ゲートウェイアドレス | IPv4アドレス |
StaticRouteList.ServiceCode | String | ゲートウェイが接続されているネットワークのサービスコード | ivl######## |
制限
- 特になし
サンプル
リクエストボディ
無し
レスポンス (JSON)
{ "RequestId": "xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx", "StaticRouteList": [ { "StaticRouteId": "1", "Destination": "192.0.3.0/24", "Gateway": "192.0.2.254", "ServiceCode": "ivl########" }, { "StaticRouteId": "2", "Destination": "192.0.4.0/24", "Gateway": "192.0.2.254", "ServiceCode": "ivl########" } ] }