We used to order baremetals by package as below:
server_order = {
'complexType': 'SoftLayer_Container_Product_Order_Hardware_Server',
'quantity': 1,
'hardware':{"primaryNetworkComponent"..., "primaryBackendNetworkComponent"},
'location': dal05,
'packageId': xxx
}
server_container = {
'complexType': 'SoftLayer_Container_Product_Order_Hardware_Server',
'quantity': 1,
'hardware': {"primaryNetworkComponent"..., "primaryBackendNetworkComponent"},
'location': dal05,
'packageId': xxx,
'prices': {....}
}
Now we want the baremetals to be ordered without public NICs. What do we need to do besides removing the primaryNetworkComponent from hardware?
Also do we need SL to make changes in the package we are using? Or do we have to change to other packages?