Skip to main content

apps_runtimes

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

Overview

Nameapps_runtimes
TypeResource
Idgoogle.appengine.apps_runtimes

Fields

NameDatatypeDescription
namestringThe name of the runtime, e.g., 'go113', 'nodejs12', etc.
decommissionedDateobjectRepresents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: A full date, with non-zero year, month, and day values. A month and day, with a zero year (for example, an anniversary). A year on its own, with a zero month and a zero day. A year and month, with a zero day (for example, a credit card expiration date).Related types: google.type.TimeOfDay google.type.DateTime google.protobuf.Timestamp
deprecationDateobjectRepresents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: A full date, with non-zero year, month, and day values. A month and day, with a zero year (for example, an anniversary). A year on its own, with a zero month and a zero day. A year and month, with a zero day (for example, a credit card expiration date).Related types: google.type.TimeOfDay google.type.DateTime google.protobuf.Timestamp
displayNamestringUser-friendly display name, e.g. 'Node.js 12', etc.
endOfSupportDateobjectRepresents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: A full date, with non-zero year, month, and day values. A month and day, with a zero year (for example, an anniversary). A year on its own, with a zero month and a zero day. A year and month, with a zero day (for example, a credit card expiration date).Related types: google.type.TimeOfDay google.type.DateTime google.protobuf.Timestamp
environmentstringThe environment of the runtime.
stagestringThe stage of life this runtime is in, e.g., BETA, GA, etc.
supportedOperatingSystemsarraySupported operating systems for the runtime, e.g., 'ubuntu22', etc.
warningsarrayWarning messages, e.g., a deprecation warning.

Methods

NameAccessible byRequired ParamsDescription
list_runtimesSELECTappsIdLists all the available runtimes for the application.

SELECT examples

Lists all the available runtimes for the application.

SELECT
name,
decommissionedDate,
deprecationDate,
displayName,
endOfSupportDate,
environment,
stage,
supportedOperatingSystems,
warnings
FROM google.appengine.apps_runtimes
WHERE appsId = '{{ appsId }}';