我正在尝试下面的一个它总是抛出"您必须提供有效的便携式存储卷ID。"。我在下面的curl中替换了我的virtualGuestId,imageId,用户名和apikey。
curl "https://[username]:[apiKey]@api.softlayer.com/rest/v3/SoftLayer_Virtual_Guest/[virtualGuestId]/attachDiskImage.json?imageId=[imageId]"
请告诉我用于加载磁盘映像的正确API以及如何获取磁盘映像的详细信息。
答案 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
此致