tos_create_bucket
Create a storage bucket in Volcengine TOS with specified name and access control permissions for object storage management.
Instructions
创建 TOS 存储桶
Input Schema
Name | Required | Description | Default |
---|---|---|---|
acl | No | 访问控制权限 | private |
bucket_name | Yes | 存储桶名称 |
Input Schema (JSON Schema)
{
"properties": {
"acl": {
"default": "private",
"description": "访问控制权限",
"enum": [
"private",
"public-read",
"public-read-write"
],
"type": "string"
},
"bucket_name": {
"description": "存储桶名称",
"type": "string"
}
},
"required": [
"bucket_name"
],
"type": "object"
}