我想要一个REST API来授权我从Softlayer订购到我的VM或BM的文件存储(耐久性)。请帮我解决这个问题。
谢谢, 基肖尔马布
答案 0 :(得分:0)
这是API端点。
http://sldn.softlayer.com/reference/services/SoftLayer_Network_Storage/allowAccessFromHostList
要授权/允许主机,请执行:
https://[username]:[apikey]@api.softlayer.com/rest/v3/SoftLayer_Network_Storage/[Storage_id]/allowAccessFromHostList
Method: POST
{
"parameters": [
[
{
"id": 13548553,
"objectType": "SoftLayer_Virtual_Guest"
}
]
]
}
以上请求用于授权“Endurance”和“Performance”如果要授权“Virtual Guest”,“IpAddress”或“Hardware”,“objectType”的有效值为:
分别为“SoftLayer_Virtual_Guest”,“SoftLayer_Network_Subnet_IpAddress”,“SoftLayer_Hardware”。