У меня есть PHP-код, который я использовал для вызова verifyOrder для хранилища Endurance Block, и он прекрасно работает для него. Я бы подумал, что это сработает и для хранилища Performance Block, просто изменив ценовые идентификаторы. Но не все так просто. Я вижу из SoftLayer, что он использует следующие идентификаторы цен: 40678, 40688, 40798
Поэтому я заменил прейскурант с идентификатором выше вместе с идентификатором пакета на 222.
Но в итоге я получаю сообщение об ошибке:
PHP Fatal error: Uncaught exception 'Exception' with message 'There was an error querying the SoftLayer API: Invalid pr
ice Block Storage (Performance) (40678) provided on the order container.'
И я понятия не имею, почему.
Есть ли какой-нибудь хороший рабочий пример проверки заказа для хранилища Performance Block в SoftLayer?
Ниже приведен основной поток кода, который у меня есть для хранения Endurance.
$priceIds = array (
45064,
45104,
45074,
45124,
46156
);
$orderPrices = array();
foreach ($priceIds as $priceId){
$price = new stdClass();
$price->id = $priceId;
$orderPrices[] = $price;
}
$osFormatType = new stdClass();
$osFormatType->id = 12;
$osFormatType->keyName = 'LINUX';
$orderTemplate = new stdClass();
$orderTemplate->location = $location;
$orderTemplate->packageId = $packageId;
$orderTemplate->osFormatType = $osFormatType;
$orderTemplate->complexType = 'SoftLayer_Container_Product_Order_Network_Storage_Enterprise';
$orderTemplate->prices = $orderPrices;
$orderTemplate->quantity = 1;
$productOrderClient = SoftLayer_SoapClient::getClient
(
'SoftLayer_Product_Order',
null,
$apiUsername,
$apiKey
);
$my_template = new SoapVar($orderTemplate, SOAP_ENC_OBJECT, 'SoftLayer_Container_Product_Order_Network_Storage_Enterprise', 'http://api.service.softlayer.com/soap/v3/');
$result = $productOrderClient->verifyOrder($my_template);
Чтобы заказать хранилище блоков производительности, используйте пакет 222. Ниже приведен пример:
<?php
require_once dirname(__FILE__) . "/SoftLayer/SoapClient.class.php";
$username = "set me";
$apiKey = "set me";
$location = 449506; // Frankfurt 2
$packageId = 222; // The packageID for order Performance
$quantity = 1;
// Create a SoftLayer API client object for "SoftLayer_Product_Order" service
$client = SoftLayer_SoapClient::getClient('SoftLayer_Product_Order', null, $username, $apiKey);
/**
* Build a skeleton SoftLayer_Product_Item_Price objects. These objects contain
* much more than ids, but SoftLayer's ordering system only needs the price's id
* to know what you want to order.
* To get the list of valid prices for the package
* use the SoftLayer_Product_Package:getItemPrices method
*/
$prices = array(
40672, // Block Storage (Performance)
62875, // 500 GB Storage Space
61509 // 500 IOPS
);
$orderPrices = array();
foreach ($prices as $priceId) {
$price = new stdClass();
$price -> id = $priceId;
$orderPrices[] = $price;
}
$osFormatType = new stdClass();
$osFormatType -> id = 12;
$osFormatType -> keyName = "LINUX";
// Build a SoftLayer_Container_Product_Order_Network_Storage_Enterprise object containing
// the order you want to place.
$orderContainer = new stdClass();
$orderContainer -> location = $location;
$orderContainer -> packageId = $packageId;
$orderContainer -> prices = $orderPrices;
$orderContainer -> quantity = $quantity;
$orderContainer -> osFormatType = $osFormatType;
// Re-declare the order template as a SOAP variable, so the SoftLayer ordering system knows what type of order you're placing.
$orderTemplate = new SoapVar($orderContainer, SOAP_ENC_OBJECT, 'SoftLayer_Container_Product_Order_Network_PerformanceStorage_Iscsi', 'http://api.service.softlayer.com/soap/v3/');
try {
/**
* We will use verifyOrder() method to check for errors. Replace this with placeOrder() when you are ready to order.
* @see http://sldn.softlayer.com/reference/services/SoftLayer_Product_Order/verifyOrder
*/
$result = $client -> verifyOrder($orderTemplate);
print_r($result);
} catch(Exception $e) {
echo "Unable to order Consistent Performance Block Storage" . $e -> getMessage();
}
Чтобы получить действительные идентификаторы цены для вашего аккаунта:
https://[username]:[apikey]@api.softlayer.com/rest/v3/SoftLayer_Product_Package/ 222/getItemPrices?objectMask=mask[id,item[keyName,description],pricingLocationGroup[locations[id, name, longName]]]
Примечание. Идентификатор цены с locationGroupId = null считается «стандартной ценой», и API будет внутренне переключать цены для клиента. Но мы рекомендуем сначала выполнить verifyOrder, чтобы увидеть, в порядке ли требуемый заказ (плата может варьироваться).
Также вы можете просмотреть:
http://sldn.softlayer.com/blog/cmporter/Location-based-Pricing-and-You
Других решений пока нет …