upload_text_data
Transfer text data to Qiniu Cloud Storage by specifying a bucket, key, and optional overwrite setting. Ideal for managing and storing textual content in Qiniu's cloud infrastructure.
Instructions
Upload text data to Qiniu bucket.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucket | Yes | Qiniu Cloud Storage bucket Name | |
data | Yes | The data to upload. | |
key | Yes | The key under which a file is saved in Qiniu Cloud Storage serves as the unique identifier for the file within that space, typically using the filename. | |
overwrite | No | Whether to overwrite the existing object if it already exists. |
Input Schema (JSON Schema)
{
"properties": {
"bucket": {
"description": "Qiniu Cloud Storage bucket Name",
"type": "string"
},
"data": {
"description": "The data to upload.",
"type": "string"
},
"key": {
"description": "The key under which a file is saved in Qiniu Cloud Storage serves as the unique identifier for the file within that space, typically using the filename.",
"type": "string"
},
"overwrite": {
"description": "Whether to overwrite the existing object if it already exists.",
"type": "boolean"
}
},
"required": [
"bucket",
"key",
"data"
],
"type": "object"
}