Skip to main content

instances_config

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

Overview

Nameinstances_config
TypeResource
Idgoogle.notebooks.instances_config

Fields

NameDatatypeDescription
availableImagesarrayOutput only. The list of available images to create a WbI.
defaultValuesobjectDefaultValues represents the default configuration values.
supportedValuesobjectSupportedValues represents the values supported by the configuration.

Methods

NameAccessible byRequired ParamsDescription
get_configSELECTlocationsId, projectsIdGets general backend configurations that might also affect the frontend. Location is required by CCFE. Although we could bypass it to send location- less request directly to the backend job, we would need CPE (go/cloud-cpe). Having the location might also be useful depending on the query.

SELECT examples

Gets general backend configurations that might also affect the frontend. Location is required by CCFE. Although we could bypass it to send location- less request directly to the backend job, we would need CPE (go/cloud-cpe). Having the location might also be useful depending on the query.

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