Skip to main content

We've Moved!

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

Get deduplication file systems

Retrieves deduplication file systems on the managed storage system. A deduplication file system is a file system that has duplicate information removed.

HTTP request syntax (URI)
GET <base_URI>/v7/storage/filesystems/type/dedup
Return codes
Code Data Description
200 dedupFilesystems Array of dedup 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/type/dedup
Response example
HTTP/1.1 200 OK
 {
"dedupFilesystems" :
        [
                {
                        "filesystemId" : "3B70ACE2413391560000000000000000",
                        "isEnabled" : true,
                        "lastRun" : 1478550139,
                        "percentageReclaimed" : 0,
                        "reclaimedCapacity" : 0,
                        "virtualServerId" : 3
                },
                {
                        "filesystemId" : "8643CABC964FEEB30000000000000000",
                        "isEnabled" : true,
                        "lastRun" : 1523989308,
                        "percentageReclaimed" : 13,
                        "reclaimedCapacity" : 2373353472,
                        "virtualServerId" : 4
                },
                {
                        "filesystemId" : "864B1204593F504E0000000000000000",
                        "isEnabled" : true,
                        "lastRun" : 0,
                        "percentageReclaimed" : 0,
                        "reclaimedCapacity" : 0,
                        "virtualServerId" : 1
                },
                {
                        "filesystemId" : "864B1228ABB144AC0000000000000000",
                        "isEnabled" : true,
                        "lastRun" : 0,
                        "percentageReclaimed" : 0,
                        "reclaimedCapacity" : 0,
                        "virtualServerId" : 3
                }
        ]
}

 

  • Was this article helpful?