I have looked all through the SoftLayer API documentation, but I cannot find any reference to how one manages which portal users may access the Object Storage authentication endpoints to get the access token.
相关问题
- Apache web server timeout after 60 seconds
- How to access files in container in Object Storage
- SoftLayer API : How to get NetScaler list in Softl
- Getting bandWidth data in SL
- Password Update in SL
相关文章
- Getting bandWidth data in SL
- Password Update in SL
- Impersonating another user in SoftLayer
- New items for SoftLayer virtual server order?
- No Data for IOPS while Selecting Storage Size 250G
- how to order SoftLayer_Virtual_ReservedCapacityGro
- How do you upgrade a Snapshot space on Endurance s
- ObjectFilter in SoftLayer doesn't work
It seems to be similar to this question:
Softlayer Object Storage Auth Endpoint
References:
Managing SoftLayer Object Storage Through REST APIs
if you wish an user have access to the object storage you have to grant the following permissions:
"Manage CDN Account", "Manage CDN File Transfer" and "Manage Storage"
Remove the permissions above in order to not let your user to access the object storage
see:
http://knowledgelayer.softlayer.com/faq/can-user-have-cdn-and-storagelayer-permissions-granted-be-prohibited-accessing-object-storage http://knowledgelayer.softlayer.com/faq/can-sub-user-access-object-storage http://knowledgelayer.softlayer.com/procedure/manage-object-storage-user
using API you can set the permissions using these methods:
http://sldn.softlayer.com/reference/services/SoftLayer_User_Customer/addBulkPortalPermission http://sldn.softlayer.com/reference/services/SoftLayer_User_Customer/removeBulkPortalPermission
here an example: https://gist.github.com/underscorephil/7583408