|
171 | 171 | "https://www.googleapis.com/auth/cloud-platform.read-only" |
172 | 172 | ] |
173 | 173 | }, |
| 174 | + "listRuntimes": { |
| 175 | + "description": "Lists all the available runtimes for the application.", |
| 176 | + "flatPath": "v1/apps/{appsId}:listRuntimes", |
| 177 | + "httpMethod": "GET", |
| 178 | + "id": "appengine.apps.listRuntimes", |
| 179 | + "parameterOrder": [ |
| 180 | + "appsId" |
| 181 | + ], |
| 182 | + "parameters": { |
| 183 | + "appsId": { |
| 184 | + "description": "Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp.", |
| 185 | + "location": "path", |
| 186 | + "required": true, |
| 187 | + "type": "string" |
| 188 | + }, |
| 189 | + "environment": { |
| 190 | + "description": "Optional. The environment of the Application.", |
| 191 | + "enum": [ |
| 192 | + "ENVIRONMENT_UNSPECIFIED", |
| 193 | + "STANDARD", |
| 194 | + "FLEXIBLE" |
| 195 | + ], |
| 196 | + "enumDescriptions": [ |
| 197 | + "Default value.", |
| 198 | + "App Engine Standard.", |
| 199 | + "App Engine Flexible" |
| 200 | + ], |
| 201 | + "location": "query", |
| 202 | + "type": "string" |
| 203 | + } |
| 204 | + }, |
| 205 | + "path": "v1/apps/{appsId}:listRuntimes", |
| 206 | + "response": { |
| 207 | + "$ref": "ListRuntimesResponse" |
| 208 | + }, |
| 209 | + "scopes": [ |
| 210 | + "https://www.googleapis.com/auth/appengine.admin", |
| 211 | + "https://www.googleapis.com/auth/cloud-platform", |
| 212 | + "https://www.googleapis.com/auth/cloud-platform.read-only" |
| 213 | + ] |
| 214 | + }, |
174 | 215 | "patch": { |
175 | 216 | "description": "Updates the specified Application resource. You can update the following fields: auth_domain - Google authentication domain for controlling user access to the application. default_cookie_expiration - Cookie expiration policy for the application. iap - Identity-Aware Proxy properties for the application.", |
176 | 217 | "flatPath": "v1/apps/{appsId}", |
|
1610 | 1651 | } |
1611 | 1652 | } |
1612 | 1653 | }, |
1613 | | - "revision": "20231024", |
| 1654 | + "revision": "20231030", |
1614 | 1655 | "rootUrl": "https://appengine.googleapis.com/", |
1615 | 1656 | "schemas": { |
1616 | 1657 | "ApiConfigHandler": { |
|
2096 | 2137 | }, |
2097 | 2138 | "type": "object" |
2098 | 2139 | }, |
| 2140 | + "Date": { |
| 2141 | + "description": "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", |
| 2142 | + "id": "Date", |
| 2143 | + "properties": { |
| 2144 | + "day": { |
| 2145 | + "description": "Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.", |
| 2146 | + "format": "int32", |
| 2147 | + "type": "integer" |
| 2148 | + }, |
| 2149 | + "month": { |
| 2150 | + "description": "Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.", |
| 2151 | + "format": "int32", |
| 2152 | + "type": "integer" |
| 2153 | + }, |
| 2154 | + "year": { |
| 2155 | + "description": "Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.", |
| 2156 | + "format": "int32", |
| 2157 | + "type": "integer" |
| 2158 | + } |
| 2159 | + }, |
| 2160 | + "type": "object" |
| 2161 | + }, |
2099 | 2162 | "DebugInstanceRequest": { |
2100 | 2163 | "description": "Request message for Instances.DebugInstance.", |
2101 | 2164 | "id": "DebugInstanceRequest", |
|
2701 | 2764 | }, |
2702 | 2765 | "type": "object" |
2703 | 2766 | }, |
| 2767 | + "ListRuntimesResponse": { |
| 2768 | + "description": "Response message for Applications.ListRuntimes.", |
| 2769 | + "id": "ListRuntimesResponse", |
| 2770 | + "properties": { |
| 2771 | + "nextPageToken": { |
| 2772 | + "description": "Continuation token for fetching the next page of results.", |
| 2773 | + "type": "string" |
| 2774 | + }, |
| 2775 | + "runtimes": { |
| 2776 | + "description": "The runtimes available to the requested application.", |
| 2777 | + "items": { |
| 2778 | + "$ref": "Runtime" |
| 2779 | + }, |
| 2780 | + "type": "array" |
| 2781 | + } |
| 2782 | + }, |
| 2783 | + "type": "object" |
| 2784 | + }, |
2704 | 2785 | "ListServicesResponse": { |
2705 | 2786 | "description": "Response message for Services.ListServices.", |
2706 | 2787 | "id": "ListServicesResponse", |
|
3431 | 3512 | }, |
3432 | 3513 | "type": "object" |
3433 | 3514 | }, |
| 3515 | + "Runtime": { |
| 3516 | + "description": "Runtime versions for App Engine.", |
| 3517 | + "id": "Runtime", |
| 3518 | + "properties": { |
| 3519 | + "decommissionedDate": { |
| 3520 | + "$ref": "Date", |
| 3521 | + "description": "Date when Runtime is decommissioned." |
| 3522 | + }, |
| 3523 | + "deprecationDate": { |
| 3524 | + "$ref": "Date", |
| 3525 | + "description": "Date when Runtime is deprecated." |
| 3526 | + }, |
| 3527 | + "endOfSupportDate": { |
| 3528 | + "$ref": "Date", |
| 3529 | + "description": "Date when Runtime is end of support." |
| 3530 | + }, |
| 3531 | + "environment": { |
| 3532 | + "description": "The environment of the runtime.", |
| 3533 | + "enum": [ |
| 3534 | + "ENVIRONMENT_UNSPECIFIED", |
| 3535 | + "STANDARD", |
| 3536 | + "FLEXIBLE" |
| 3537 | + ], |
| 3538 | + "enumDescriptions": [ |
| 3539 | + "Default value.", |
| 3540 | + "App Engine Standard.", |
| 3541 | + "App Engine Flexible" |
| 3542 | + ], |
| 3543 | + "type": "string" |
| 3544 | + }, |
| 3545 | + "name": { |
| 3546 | + "description": "The name of the runtime, e.g., 'go113', 'nodejs12', etc.", |
| 3547 | + "type": "string" |
| 3548 | + }, |
| 3549 | + "stage": { |
| 3550 | + "description": "The stage of life this runtime is in, e.g., BETA, GA, etc.", |
| 3551 | + "enum": [ |
| 3552 | + "RUNTIME_STAGE_UNSPECIFIED", |
| 3553 | + "DEVELOPMENT", |
| 3554 | + "ALPHA", |
| 3555 | + "BETA", |
| 3556 | + "GA", |
| 3557 | + "DEPRECATED", |
| 3558 | + "DECOMMISSIONED", |
| 3559 | + "END_OF_SUPPORT" |
| 3560 | + ], |
| 3561 | + "enumDescriptions": [ |
| 3562 | + "Not specified.", |
| 3563 | + "The runtime is in development.", |
| 3564 | + "The runtime is in the Alpha stage.", |
| 3565 | + "The runtime is in the Beta stage.", |
| 3566 | + "The runtime is generally available.", |
| 3567 | + "The runtime is deprecated.", |
| 3568 | + "The runtime is no longer supported.", |
| 3569 | + "The runtime is end of support." |
| 3570 | + ], |
| 3571 | + "type": "string" |
| 3572 | + }, |
| 3573 | + "warnings": { |
| 3574 | + "description": "Warning messages, e.g., a deprecation warning.", |
| 3575 | + "items": { |
| 3576 | + "type": "string" |
| 3577 | + }, |
| 3578 | + "type": "array" |
| 3579 | + } |
| 3580 | + }, |
| 3581 | + "type": "object" |
| 3582 | + }, |
3434 | 3583 | "ScriptHandler": { |
3435 | 3584 | "description": "Executes a script to handle the request that matches the URL pattern.", |
3436 | 3585 | "id": "ScriptHandler", |
|
0 commit comments