Skip to content

Commit 8bfbeac

Browse files
feat(all): auto-regenerate discovery clients (#2246)
1 parent 5693997 commit 8bfbeac

28 files changed

+6179
-1051
lines changed

appengine/v1/appengine-api.json

Lines changed: 150 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,47 @@
171171
"https://www.googleapis.com/auth/cloud-platform.read-only"
172172
]
173173
},
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+
},
174215
"patch": {
175216
"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.",
176217
"flatPath": "v1/apps/{appsId}",
@@ -1610,7 +1651,7 @@
16101651
}
16111652
}
16121653
},
1613-
"revision": "20231024",
1654+
"revision": "20231030",
16141655
"rootUrl": "https://appengine.googleapis.com/",
16151656
"schemas": {
16161657
"ApiConfigHandler": {
@@ -2096,6 +2137,28 @@
20962137
},
20972138
"type": "object"
20982139
},
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+
},
20992162
"DebugInstanceRequest": {
21002163
"description": "Request message for Instances.DebugInstance.",
21012164
"id": "DebugInstanceRequest",
@@ -2701,6 +2764,24 @@
27012764
},
27022765
"type": "object"
27032766
},
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+
},
27042785
"ListServicesResponse": {
27052786
"description": "Response message for Services.ListServices.",
27062787
"id": "ListServicesResponse",
@@ -3431,6 +3512,74 @@
34313512
},
34323513
"type": "object"
34333514
},
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+
},
34343583
"ScriptHandler": {
34353584
"description": "Executes a script to handle the request that matches the URL pattern.",
34363585
"id": "ScriptHandler",

0 commit comments

Comments
 (0)