Update configuration group#
データベース設定グループのパラメータ値を更新します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://database.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://database.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
PUT
/v1.0/{accountId}/configurations/{configId}
HTTPステータスコード#
正常時:202
エラー時:400, 401, 403, 404, 405, 413, 422, 500, 501, 503
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
accountId | path | string | 必須 | データベース仮想サーバのアカウントID |
configId | path | string | 必須 | データベース設定グループのID configIdには、configuration IDを指定してください。 |
configuration | body | object | 必須 | データベース設定オブジェクト |
values | body | string | 必須 | データベース設定パラメータのパラメータ名と値のペアのリスト |
description | body | string | 必須 | 更新するデータベース設定グループの説明 |
name | body | string | 必須 | 更新するデータベース設定グループの名前 |
リクエスト例#
{ "configuration": { "values": { "bonjour_name": "tempest-name", "autovacuum_analyze_threshold": 10, "authentication_timeout": "300", "bonjour": true, "autovacuum_freeze_max_age": 20, "array_nulls": true }, "name": "new_name", "description": "New description" } }