我想从softlayer中的副本卷ID中获取源卷ID。我已经尝试了大部分的API,但没有找到任何能满足我需求的API。有人可以帮助我让API从副本卷中获取源卷的正确卷ID。
我希望以下服务/ API可以帮助我获取父卷ID ..但事实并非如此。它给出了一些与其无关的父ID。
SoftLayer_Network_Storage :: getParentVolume
答案 0 :(得分:0)
更新
您可以尝试此请求来检索与此SoftLayer_Network_Storage卷关联的快照以及所有这些卷所属的父卷:
https://$username:$apiKey@api.softlayer.com/rest/v3/SoftLayer_Network_Storage/$networkStorageId/getObject.json?objectMask=mask[parentVolume,snapshots[parentVolume]]
答案 1 :(得分:0)
Try the following rest request:
https://$user:$apiKey@api.softlayer.com/rest/v3/SoftLayer_Network_Storage/$storageId/getReplicationPartners
Method: Get
Replace: $user, $apiKey and $storageId with your own information
References: