cldkctl_notebook_stop
Stop a running notebook on the MCP cldkctl Server by specifying the project ID, notebook name, and namespace. Ensure resource management and control processes efficiently.
Instructions
Call the cldkctl_notebook_stop endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Notebook name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Notebook name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"name",
"namespace"
],
"type": "object"
}