create-bucket
Create new storage buckets with configurable public access settings for organizing and managing cloud storage resources through the Insforge backend platform.
Instructions
Create new storage bucket
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | API key for authentication (optional if provided via --api_key) | |
| bucketName | Yes | ||
| isPublic | No |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "API key for authentication (optional if provided via --api_key)",
"type": "string"
},
"bucketName": {
"minLength": 1,
"type": "string"
},
"isPublic": {
"default": true,
"type": "boolean"
}
},
"required": [
"bucketName"
],
"type": "object"
}