如何在 Softlayer 中查找用户的规范 id。我可以为 AWS 找到这个。但我使用了 Softlayer 的一款名为 IBM COS 的新产品。
aws --endpoint-url=https://s3-api.us-geo.objectstorage.softlayer.net s3api get-object-acl --bucket mytestbucket --key foo.txt
{
"Owner": {
"DisplayName": "b25ce81dcaa1498db3d1c802badfsd",
"ID": "b25ce81dcaa1498db3d1c802badfsd"
},
"Grants": [
{
"Grantee": {
"Type": "Group",
"URI": "http://acs.amazonaws.com/groups/global/AllUsers"
},
"Permission": "READ"
}
]
}
这里的 ID 是规范 ID。如何通过命令行或门户为用户找到这个?