mirror of https://github.com/ceph/go-ceph
dafbe65716
Add an rgw api function that combines listing and stat'ing buckets. Signed-off-by: moti <motaharesdq@gmail.com> |
||
---|---|---|
.. | ||
README.md | ||
bucket.go | ||
bucket_quota.go | ||
bucket_quota_test.go | ||
bucket_test.go | ||
caps.go | ||
caps_test.go | ||
doc.go | ||
errors.go | ||
errors_test.go | ||
keys.go | ||
keys_test.go | ||
link.go | ||
link_test.go | ||
list_bucket_with_stats.go | ||
list_bucket_with_stats_test.go | ||
quota.go | ||
quota_test.go | ||
radosgw.go | ||
radosgw_test.go | ||
subuser.go | ||
subuser_test.go | ||
usage.go | ||
usage_test.go | ||
user.go | ||
user_bucket.go | ||
user_bucket_test.go | ||
user_test.go | ||
utils.go | ||
utils_test.go |
README.md
Prerequisites
You must create an admin user like so:
radosgw-admin user create --uid admin --display-name "Admin User" --caps "buckets=*;users=*;usage=read;metadata=read;zone=read --access-key=2262XNX11FZRR44XWIRD --secret-key=rmtuS1Uj1bIC08QFYGW18GfSHAbkPqdsuYynNudw
Then use the access_key
and secret_key
for authentication.
Snippet usage example:
package main
import (
"github.com/ceph/go-ceph/rgw/admin"
)
func main() {
// Generate a connection object
co, err := admin.New("http://192.168.1.1", "2262XNX11FZRR44XWIRD", "rmtuS1Uj1bIC08QFYGW18GfSHAbkPqdsuYynNudw", nil)
if err != nil {
panic(err)
}
// Get the "admin" user
user, err := co.GetUser(context.Background(), admin.User{ID: "admin"})
if err != nil {
panic(err)
}
// Print the user display name
fmt.Println(user.DisplayName)
}