Skip to main content

We've Moved!

Product Documentation has moved to docs.hitachivantara.com
Hitachi Vantara Knowledge

Get file systems

Retrieves file systems on the managed storage system.

HTTP request syntax (URI)
GET <base_URI>/v7/storage/filesystems
Return codes
Code Data Description
200 filesystem Array of file systems retrieved successfully.
500 Error message Error associated with the storage system.
501 No Data Server has not implemented the request operation on the resource.

Any HTTP status code other than 200 indicates that the API did not complete successfully.

Request example
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.11.11:8444/v7/storage/filesystems
Response example
HTTP/1.1 200 OK
                {
                 "filesystems" :
                 [
                    {
                        "blockSize" : 32768,
                        "capacity" : 19327352832,
                        "expansionLimits" : 18446744073709551615,
                        "filesystemId" : "3B510107663A94D30000000000000000",
                        "freeCapacity" : 16794255360,
                        "isDedupeEnabled" : false,
                        "isDedupeSupported" : false,
                        "isLogicalCapacityFreeCapacityValid" : true,
                        "isLogicalCapacityValid" : true,
                        "isNDMPRecoveryTarget" : false,
                        "isNonStrictWORM" : false,
                        "isObjectReplicationTarget" : true
                        "isReadCached" : false,
                        "isReadOnly" : false,
                        "isSysLocked" : false,
                        "isThinProvisioningEnabled" : false,
                        "isThinProvisioningEnabledValid" : true,
                        "isTrueSparseFileEnabled" : false,
                        "isTrueSparseFileEnabledValid" : true,
                        "isUnlimitedExpansion" : true,
                        "isWORM" : false,
                        "label" : "testC19847",
                        "logicalCapacity" : 0,
                        "logicalFreeCapacity" : 0,
                        "objectId" : "33423531303130373636334139344433303030303030303030303030303030303a3a3a303a3a3a4f49445f24232140255f56",
                        "status" : "NOT_MOUNTED",
                        "storagePoolId" : 9677726511474388510,
                        "usedCapacity" : 2533097472,
                        "virtualServerId" : 2
                   },
                   {
                        "blockSize" : 32768,
                        "capacity" : 19327352832,
                        "expansionLimits" : 18446744073709551615,
                        "filesystemId" : "3B51199C3C1B8C7A0000000000000000",
                        "freeCapacity" : 16666853376,
                        "isDedupeEnabled" : false,
                        "isDedupeSupported" : false,
                        "isLogicalCapacityFreeCapacityValid" : true,
                        "isLogicalCapacityValid" : true,
                        "isNDMPRecoveryTarget" : false,
                        "isNonStrictWORM" : false,
                        "isObjectReplicationTarget" : false,
                        "isReadCached" : false,
                        "isReadOnly" : false,
                        "isSysLocked" : false,
                        "isThinProvisioningEnabled" : false,
                        "isThinProvisioningEnabledValid" : true,
                        "isTrueSparseFileEnabled" : true,
                        "isTrueSparseFileEnabledValid" : true,
                        "isUnlimitedExpansion" : true,
                        "isWORM" : false,
                        "label" : "rtat_concur_API_FS",
                        "logicalCapacity" : 19327352832,
                        "logicalFreeCapacity" : 16666853376,
                        "objectId" : "33423531313939433343314238433741303030303030303030303030303030303a3a3a303a3a3a4f49445f24232140255f56",
                        "status" : "MOUNTED",
                        "storagePoolId" : 9677726511474388510,
                        "usedCapacity" : 2660499456,
                        "virtualServerId" : 2
                }
       ]
    }

 

  • Was this article helpful?