instances_config
Creates, updates, deletes, gets or lists an instances_config resource.
Overview
| Name | instances_config |
| Type | Resource |
| Id | google.notebooks.instances_config |
Fields
The following fields are returned by SELECT queries:
- get_config
| Name | Datatype | Description |
|---|---|---|
availableImages | array | Output only. The list of available images to create a WbI. |
defaultValues | object | Output only. The default values for configuration. (id: DefaultValues) |
disableWorkbenchLegacyCreation | boolean | Output only. Flag to disable the creation of legacy Workbench notebooks (User-managed notebooks and Google-managed notebooks). |
supportedValues | object | Output only. The supported values for configuration. (id: SupportedValues) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_config | select | projectsId, locationsId | Returns various configuration parameters. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
locationsId | string | |
projectsId | string |
SELECT examples
- get_config
Returns various configuration parameters.
SELECT
availableImages,
defaultValues,
disableWorkbenchLegacyCreation,
supportedValues
FROM google.notebooks.instances_config
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
;