I would like to gather information about storage offers from SoftLayer using SoftLayer API. There are different categories of storage in SoftLayer, for example: object, block and file storages.
According to this page https://sldn.softlayer.com/blog/cmporter/location-based-pricing-and-you I should use client["SoftLayer_Product_Package"].getItems(id=206)
but for object storage it returns a list of two items without prices. According to SoftLayer web site there should be much more offers than only two;)
I found somewhere information that I should use this client['Product_Package'].getObjectStorageDatacenters(id=206)
and it works but only for objects storage. When using ids of other storage packages I get empty results.
How can I get offers with prices for block and file storage packages?