mirror of https://github.com/ceph/go-ceph
rgw/admin: Make API.ListUserBuckets and API.ListUserBucketsWithStat stable
Signed-off-by: Anoop C S <anoopcs@cryptolab.net>
This commit is contained in:
parent
44b8b10b97
commit
72ac947edf
|
@ -1751,18 +1751,6 @@
|
|||
},
|
||||
"rgw/admin": {
|
||||
"preview_api": [
|
||||
{
|
||||
"name": "API.ListUsersBuckets",
|
||||
"comment": "ListUsersBuckets will return the list of all users buckets without stat.\n",
|
||||
"added_in_version": "v0.17.0",
|
||||
"expected_stable_version": "v0.19.0"
|
||||
},
|
||||
{
|
||||
"name": "API.ListUsersBucketsWithStat",
|
||||
"comment": "ListUsersBucketsWithStat will return the list of all users buckets with stat.\n",
|
||||
"added_in_version": "v0.17.0",
|
||||
"expected_stable_version": "v0.19.0"
|
||||
},
|
||||
{
|
||||
"name": "API.CreateKey",
|
||||
"comment": "CreateKey will generate new keys or add specified to keyring.\nhttps://docs.ceph.com/en/latest/radosgw/adminops/#create-key.\n",
|
||||
|
@ -1877,6 +1865,18 @@
|
|||
{
|
||||
"name": "API.ModifySubuser",
|
||||
"comment": "ModifySubuser - https://docs.ceph.com/en/latest/radosgw/adminops/#modify-subuser\n"
|
||||
},
|
||||
{
|
||||
"name": "API.ListUsersBuckets",
|
||||
"comment": "ListUsersBuckets will return the list of all users buckets without stat\n",
|
||||
"added_in_version": "v0.17.0",
|
||||
"became_stable_version": "v0.19.0"
|
||||
},
|
||||
{
|
||||
"name": "API.ListUsersBucketsWithStat",
|
||||
"comment": "ListUsersBucketsWithStat will return the list of all users buckets with stat\n",
|
||||
"added_in_version": "v0.17.0",
|
||||
"became_stable_version": "v0.19.0"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -34,8 +34,6 @@ No Preview/Deprecated APIs found. All APIs are considered stable.
|
|||
|
||||
Name | Added in Version | Expected Stable Version |
|
||||
---- | ---------------- | ----------------------- |
|
||||
API.ListUsersBuckets | v0.17.0 | v0.19.0 |
|
||||
API.ListUsersBucketsWithStat | v0.17.0 | v0.19.0 |
|
||||
API.CreateKey | v0.17.0 | v0.19.0 |
|
||||
API.RemoveKey | v0.17.0 | v0.19.0 |
|
||||
API.SetIndividualBucketQuota | v0.17.0 | v0.19.0 |
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
//go:build ceph_preview
|
||||
// +build ceph_preview
|
||||
|
||||
package admin
|
||||
|
||||
import (
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
//go:build ceph_preview
|
||||
// +build ceph_preview
|
||||
|
||||
package admin
|
||||
|
||||
import (
|
||||
|
|
Loading…
Reference in New Issue