List Floating ip pool network#

ベアメタル用のフローティングIPプールを参照し、フローティングIP確保のための情報を取得します。

APIエンドポイント#

リージョン APIエンドポイント
西日本リージョン3の場合 https://baremetal.jp-west-3.cloud.global.fujitsu.com
東日本リージョン3の場合 https://baremetal.jp-east-3.cloud.global.fujitsu.com

HTTPメソッドとURI#

GET

/v1/networking/floatingip-networks

HTTPステータスコード#

正常時:200

エラー時:401, 404, 500

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

名前 Type Description
floatingip_networks object オブジェクト
id string フローティングIPプールのid
name string フローティングIPプールの名前
floating_subnet_id string フローティングIPプールのsubnet id
floating_subnet_name string フローティングIPプールのsubnetの名前
ip_version string フローティングIPプールのcidrのip version
cidr string フローティングIPプールのcidr

レスポンス例#

{
     "floatingip_networks":[
        {
            "id": " xxxxxxxxxxxxx",
            "name": "xxxxxxxxxxxxxx",
            "floating_subnet_id":"xxxxxxxxxxxxxxxxxxxxx",
            "floating_subnet_name":"xxxxxxxxxxxxxxxxxxxxx",
            "ip_version":"xxxxxxxxxxxxxxxxxx",
            "cidr":"xxxxxxxxxxxxxxxxxx",
        },
    ]
}