List snapshots#
スナップショットを一覧表示します。
APIエンドポイント#
リージョン | APIエンドポイント |
---|---|
東日本リージョン3の場合 | https://filestorage.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
GET
/v1/archive/{project_id}/snapshots
HTTPステータスコード#
正常時:200
エラー時:401, 403, 404, 500
リクエストパラメータの説明#
名前 | In | Type | デフォルト値 /必須指定 |
説明 |
---|---|---|---|---|
project_id | path | string | 必須 | プロジェクトID |
レスポンスボディ(正常系)の説明#
名前 | Type | 説明 |
---|---|---|
snapshots | array | スナップショットオブジェクトの配列 |
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
レスポンス例#
レスポンスボディ
{ "snapshots": [ { "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" }, { "created_at": "2021-05-24T04:10:54Z", "description": "snapshot_test", "id": "dac2de23-ea21-48bd-975a-71e9a5192a7e", "name": "snapshot_test_ARC004_1", "project_id": "948ab26d2e7140f18852b6b2f26369c4", "size_gb": 0.001, "storage_id": "bd8ed801-a25a-4381-8673-c2034667c623" } ] }