Enable root user#
データベース仮想サーバのrootユーザーを有効にします。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
西日本リージョン3の場合 | https://database.jp-west-3.cloud.global.fujitsu.com |
東日本リージョン3の場合 | https://database.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
POST
/v1.0/{accountId}/instances/{instanceId}/root
HTTPステータスコード#
正常時:200
エラー時:400,401,403,404,405,413,422,500,501,503
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
Description |
---|---|---|---|---|
accountId | path | string | 必須 | データベース仮想サーバのアカウントID |
instanceId | path | string | 必須 | データベース仮想サーバのID |
password | body | string | 任意 | rootユーザーのパスワード |
レスポンスボディ(正常系)の説明#
名前 | Type | Description |
---|---|---|
user | object | ユーザーオブジェクト |
name | string | rootユーザーの名前 |
password | string | rootユーザーのパスワード |
リクエスト例#
{ "password": "tempest-1801651629" }
レスポンス例#
{ "user": { "password": "tempest-1801651629", "name": "postgres" } }