Skip to main content

runtime_versions

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

Overview

Nameruntime_versions
TypeResource
Idgoogle.tpu.runtime_versions

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe resource name.
versionstringThe runtime version.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, runtimeVersionsIdGets a runtime version.
listselectprojectsId, locationsIdpageSize, pageToken, filter, orderByLists runtime versions supported by this API.

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
runtimeVersionsIdstring
filterstring
orderBystring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Gets a runtime version.

SELECT
name,
version
FROM google.tpu.runtime_versions
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND runtimeVersionsId = '{{ runtimeVersionsId }}' -- required;