tos_list_objects
List objects in a TOS bucket with optional filtering by prefix, delimiter, and maximum results to manage storage content effectively.
Instructions
列举 TOS 对象
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bucket_name | Yes | 存储桶名称 | |
| delimiter | No | 分隔符 | |
| max_keys | No | 最大返回对象数量 | |
| prefix | No | 对象键前缀 |
Input Schema (JSON Schema)
{
"properties": {
"bucket_name": {
"description": "存储桶名称",
"type": "string"
},
"delimiter": {
"default": "",
"description": "分隔符",
"type": "string"
},
"max_keys": {
"default": 1000,
"description": "最大返回对象数量",
"type": "integer"
},
"prefix": {
"default": "",
"description": "对象键前缀",
"type": "string"
}
},
"required": [
"bucket_name"
],
"type": "object"
}