我们如何从softlayer中的副本卷id获取源卷ID

时间:2016-10-17 08:37:18

标签: ibm-cloud-infrastructure

我想从softlayer中的副本卷ID中获取源卷ID。我已经尝试了大部分的API,但没有找到任何能满足我需求的API。有人可以帮助我让API从副本卷中获取源卷的正确卷ID。

我希望以下服务/ API可以帮助我获取父卷ID ..但事实并非如此。它给出了一些与其无关的父ID。

SoftLayer_Network_Storage :: getParentVolume

2 个答案:

答案 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: