- URL:
- https://<root>/notebooks/runtimes/<runtimeID>/manifest
- Methods:
POST- Required Capability:
- Access allowed with "Create and edit notebooks" privilege
- Version Introduced:
- 11.4
Description
The manifest resource returns a JSON representation of all the Python libraries supported in the specified notebook runtime. Notebook authors who open notebooks using this runtime can import the libraries in the manifest into their notebooks.
Request parameters
| Parameter | Details |
|---|---|
| The response format. The default response format is Values: |
Example usage
The following is a sample request URL used to access the manifest resource:
https://organization.example.com/<context>/admin/notebooks/runtimes/31dfadc5-35e0-4043-b866-a249a2bda7c0/manifest?f=pjsonJSON Response example
{
"libraries": [
{
"build_string": "gpu",
"dist_name": "_tflow_select-2.1.0-gpu",
"base_url": null,
"channel": "defaults",
"name": "_tflow_select",
"build_number": 0,
"version": "2.1.0",
"platform": null
},
{
"build_string": "py36_0",
"dist_name": "absl-py-0.6.1-py36_0",
"base_url": null,
"channel": "defaults",
"name": "absl-py",
"build_number": 0,
"version": "0.6.1",
"platform": null
}
]
}