IBM 云服务列表及其定价信息
IBM cloud list of services with their pricing info
我正在寻找 IBM 云服务列表,其定价信息与 Google 云服务和 AWS 服务 here and here 提供的定价信息相似。我查看了他们网站上的定价部分,但没有成功。
The IBM Cloud CLI has a command to show the service offerings available to you and the available service plans. The same information is available through the Cloud Foundry API. You can retrieve the service plan details through the Service API and then following the "service_plans_url", this stack overflow answer shows how to use cURL with this API. Here is a public app that shows how that API and the retrieved information has been used: http://mycatalog.mybluemix.net/
请注意,有 IBM Cloud Public 以及它的专用版本 (IBM Cloud Dedicated)。服务定价取决于账户类型、合约类型和消费等
您可能想要打开跟踪以查看 CLI 如何使用 API:
处理请求
export BLUEMIX_TRACE=true; ibmcloud service offerings
今天我还使用了这个示例命令行 ibmcloud catalog pricing
,带有以下参数和一个 grep 作为我的个人过滤器。
ibmcloud catalog pricing -r us-south -p paygo -k service | grep "appid" | grep "graduated-tier"
我正在寻找 IBM 云服务列表,其定价信息与 Google 云服务和 AWS 服务 here and here 提供的定价信息相似。我查看了他们网站上的定价部分,但没有成功。
The IBM Cloud CLI has a command to show the service offerings available to you and the available service plans. The same information is available through the Cloud Foundry API. You can retrieve the service plan details through the Service API and then following the "service_plans_url", this stack overflow answer shows how to use cURL with this API. Here is a public app that shows how that API and the retrieved information has been used: http://mycatalog.mybluemix.net/
请注意,有 IBM Cloud Public 以及它的专用版本 (IBM Cloud Dedicated)。服务定价取决于账户类型、合约类型和消费等
您可能想要打开跟踪以查看 CLI 如何使用 API:
处理请求
export BLUEMIX_TRACE=true; ibmcloud service offerings
今天我还使用了这个示例命令行 ibmcloud catalog pricing
,带有以下参数和一个 grep 作为我的个人过滤器。
ibmcloud catalog pricing -r us-south -p paygo -k service | grep "appid" | grep "graduated-tier"