使用SoftLayer API检索VM网络信息

时间:2016-10-19 13:56:48

标签: ibm-cloud-infrastructure

我试图通过SoftLayer API检索私有默认网关和子网掩码。我可以在control.softlayer.com上看到这些信息,但我想通过API检索它。我已经尝试了SoftLayer_Virtual_Guest服务中的所有网络相关方法,但还没有找到这些信息。我应该使用什么方法?

1 个答案:

答案 0 :(得分:0)

您可以尝试以下休息请求:

https://$user:$apiKey@api.softlayer.com/rest/v3/SoftLayer_Virtual_Guest/$vsiId/getBackendNetworkComponents?objectMask=mask[primarySubnet[gateway,netmask]]

Method: Get

使用您自己的信息替换: $ user $ apiKey $ vsiId

注意:以防万一,如果您希望获得公共网络的相同信息,则应使用 getFrontendNetworkComponents 而不是 getBackendNetworkComponents 请求

参考文献: