Create LB#
ロードバランサーを作成します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://nfv.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://nfv.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
POST
/lb/nfv/loadbalancers
HTTPステータスコード#
正常時:202
エラー時:400,404,500
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
loadbalancer | body | object | 必須 | ロードバランサーのオブジェクト |
name | body | string | 必須 | ロードバランサーの名前 プロジェクトの中で一意にする必要があります。 |
router_id | body | uuid | 必須 | ロードバランサーを所属させる仮想ルータのID |
description | body | string | 任意 | ロードバランサーの説明 |
レスポンスボディ(正常系)の説明#
名前 | Type | Description |
---|---|---|
loadbalancer | object | ロードバランサーのオブジェクト |
name | string | ロードバランサーの名前 |
router_id | uuid | ロードバランサーが所属する仮想ルータのID |
id | string | ロードバランサーのID |
description | string | ロードバランサーの説明 |
リクエスト例#
{ "loadbalancer": { "name": "LB01", "description": "description", "router_id": "77d3ea9a-aedf-4197-8c1b-cbd426453802" } }
レスポンス例#
{ "loadbalancer": { "name": "LB01", "router_id": "77d3ea9a-aedf-4197-8c1b-cbd426453802", "id": "1281", "description": "description" } }