ポリシー情報取得

API情報
API種別メソッドURI対象名称実行
設定GET/:GisServiceCode/firewalls/:IfwServiceCode/policies.jsonファイアウォール

ポリシー情報取得

同期
  • 指定されたファイアウォールのポリシーを取得します


リクエストパラメータ

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

IfwServiceCodeファイアウォールのサービスコードifw########
レスポンス
フィールドタイプ意味
PolicyListObjectポリシー一覧オブジェクトの配列
PolicyList.NameStringポリシーの名前文字列
PolicyList.SourceAddressObjectIdString送信元のアドレスオブジェクトID数字
PolicyList.DestinationAddressObjectIdString宛先のアドレスオブジェクトID数字
PolicyList.ServiceObjectIdStringサービスオブジェクトID数字
PolicyList.ActionStringポリシー動作"ACCEPT", "DROP"
PolicyList.EnabledString有効・無効"Yes", "No"
エラーコード
  • このAPIに関する個別エラーはありません。
  • 共通エラーコードはエラーレスポンスを参照して下さい


制限
  • 特になし


サンプル

リクエストボディ

無し

レスポンス (JSON)

{
    "RequestId": "xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx",
    "PolicyList": [ 
        {
            "Name": "WEB_APPLICATION1",
            "SourceAddressObjectId": "1",
            "DestinationAddressObjectId": "2",
            "ServiceObjectId": "1",
            "Action": "ACCEPT",
            "Enabled": "Yes"
        },
        {
            "Name": "WEB_APPLICATION2",
            "SourceAddressObjectId": "1",
            "DestinationAddressObjectId": "3",
            "ServiceObjectId": "2",
            "Action": "ACCEPT",
            "Enabled": "Yes"
        }
    ]
}