delete-network-storage
Remove network storage by specifying its unique ID. Use this action to manage Novita MCP Server resources effectively and ensure clean allocation of storage space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
storageId | Yes | The unique ID of the network storage to delete. Please ensure it exists before updating. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"storageId": {
"description": "The unique ID of the network storage to delete. Please ensure it exists before updating.",
"minLength": 1,
"type": "string"
}
},
"required": [
"storageId"
],
"type": "object"
}