调用 billing_Item Python API,会返回 billing_item,但没有返回很多(有趣的)本地属性。我感兴趣的本地属性都与正常运行时间和费用有关(例如,laborFee、oneTimeFee、hoursUsed、recurringFee,...),但它们不会被退回。
我所做的:
import SoftLayer
conn = SoftLayer.create_client_from_env(username='',api_key='')
allParents = conn.call('Account','getAllTopLevelBillingItems') #allParents is a list with billing_Items
allParents[0] # returns the first billing_Item as a dict but without a lot of relevant parameters
此外,每个父计费项的子计费项缺少很多本地属性。