Skip to main content

runtimes

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

Overview

Nameruntimes
TypeResource
Idgoogle.cloudfunctions.runtimes

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
runtimesarrayThe runtimes that match the request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectsId, locationsIdfilterReturns a list of runtimes that are supported for the requested project.

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
filterstring

SELECT examples

Returns a list of runtimes that are supported for the requested project.

SELECT
runtimes
FROM google.cloudfunctions.runtimes
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND filter = '{{ filter }}';