How Can We Order "Storage As A Service (StaaS)"?
We are able to order Endurance Storage using packageId 240 even now. However there are recent updates for Endurance Storage, it can be encrypted at rest and selected at more granul
Solution 1:
“There has been a few changes for the package 759 as it requires volumeSize property to set the storage space as you require, please take in count this volumeSize property must be within the product's capacity range to work properly (e.g.: 1 – 12000 range on itemPrice 194733 “Storage_Space”), and also the datatype container has to be SoftLayer_Container_Product_Order_Network_Storage_AsAService.
Please use the following order template in your code:
order = {
"complexType": "SoftLayer_Container_Product_Order_Network_Storage_AsAService",
"volumeSize": 6000,
"osFormatType":{
"id":12,
"keyName":"LINUX"
},
"location": 449604,
"quantity": 1,
"packageId": 759,
"prices": [
{'id': 189433}, # Storage As A Service
{'id': 189453}, # File storage
{'id': 194703}, # 4 IOPS per GB
{'id': 194733} # Storage space for 4 IOPS per GB
],
'quoteName': "Endurance_Storage",
'sendQuoteEmailFlag': False
}
Post a Comment for "How Can We Order "Storage As A Service (StaaS)"?"