IBM Cloud - CLI 找不到对象存储服务名称或 GUID

IBM Cloud - Object storage service name or GUID cannot be found by CLI

我想知道如何找到我的对象存储服务名称或 GUID。我执行了:

bx service list

每个资源组。但是我无法获得任何对象存储服务名称。请指教。谢谢。

云对象存储偏离传统的云代工服务模式:

Cloud Object Storage service that was released on our public cloud about a month ago. It’s one of the first services to take advantage of resource groups, giving you some specific advantages as you use it and services like it. You’ll also notice when you deploy an instance of the service, you’re prompted to specify a resource group and a location depending on the plan you selected.

Source: https://www.ibm.com/blogs/bluemix/2017/11/organize-navigate-manage-resources-ibm-cloud/

尝试使用此 cli:

bluemix resource service-instances

来源:https://console.bluemix.net/docs/cli/reference/bluemix_cli/bx_cli.html#bluemix_cli

您需要 2 个命令:

1) 获取所有服务实例的列表:

$ bx resource service-instances

2) 获取特定服务实例的 ID 和其他详细信息:

$ bx resource service-instance "<An instance listed from output above>"

Note: Surrounding quotes ("") in step 2 are important as an instance name may contain spaces.