Add two or more disk to virtual server while provisioning in softlayer using rest query
Asked
Active
Viewed 508 times
1
-
Welcome to SO :-) Please look at [how to ask](http://stackoverflow.com/help/how-to-ask) – JimHawkins Jun 13 '16 at 05:53
1 Answers
1
you can set the disk at order time, see the documentation about
http://sldn.softlayer.com/reference/services/SoftLayer_Virtual_Guest/createObject
basically you have to configure them at the block devices section:
{
"blockDevices": [
{
"device": "0",
"diskImage": {
"capacity": 100
}
}
{
"device": "2",
"diskImage": {
"capacity": 25
}
}
],
"localDiskFlag": true
}
Then you can add more disk after the Virtual server has been provisioned vi Upgrading the Virtual Server.
To upgrade the server you need to use this method: http://sldn.softlayer.com/reference/services/SoftLayer_Product_Order/placeOrder
see this example:
POST https://api.softlayer.com/rest/v3.1/SoftLayer_Product_Order/placeOrder
body:
{
"parameters": [{
"virtualGuests": [{
"id": 49495232
}],
"prices": [{
"id": 2277,
"categories": [{
"categoryCode": "guest_disk1",
"complexType": "SoftLayer_Product_Item_Category"
}],
"complexType": "SoftLayer_Product_Item_Price"
},
{
"id": 2270,
"categories": [{
"categoryCode": "guest_disk2",
"complexType": "SoftLayer_Product_Item_Category"
}],
"complexType": "SoftLayer_Product_Item_Price"
}
],
"properties": [
{
"name": "NOTE_GENERAL",
"value": "adding disks"
},
{
"name": "MAINTENANCE_WINDOW",
"value": "2014-08-25T9:50:00-05:00"
}
],
"complexType": "SoftLayer_Container_Product_Order_Virtual_Guest_Upgrade"
}]
}
basically you need to specify:
- the ID of the VSI you want to upgrade
- The prices of the items you want to add, to get the list of prices you can use this method: http://sldn.softlayer.com/reference/services/SoftLayer_Virtual_Guest/getUpgradeItemPrices
- You need to specify the date when the VSI must be ugraded
Regards

Nelson Raul Cabero Mendoza
- 4,386
- 1
- 14
- 19
-
Add two or more disk to virtual server while editobject in softlayer using rest query – BERIN C DHAS Jun 14 '16 at 17:01
-
you can not use the editObject to add more disks you need to use the placeOrder method to upgrade the VSI I updated my answer with an example – Nelson Raul Cabero Mendoza Jun 14 '16 at 17:35