Storage.deleteStorageBucketDeletes the Storage Bucket with the given storage key and bucket name.
| Name | Type | Description |
|---|---|---|
bucket | StorageBucket |
{
"id": 1,
"method": "Storage.deleteStorageBucket",
"params": {
"bucket": "bucket-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('Storage.deleteStorageBucket', {"bucket": "bucket-value"});
console.log(result);