SoftLayer Rest API attachDiskImage调用抛出错误

时间:2017-01-13 07:10:22

标签: rest api ibm-cloud-infrastructure

我正在尝试下面的一个它总是抛出"您必须提供有效的便携式存储卷ID。"。我在下面的curl中替换了我的virtualGuestId,imageId,用户名和apikey。

curl "https://[username]:[apiKey]@api.softlayer.com/rest/v3/SoftLayer_Virtual_Guest/[virtualGuestId]/attachDiskImage.json?imageId=[imageId]"

请告诉我用于加载磁盘映像的正确API以及如何获取磁盘映像的详细信息。

1 个答案:

答案 0 :(得分:0)

我建议你看看这些链接:

https://sldn.softlayer.com/blog/bpotter/more-softlayer-rest-api-examples https://sldn.softlayer.com/article/REST

方法attachDiskImage的参数为" imageId"您可以在文档中看到便携式存储:

http://sldn.softlayer.com/reference/services/SoftLayer_Virtual_Guest/attachDiskImage

必须使用POST方法发送参数,并且您需要使用JSON格式在有效负载中发送这些参数,因此您的请求应更改为此参数:

curl -X POST -d '{"parameters":[$IMAGEID]}' https://$SLUSERNAME:$SLAPIKEY@api.softlayer.com/rest/v3/SoftLayer_Virtual_Guest/$VIRTUALGUESTID/attachDiskImage.json

Note: replace $IMAGEID, $SLUSERNAME, $SLAPIKEY and $VIRTUALGUESTID

此致