用户额度管理
更新时间:2022-07-13
put_user_quota
此接口用来设置用户的额度,额度包括总的bucket数及各个region总的存储容量,当前总的Bucket数最大值不能超过100,注意该接口只能被主用户调用,
参数 | 是否必须 | 描述 |
---|---|---|
max_bucket_count | 是 | 最大可以创建的bucket数,若为-1,则表示不设置 |
max_capacity_mega_bytes | 是 | 单位为MB,表示最大的存储容量,若为-1或者0,表示不设置存储容量额度限制,即无上限 |
response = bos_client.put_user_quota(max_bucket_count, max_capacity_mega_bytes)
get_user_quota
此接口用来查看用户的额度设置,注意该接口只能被主用户调用。
response = bos_client.get_user_quota()
print("[Sample] get user quota maxBucketCount:", response.max_bucket_count)
print("[Sample] get user quota maxCapacityMegaBytes:", response.max_capacity_mega_bytes)
delete_user_quota
此接口用来删除额度设置,注意该接口只能被主用户调用。
response = bos_client.delete_user_quota()