Show a snapshot#

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

APIエンドポイント#

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

HTTPメソッドとURI#

GET

/v1/archive/{project_id}/snapshots/{snapshot_id}

HTTPステータスコード#

正常時:200

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

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

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

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

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

リクエスト例#

リクエスト

GET /v1/archive/948ab26d2e7140f18852b6b2f26369c4/snapshots/67029107-315a-498c-99c0-6b1381402974

レスポンス例#

レスポンスボディ

{
    "snapshot": {
      "created_at": "2021-05-24T06:16:00Z",
      "description": "snapshot_test",
      "id": "67029107-315a-498c-99c0-6b1381402974",
      "name": "snapshot_test_ARC004_2",
      "project_id": "948ab26d2e7140f18852b6b2f26369c4",
      "size_gb": 0.044,
      "storage_id": "bd8ed801-a25a-4381-8673-c2034667c623"
    }
}