如何在SoftLayer中访问已删除的VSI数据

时间:2018-10-31 18:36:00

标签: python ibm-cloud-infrastructure

我需要访问已删除的VSI以查找其ID。我有已删除设备的主机名。本质上,我需要使用已删除的VSI的主机名并找到其ID。这是我的代码(Python):

import SoftLayer
import json

USERNAME = 'set me'
API_KEY = 'set me'


client = SoftLayer.Client(username=USERNAME, api_key=API_KEY)
accountService = client['SoftLayer_Account']
objectMask= "mask[hostname,id]"

try:

 response = accountService.getallTopLevelBillingItems(mask=objectMask)
 print(json.dumps(response, sort_keys=True, indent=2, separators=(',', ': ')))

except:

 print("Unable to get the VSIs")`

1 个答案:

答案 0 :(得分:1)

一旦被取消,就无法使用SLDN API检索已删除的VSI。

我不确定,但是如果您需要这些ID进行记录,可以尝试提交故障单并请求该信息