スタティックルート情報一覧取得(FW+LBベストエフォートタイプ)

API情報
API種別 メソッド URI 対象 名称 実行
設定 GET /:GisServiceCode/best-effort-fw-lbs/:IlbServiceCode/static-routes.json FW+LBベストエフォートタイプ スタティックルート情報一覧取得(FW+LBベストエフォートタイプ) 同期
  • 指定されたFW+LB ベストエフォートタイプのスタティックルート情報一覧を取得します


リクエストパラメータ

パラメータ 必須 意味
URL GisServiceCode P2契約のサービスコード gis########

IlbServiceCode FW+LB ベストエフォートタイプのサービスコード ilb########
レスポンス
フィールド タイプ 意味
StaticRouteList Array スタティックルート情報 オブジェクトの配列
StaticRouteList.StaticRouteId String スタティックルートID 数字
StaticRouteList.Destination String 宛先ネットワークアドレス IPv4アドレス/マスク長
StaticRouteList.Gateway String ゲートウェイアドレス IPv4アドレス
StaticRouteList.ServiceCode String インターフェイス ivl########
エラーコード
  • このAPIに関する個別エラーはありません。
  • 共通エラーコードはエラーレスポンスを参照して下さい


制限
  • 特になし


サンプル

リクエストボディ

無し 

レスポンス (JSON)

{
    "RequestId": "xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx",
    "StaticRouteList": [
        {
            "StaticRouteId": "1",
            "Destination": "192.0.3.0/24",
            "Gateway": "192.0.2.254",
            "ServiceCode": "ivl#######3"
        },
        {
            "StaticRouteId": "2",
            "Destination": "192.0.4.0/24",
            "Gateway": "192.0.2.254",
            "ServiceCode": "ivl#######3"
        }
    ]
}