Show snapshot#

指定したスナップショットを表示します。

APIエンドポイント#

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

HTTPメソッドとURI#

GET

/v1/iscsi/{project_id}/snapshots/{snapshot_id}

HTTPステータスコード#

正常時:200

エラー時:401, 403, 404, 500

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

名前 In Type デフォルト値
/必須指定
Description
project_id path string 必須 プロジェクトID
snapshot_id path string 必須 表示するスナップショットのID

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

名前 Type Description
snapshot object スナップショットオブジェクト
created_at string スナップショットの作成日時
description string スナップショットの説明
id string スナップショットID
name string スナップショットの名前
project_id string プロジェクトID
size_gb float スナップショットの容量(GB単位)
storage_id string ストレージID

レスポンス例#

{
    "snapshot": {
        "created_at": "2019-01-30T15:24:55Z",
        "description": "this is my snapshot",
        "id": "5c84ed06-470e-475f-a6b5-f3c8770d4114",
        "name": "my_snapshot",
        "project_id": "ff7ea4859b0344afad61f14c04249ee7",
        "size_gb": 1.384,
        "storage_id": "1a5737a0-0249-451b-9397-d4f8351860e5"
    }
}