Skip to main content

We've Moved!

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

Filter output

Filtering is used to narrow the result set, and can be used at the same time as result sorting.

REST API server supports only top-level scalar attributes. REST API server does not support multi-level or nesting filters. REST API server supports only GET ALL API operations. The following filter operators are supported: =, != <, >, >=, and <=. To filter multiple attributes, use the AND (&) operator to connect them.

Request
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.23.10:8444/v8/storage/filesystems?usedCapacity>=39755415550
Response
HTTP/1.1 200 OK
{
  "filesystems": [
    {
      "blockSize": 32768,
      "capacity": 1097095708672,
      "expansionLimits": 1099511627776,
      "filesystemId": "3B73894023F7F81B0000000000000000",
      "freeCapacity": 9733373952,
      "isDedupeEnabled": false,
      "isDedupeSupported": false,
      "isLogicalCapacityFreeCapacityValid": true,
      "isLogicalCapacityValid": true,
      "isNDMPRecoveryTarget": false,
      "isNonStrictWORM": false,
      "isReadCached": false,
      "isReadOnly": false,
      "isSysLocked": false,
      "isThinProvisioningEnabled": false,
      "isThinProvisioningEnabledValid": true,
      "isTrueSparseFileEnabled": true,
      "isTrueSparseFileEnabledValid": true,
      "isUnlimitedExpansion": false,
      "isWORM": false,
      "label": "ErinPerfFs",
      "logicalCapacity": 1097095708672,
      "logicalFreeCapacity": 9733373952,
      "objectId": "33423733383934303233463746383142303030303030303030303030303030303a3a3a303a3a3a4f49445f24232140255f56",
      "status": "MOUNTED",
      "storagePoolId": 4283918657438155300,
      "usedCapacity": 1087362334720,
      "virtualServerId": 4
    },
    {
      "blockSize": 32768,
      "capacity": 192468221952,
      "expansionLimits": 268435456000,
      "filesystemId": "3B7D39EA82A4BA220000000000000000",
      "freeCapacity": 46612545536,
      "isDedupeEnabled": false,
      "isDedupeSupported": false,
      "isLogicalCapacityFreeCapacityValid": true,
      "isLogicalCapacityValid": true,
      "isNDMPRecoveryTarget": false,
      "isNonStrictWORM": false,
      "isReadCached": false,
      "isReadOnly": false,
      "isSysLocked": false,
      "isThinProvisioningEnabled": false,
      "isThinProvisioningEnabledValid": true,
      "isTrueSparseFileEnabled": true,
      "isTrueSparseFileEnabledValid": true,
      "isUnlimitedExpansion": false,
      "isWORM": false,
      "label": "xyzDevProdFS",
      "logicalCapacity": 192468221952,
      "logicalFreeCapacity": 46612545536,
      "objectId": "33423744333945413832413442413232303030303030303030303030303030303a3a3a303a3a3a4f49445f24232140255f56",
      "status": "MOUNTED",
      "storagePoolId": 4286815075241083400,
      "usedCapacity": 145855676416,
      "virtualServerId": 4
    },
    {
      "blockSize": 32768,
      "capacity": 58518929408,
      "expansionLimits": 107374182400,
      "filesystemId": "864B1228ABB144AC0000000000000000",
      "freeCapacity": 18763513856,
      "isDedupeEnabled": true,
      "isDedupeSupported": true,
      "isLogicalCapacityFreeCapacityValid": true,
      "isLogicalCapacityValid": true,
      "isNDMPRecoveryTarget": false,
      "isNonStrictWORM": false,
      "isReadCached": false,
      "isReadOnly": false,
      "isSysLocked": true,
      "isThinProvisioningEnabled": false,
      "isThinProvisioningEnabledValid": true,
      "isTrueSparseFileEnabled": false,
      "isTrueSparseFileEnabledValid": true,
      "isUnlimitedExpansion": false,
      "isWORM": false,
      "label": "xyz-obj-rep-target-new",
      "logicalCapacity": 0,
      "logicalFreeCapacity": 0,
      "objectId": "38363442313232384142423134344143303030303030303030303030303030303a3a3a303a3a3a4f49445f24232140255f56",
      "status": "MOUNTED",
      "storagePoolId": 9676880324761524000,
      "usedCapacity": 39755415552,
      "virtualServerId": 3
    }
  ]
}

 

  • Was this article helpful?