mirror of https://github.com/ceph/go-ceph
rgw/admin: Make API.SetIndividualBucketQuota stable
Signed-off-by: Anoop C S <anoopcs@cryptolab.net>
This commit is contained in:
parent
c11161eb61
commit
747dd7274b
|
@ -1750,14 +1750,7 @@
|
|||
]
|
||||
},
|
||||
"rgw/admin": {
|
||||
"preview_api": [
|
||||
{
|
||||
"name": "API.SetIndividualBucketQuota",
|
||||
"comment": "SetIndividualBucketQuota sets quota to a specific bucket.\nhttps://docs.ceph.com/en/latest/radosgw/adminops/#set-quota-for-an-individual-bucket.\n",
|
||||
"added_in_version": "v0.17.0",
|
||||
"expected_stable_version": "v0.19.0"
|
||||
}
|
||||
],
|
||||
"preview_api": [],
|
||||
"stable_api": [
|
||||
{
|
||||
"name": "API.ListBuckets",
|
||||
|
@ -1877,6 +1870,12 @@
|
|||
"comment": "RemoveKey will remove an existing key\nhttps://docs.ceph.com/en/latest/radosgw/adminops/#remove-key\nKeySpec.SecretKey parameter shouldn't be provided and will be ignored\n",
|
||||
"added_in_version": "v0.17.0",
|
||||
"became_stable_version": "v0.19.0"
|
||||
},
|
||||
{
|
||||
"name": "API.SetIndividualBucketQuota",
|
||||
"comment": "SetIndividualBucketQuota sets quota to a specific bucket\nhttps://docs.ceph.com/en/latest/radosgw/adminops/#set-quota-for-an-individual-bucket\n",
|
||||
"added_in_version": "v0.17.0",
|
||||
"became_stable_version": "v0.19.0"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -30,11 +30,7 @@ No Preview/Deprecated APIs found. All APIs are considered stable.
|
|||
|
||||
## Package: rgw/admin
|
||||
|
||||
### Preview APIs
|
||||
|
||||
Name | Added in Version | Expected Stable Version |
|
||||
---- | ---------------- | ----------------------- |
|
||||
API.SetIndividualBucketQuota | v0.17.0 | v0.19.0 |
|
||||
No Preview/Deprecated APIs found. All APIs are considered stable.
|
||||
|
||||
## Package: common/admin/manager
|
||||
|
||||
|
|
|
@ -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