Description
The workspaces
resource returns a notebook workspace that is registered with your organization. The properties of a workspace include properties defined during the workspace creation, as well as auto-generated information provided after the workspace was created (the mount
and id
properties). This resource also provides access to the Create operation that administrators can use to create a notebook workspace.
Only one notebook workspace can be registered with your ArcGIS Enterprise Organization. The Workspaces resource will return the information for this workspace.
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 workspaces
resource:
https://organization.domain.com/context/admin/notebooks/workspaces?f=json
JSON Response example
{
"operations": [],
"notebookWorkspace": {
"name": "arcgis-notebooks-workspace",
"id": "utz5kgaz4vd6dpj3xrsyb",
"type": "PVC",
"spec": {
"storageClassName": "arcgis-storage-default",
"volumeName": "",
"resources": {
"requests": {"storage": "100Gi"},
"limits": {}
},
"accessModes": ["ReadWriteMany"],
"volumeMode": "Filesystem"
},
"managedKubernetesResources": [{
"purpose": "pvc",
"kind": "PersistentVolumeClaim",
"name": "arcgis-nb-workspace-volume-utz5kgaz4vd6dpj3xrsyb"
}],
"revision": 1,
"info": {
"volumeIdentifier": "",
"volumePath": "/arcgis/home"
}
},
"resources": []
}