Skip to main content

instances_config

Creates, updates, deletes, gets or lists an instances_config resource.

Overview

Nameinstances_config
TypeResource
Idgoogle.notebooks.instances_config

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
availableImagesarrayOutput only. The list of available images to create a WbI.
defaultValuesobjectOutput only. The default values for configuration. (id: DefaultValues)
disableWorkbenchLegacyCreationbooleanOutput only. Flag to disable the creation of legacy Workbench notebooks (User-managed notebooks and Google-managed notebooks).
supportedValuesobjectOutput only. The supported values for configuration. (id: SupportedValues)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_configselectprojectsId, locationsIdReturns 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.

NameDatatypeDescription
locationsIdstring
projectsIdstring

SELECT examples

Returns various configuration parameters.

SELECT
availableImages,
defaultValues,
disableWorkbenchLegacyCreation,
supportedValues
FROM google.notebooks.instances_config
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required;