apps_runtimes
Creates, updates, deletes, gets or lists a apps_runtimes
resource.
Overview
Name | apps_runtimes |
Type | Resource |
Id | google.appengine.apps_runtimes |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the runtime, e.g., 'go113', 'nodejs12', etc. |
decommissionedDate | object | Represents 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 |
deprecationDate | object | Represents 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 |
displayName | string | User-friendly display name, e.g. 'Node.js 12', etc. |
endOfSupportDate | object | Represents 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 |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_runtimes | SELECT | appsId | Lists 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 }}';