我想使用他们的 API 在 Softlayer 中订购一个虚拟服务器。我想订购一个装有 VCenter 的 Windows 机器。当我直接从 Softlayer 客户门户订购 VS 时,我将 VCenter 视为系统插件。我无法弄清楚如何使用 Softlayer API 在订单参数中传递 VCenter 的参数。我正在使用 Softlayer Python API。有谁知道该怎么做?我的订单模板如下所示:
order = {
'complexType': 'SoftLayer_Container_Product_Order_Virtual_Guest',
'quantity': 1,
'virtualGuests': [
{
'hostname': 'test',
'domain': 'example.com',
}
],
'location': 'sanjose',
'packageId': 46,
'useHourlyPricing': True,
'prices': [
{'id': 1640}, # 1 x 2.0 GHz Core
{'id': 1644}, # 1 GB RAM
{'id': 905}, # Reboot / Remote Console
{'id': 272}, # 10 Mbps Public & Private Networks
{'id': 613}, # 1000 GB Bandwidth
{'id': 21}, # 1 IP Address
{'id': 2202}, # 25 GB (SAN)
{'id': 1684}, # CentOS 5 - Minimal Install (32 bit)
{'id': 55}, # Host Ping Monitoring
{'id': 57}, # Email and Ticket Notifications
{'id': 58}, # Automated Notification Response
{'id': 420}, # Unlimited SSL VPN Users & 1 PPTP VPN User per account
{'id': 418}
]
} client['Product_Order'].verifyOrder(order);