Show datastore version detail#

データストアのバージョン詳細を表示します。

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}/datastores/{datastore}/versions/{datastore_version}

HTTPステータスコード#

正常時:200

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

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

名前 In Type デフォルト値
/必須指定
Description
accountId path string 必須 データベース仮想サーバのアカウントID
datastore path string 必須 データストアのID
「postgresql」だけが指定可能です。
detastore_version path string 必須 データストアのバージョン
「version」またはversionのIDだけが指定可能です。

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

名前 Type Description
version object データストアのバージョンオブジェクト
name string データストアのバージョン 名
links array データストアのバージョンへのリンク情報
links.href string データストアのバージョンへのリンクのhref属性
links.rel string データストアのバージョンへのリンクのrel属性
image string データストアバージョンのイメージID
active boolean データストアのバージョンが利用可能かどうかを表示します。
- 0:利用不可
- 1:利用可能
datastore string データストアのID
packages string データストアバージョンのパッケージ名
id string データベース仮想サーバのID

レスポンス例#

{
  "version": {
    "name": "9.6",
    "links": [
      {
        "href": "https://10.25.177.170:8779/v1.0/ec027cce404343738cdc2add2c3021cb/datastores/versions/b822ed80-67ea-4366-a4b4-9ad5dab06b9a",
        "rel": "self"
      },
      {
        "href": "https://10.25.177.170:8779/datastores/versions/b822ed80-67ea-4366-a4b4-9ad5dab06b9a",
        "rel": "bookmark"
      }
    ],
    "image": "d041cfa3-b120-4862-b6dc-3202cf590e33",
    "active": true,
    "datastore": "e6a71925-a101-49a2-8417-47c7459aea9b",
    "packages": "postgresql",
    "id": "b822ed80-67ea-4366-a4b4-9ad5dab06b9a"
  }
}