runtimes
Creates, updates, deletes, gets or lists a runtimes
resource.
Overview
Name | runtimes |
Type | Resource |
Id | google.appengine.runtimes |
Fields
The following fields are returned by SELECT
queries:
- list_runtimes
Successful response
Name | Datatype | Description |
---|---|---|
name | string | The name of the runtime, e.g., 'go113', 'nodejs12', etc. |
decommissionedDate | object | Date when Runtime is decommissioned. (id: Date) |
deprecationDate | object | Date when Runtime is deprecated. (id: Date) |
displayName | string | User-friendly display name, e.g. 'Node.js 12', etc. |
endOfSupportDate | object | Date when Runtime is end of support. (id: Date) |
environment | string | The environment of the runtime. |
stage | string | The stage of life this runtime is in, e.g., BETA, GA, etc. |
supportedOperatingSystems | array | Supported operating systems for the runtime, e.g., 'ubuntu22', etc. |
warnings | array | Warning messages, e.g., a deprecation warning. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_runtimes | select | appsId | environment | Lists all the available runtimes for the application. |
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 |
---|---|---|
appsId | string | |
environment | string |
SELECT
examples
- list_runtimes
Lists all the available runtimes for the application.
SELECT
name,
decommissionedDate,
deprecationDate,
displayName,
endOfSupportDate,
environment,
stage,
supportedOperatingSystems,
warnings
FROM google.appengine.runtimes
WHERE appsId = '{{ appsId }}' -- required
AND environment = '{{ environment }}';