cldkctl_notebook_update
Update notebook configurations in specified projects and namespaces using required YAML inputs for efficient resource management.
Instructions
Call the cldkctl_notebook_update endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Notebook name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID | |
yaml | Yes | Notebook YAML |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Notebook name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"yaml": {
"description": "Notebook YAML",
"type": "string"
}
},
"required": [
"project_id",
"name",
"namespace",
"yaml"
],
"type": "object"
}