Show default configuration of instance#

データベース仮想サーバのデフォルトのデータベース設定を一覧表示します。

APIエンドポイント#

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

HTTPメソッドとURI#

GET

/v1.0/{accountId}/instances/{instanceId}/configuration

HTTPステータスコード#

正常時:200

エラー時:400,401,403,404,405,413,422,500,501,503

リクエストパラメータの説明#

名前 In Type デフォルト値
/必須指定
Description
accountId path string 必須 データベース仮想サーバのアカウントID
instanceId path string 必須 データベース仮想サーバのID

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

名前 Type Description
instance object データベース仮想サーバのオブジェクト
configuration object データベース設定オブジェクト
<default configuration> string データベース設定テンプレートの値

レスポンス例#

{
  "instance": {
    "configuration": {
      "wal_level": "minimal",
      "max_stack_depth": "7MB",
      "effective_cache_size": "512MB",
      "update_process_title": "off",
      "archive_mode": "off",
      "shared_buffers": "51MB"
    }
  }
}