本文介绍了通过API创建块存储持久性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经通过API下订单来部署块存储耐力,我想知道如何获取创建的博克存储的ID和名称.
I have deployed a block storage endurance by placing an order through the API, and I am wondering how can I get the id and the name of the created bock storage.
推荐答案
您可以使用 SoftLayer_Product_Order :: placeOrder 方法返回.
您可以为其使用以下REST请求:
You can use the following REST request for it:
https://$user:[email protected]/rest/v3/SoftLayer_Account/getNetworkStorage?objectFilter={"networkStorage":{"billingItem":{"orderItem":{"order":{"id":{"operation":6359215}}}}}}
方法:获取
注意:用您自己的信息替换$ user,$ apiKey.将6359215值替换为您的 orderId 值.
Note: Replace $user, $apiKey with your own information. Replace 6359215 value with your orderId value.
这篇关于通过API创建块存储持久性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!