List configuration groups#

すべてのデータベース設定グループを一覧表示します。

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}/configurations

HTTPステータスコード#

正常時:200

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

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

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

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

名前 Type Description
configurations array データベース設定オブジェクト
datastore_name string データストアの名前
updated string リソースの最新更新日時
日時の入力形式は以下のISO 8601形式です。
CCYY-MM-DDThh:mm:ss±hh:mm
「±hh:mm」の部分は、UTCからのオフセットで表示されるタイムゾーンです。表示されない場合もあります。
例えば、以下の出力例に、UTCのタイムゾーンが想定されます。
2015-08-27T09:49:58-05:00
name string データベース設定グループの名前
created string リソースの作成日時
日時の入力形式は以下のISO 8601形式です。
CCYY-MM-DDThh:mm:ss±hh:mm
例:2015-08-27T09:49:58-05:00
「±hh:mm」の部分は、タイムゾーンにUTCからのオフセットがある場合だけ表示されます。上記の例は、オフセットの値が「-05:00」です。
datastore_version_name string データストアのバージョン名
id string データベース設定グループのID
datastore_version_id string データストアバージョンのUUID
description string 作成するデータベース設定グループの説明

レスポンス例#

{
  "configurations": [
     {
         "datastore_name": "postgresql",
         "updated": "2017-10-17T02:26:33",
         "name": "ConfGroupxx",
         "created": "2017-10-03T04:24:35",
         "datastore_version_name": "9.4",
         "id": "0ef4b659-e8e5-426c-b75f-a425e9983b24",
         "datastore_version_id": "e5b89db6-e530-4b1e-a76c-590ef408b7f9",
         "description": null
     },
     {
         "datastore_name": "postgresql",
         "updated": "2017-09-28T00:35:01",
         "name": "ConfGoup02",
         "created": "2017-09-28T00:35:01",
         "datastore_version_name": "9.4",
         "id": "2ed5bf6e-3ca5-4a58-8339-bd8ed6376a3f",
         "datastore_version_id": "e5b89db6-e530-4b1e-a76c-590ef408b7f9",
         "description": null
     },
     {
         "datastore_name": "mysql",
         "updated": "2017-10-12T01:27:17",
         "name": "ConfigGroupMySQL",
         "created": "2017-10-12T01:27:17",
         "datastore_version_name": "5.7",
         "id": "92f021dc-69f3-4b2f-924b-fed3f7e7f2de",
         "datastore_version_id": "9baaecba-2d28-4f3d-bc7d-5ec53c5a4208",
         "description": null
     },
     {
         "datastore_name": "postgresql",
         "updated": "2017-10-17T02:13:02",
         "name": "ConfGroup05",
         "created": "2017-10-17T02:13:02",
         "datastore_version_name": "9.4",
         "id": "bc495f59-6472-4cce-b89e-ee753e417ffc",
         "datastore_version_id": "e5b89db6-e530-4b1e-a76c-590ef408b7f9",
         "description": null
     }
  ]
}