List nfs storages#

アーカイブストレージ(NFS)を一覧表示します。

APIエンドポイント#

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

HTTPメソッドとURI#

GET

/v1/archive/{project_id}/nfs_storages

HTTPステータスコード#

正常時:200

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

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

名前 In Type デフォルト値
/必須指定
説明
project_id path string 必須 プロジェクトID

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

名前 Type 説明
storages array ストレージオブジェクトの配列
created_at string ストレージの作成日時
id string ストレージID
clientmatch array ストレージに接続を許可するIPアドレスの配列
ipv4_address string ストレージのIPアドレス(IPv4)
ipv4_subnet_mask string サブネットマスク
name string ストレージの名前
project_id string プロジェクトID
size_tb integer ストレージの容量(TB単位)
snapshot_space_reserve integer ストレージ容量に対するスナップショット領域の割合(%単位)
snapshot_space_reserve_used float スナップショット領域の使用容量(%単位)
autodelete string スナップショットの自動削除(autodelete)指定(old または new)
subnet_id string サブネットID

リクエスト例#

リクエスト

GET /v1/archive/948ab26d2e7140f18852b6b2f26369c4/nfs_storages

レスポンス例#

レスポンスボディ

{
    "storages": [
      {
        "created_at": "2021-05-17T06:43:58Z",
        "id": "3fa4e1ed-234d-4c55-990c-67ef7f546aaa",
        "clientmatch": [
          "192.168.10.0/24"
        ],
        "ipv4_address": "192.168.10.200",
        "ipv4_subnet_mask": "255.255.255.0",
        "name": "test_0517",
        "project_id": "948ab26d2e7140f18852b6b2f26369c4",
        "size_tb": 1,
        "snapshot_space_reserve": 10,
        "snapshot_space_reserve_used": 0,
        "autodelete": "old",
        "subnet_id": "600787a5-2f81-4370-ba51-f39cecae3b50"
      },
      {
        "created_at": "2021-05-14T05:44:50Z",
        "id": "96c83468-bf87-457f-ae51-03035064d923",
        "clientmatch": [
          "192.168.10.0/24"
        ],
        "ipv4_address": "192.168.10.251",
        "ipv4_subnet_mask": "255.255.255.0",
        "name": "test_0514",
        "project_id": "948ab26d2e7140f18852b6b2f26369c4",
        "size_tb": 1,
        "snapshot_space_reserve": 10,
        "snapshot_space_reserve_used": 0,
        "autodelete": "old",
        "subnet_id": "600787a5-2f81-4370-ba51-f39cecae3b50"
      }
    ]
}