go-ceph/rgw/admin
Peter Willis 9531dd692a rgw/admin: add test for bucket creation date 2024-07-22 09:13:10 +00:00
..
README.md micro-osd.sh: Clarify the suspicion around S3 credentials 2023-12-08 18:42:13 +00:00
bucket.go rgw/admin: add creation time to bucket 2024-07-22 09:13:10 +00:00
bucket_quota.go rgw/admin: Make API.SetIndividualBucketQuota stable 2022-12-06 14:20:29 +00:00
bucket_quota_test.go Code Lint: Fix lint errors caused by revive check for unused parameters 2024-02-13 07:22:13 +00:00
bucket_test.go rgw/admin: add test for bucket creation date 2024-07-22 09:13:10 +00:00
caps.go rgw/admin: Clean up the parameter serialization 2022-03-17 17:47:25 +00:00
caps_test.go Code Lint: Fix lint errors caused by revive check for unused parameters 2024-02-13 07:22:13 +00:00
doc.go rgwadmin: add support for RadosGW Admin Ops API 2021-05-31 17:45:31 +02:00
errors.go rgw/admin: add ErrNoSuchSubUser 2024-06-13 14:37:59 +00:00
errors_test.go rgw/admin: add ErrNoSuchSubUser 2024-06-13 14:37:59 +00:00
info.go rgw/admin: promote GetInfo API to stable 2024-04-09 13:13:56 +00:00
info_test.go rgw/admin: promote GetInfo API to stable 2024-04-09 13:13:56 +00:00
keys.go rgw/admin: Make API.CreateKey and API.RemoveKey stable 2022-12-06 14:20:29 +00:00
keys_test.go Code Lint: Fix lint errors caused by revive check for unused parameters 2024-02-13 07:22:13 +00:00
link.go go-ceph: change mature preview APIs to stable 2022-08-16 11:42:41 +00:00
link_test.go Code Lint: Fix lint errors caused by revive check for unused parameters 2024-02-13 07:22:13 +00:00
list_bucket_with_stats.go rgw/admin: Make API.ListBucketsWithStat stable 2023-06-08 17:35:55 +00:00
list_bucket_with_stats_test.go Code Lint: Fix lint errors caused by revive check for unused parameters 2024-02-13 07:22:13 +00:00
quota.go rgw/admin: Individual bucket quota support 2022-08-01 18:13:46 +00:00
quota_test.go Code Lint: Fix lint errors caused by revive check for unused parameters 2024-02-13 07:22:13 +00:00
radosgw.go rgw: remove refs to deprecated io/ioutil 2023-07-08 14:26:48 +00:00
radosgw_test.go micro-osd.sh: Clarify the suspicion around S3 credentials 2023-12-08 18:42:13 +00:00
subuser.go go-ceph: change mature preview APIs to stable 2022-08-16 11:42:41 +00:00
subuser_test.go rgw: remove refs to deprecated io/ioutil 2023-07-08 14:26:48 +00:00
usage.go rgw/admin: Add missing uid member to usage struct 2023-03-20 07:09:27 +00:00
usage_test.go Code Lint: Fix lint errors caused by revive check for unused parameters 2024-02-13 07:22:13 +00:00
user.go rgw/admin: Fixup for 6f90ce1 2024-02-13 08:28:55 +00:00
user_bucket.go rgw/admin: Make API.ListUserBuckets and API.ListUserBucketsWithStat stable 2022-12-06 14:20:29 +00:00
user_bucket_quota.go rgw/admin: Promote {Get,Set}BucketQuota APIs to stable 2024-06-07 18:55:15 +00:00
user_bucket_quota_test.go rgw/admin: Promote {Get,Set}BucketQuota APIs to stable 2024-06-07 18:55:15 +00:00
user_bucket_test.go rgw/admin: remove unknown user test case from user_bucket_test.go 2024-05-07 15:30:17 +00:00
user_test.go Code Lint: Fix lint errors caused by revive check for unused parameters 2024-02-13 07:22:13 +00:00
utils.go rgw/admin: Clean up the parameter serialization 2022-03-17 17:47:25 +00:00
utils_test.go rgw/admin: Extend the testing of buildQueryPath 2022-03-17 17:47:25 +00:00

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=AKIAIOSFODNN7EXAMPLE --secret-key=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY

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", "AKIAIOSFODNN7EXAMPLE", "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY", 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)
}