Show storage#

指定したブロックストレージ(iSCSI)を表示します。

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}/storages/{storage_id}

HTTPステータスコード#

正常時:200

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

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

名前 In Type デフォルト値
/必須指定
Description
project_id path string 必須 プロジェクトID
storage_id path string 必須 表示するストレージのID

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

名前 Type Description
storage object ストレージオブジェクト
created_at string ストレージの作成日時
id string ストレージID
initiator_iqns array 接続を許可するイニシエーターのIQNの配列
ipv4_address_primary string IPv4アドレス(プライマリ)
ipv4_address_secondary string IPv4アドレス(セカンダリ)
ipv4_subnet_mask string サブネットマスク
iqn string ストレージのIQN
naa_id string ストレージのNAA ID
name string ストレージの名前
os_type string OSタイプ
project_id string プロジェクトID
size_gb integer ストレージの容量(GB単位)
snapshot_space_size_gb integer スナップショット領域の容量(GB単位)
snapshot_space_used_size_gb float スナップショット領域の使用容量(GB単位)
subnet_id string サブネットID
type string ストレージタイプ

レスポンス例#

{
    "storage": {
        "created_at": "2018-12-11T04:50:40Z",
        "id": "1a5737a0-0249-451b-9397-d4f8351860e5",
        "initiator_iqns": [
            "iqn.1994-03.com.fujitsu:server1",
            "iqn.1994-03.com.fujitsu:server2"
        ],
        "ipv4_address_primary": "192.168.11.3",
        "ipv4_address_secondary": "192.168.11.4",
        "ipv4_subnet_mask": "255.255.255.0",
        "iqn": "iqn.1994-03.com.fujitsu:1a5737a00249451b9397d4f8351860e5",
        "naa_id": "600a098038304162693f4e7657565255",
        "name": "my_iscsi_storage",
        "os_type": "vmware",
        "project_id": "ff7ea4859b0344afad61f14c04249ee7",
        "size_gb": 1024,
        "snapshot_space_size_gb": 1024,
        "snapshot_space_used_size_gb": 23.225,
        "subnet_id": "49c0f1af-2ceb-41d7-9a74-14dcbedce9f8",
        "type": "medium"
    }
}