最近更新时间:2023-06-08 15:00:41
以下代码用于设置存储空间的访问权限:
from ks3.connection import Connection
# 金山云主账号 AccessKey 拥有所有API的访问权限,风险很高。
# 强烈建议您创建并使用子账号进行 API 访问或日常运维,请登录 https://uc.console.ksyun.com/pro/iam/#/user/list 创建子账号。
# 通过指定 host(Endpoint),您可以在指定的地域创建新的存储空间。
c = Connection('<YOUR_ACCESS_KEY>', '<YOUR_SECRET_KEY>', host='YOUR_REGION_ENDPOINT')
#获取存储空间实例。
b = c.get_bucket('<YOUR_BUCKET_NAME>')
#设置存储空间访问权限, private or public-read or public-read-write
b.set_acl("public-read")
设置存储空间访问权限的更多详情,请参见PUT Bucket ACL。
以下代码用于获取存储空间的访问权限:
from ks3.connection import Connection
# 金山云主账号 AccessKey 拥有所有API的访问权限,风险很高。
# 强烈建议您创建并使用子账号进行 API 访问或日常运维,请登录 https://uc.console.ksyun.com/pro/iam/#/user/list 创建子账号。
# 通过指定 host(Endpoint),您可以在指定的地域创建新的存储空间。
c = Connection('<YOUR_ACCESS_KEY>', '<YOUR_SECRET_KEY>', host='YOUR_REGION_ENDPOINT')
#获取存储空间实例。
b = c.get_bucket('<YOUR_BUCKET_NAME>')
#获取bucket的并打印出ACL设置以及授权的信息
policy = b.get_acl()
for grant in policy.acl.grants:
print(grant.permission, grant.display_name, grant.email_address, grant.id)
获取存储空间访问权限的更多详情,请参见GET Bucket ACL。
纯净模式