- URL:
- https://<root>/notebooks/configuration
- Methods:
GET- Operations:
- Update
- Required Capability:
- Access allowed with either the "Servers" or "Security and infrastructure" privileges
- Version Introduced:
- 11.4
Description
The configuration resource provides a list of all properties that control some of a notebook's behavior. This resource is a container for these properties.
Request parameters
| Parameter | Details |
|---|---|
| The response format. The default response format is Values: |
Response properties
| Property | Details |
|---|---|
| The maximum packet size (in megabytes) that can be sent by WebSocket communication with the site. The default is 16 MB. |
| Introduced at 11.4. An integer value in minutes for the maximum amount of time that a notebook web tool or a notebook run through a web hook or The default value is 120 minutes (2 hours). The minimum value is 15 minutes. |
| The maximum number of snapshots allowed for a notebook. The default value is 5. |
| Introduced at 11.4. The interval that completed (succeeded or failed) interactive and automated notebook jobs are cleaned. Default value is 6 hours. The minimum value is 6. |
| Introduced at 11.5. Specifies how notebook pods are allowed to communicate with external network endpoints according to an organization's security needs. Default value is: Example usage: |
| By default, hidden files, files that have names starting with a dot (.), stored in a user's workspace cannot be downloaded using the data access download API. Set this property to |
| The time (in minutes) after which idle notebooks are closed automatically. The default is 720 (12 hours). |
| The time (in minutes) after which an idle notebook deployment is closed automatically. The default is 60 (1 hour). |
| Introduced at 11.4. An integer of the maximum number of active automated notebook jobs allowed per each Notebooks Automation Manager deployment. This limit applies to notebooks opened through scheduled tasks, webhooks, web tools, and the Default value is 5. Minimum value is 5. |
Example usage
The following is a sample request URL used to access the configuration resource:
https://organization.example.com/<context>/admin/notebooks/configuration?f=pjsonJSON Response example
{
"webSocketSize": 16,
"maxExecuteNotebookTimeMinutes": 120,
"maxSnapshotsPerNotebookItem": 5,
"allowHiddenFileDownloads": false,
"idleNotebookThreshold": 720,
"containerCreatedThreshold": 60
}