Skip to content

Commit

Permalink
feat(appengine): update the API
Browse files Browse the repository at this point in the history
#### appengine:v1

The following keys were added:
- schemas.FlexibleRuntimeSettings.description
- schemas.FlexibleRuntimeSettings.id
- schemas.FlexibleRuntimeSettings.properties.operatingSystem.description
- schemas.FlexibleRuntimeSettings.properties.operatingSystem.type
- schemas.FlexibleRuntimeSettings.properties.runtimeVersion.description
- schemas.FlexibleRuntimeSettings.properties.runtimeVersion.type
- schemas.FlexibleRuntimeSettings.type
- schemas.Version.properties.flexibleRuntimeSettings.$ref
- schemas.Version.properties.flexibleRuntimeSettings.description
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 10, 2023
1 parent 840e97d commit 3a57b47
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
21 changes: 20 additions & 1 deletion discovery/appengine-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@
}
}
},
"revision": "20230123",
"revision": "20230206",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"ApiConfigHandler": {
Expand Down Expand Up @@ -2329,6 +2329,21 @@
},
"type": "object"
},
"FlexibleRuntimeSettings": {
"description": "Runtime settings for the App Engine flexible environment.",
"id": "FlexibleRuntimeSettings",
"properties": {
"operatingSystem": {
"description": "The operating system of the application runtime.",
"type": "string"
},
"runtimeVersion": {
"description": "The runtime version of an App Engine flexible application.",
"type": "string"
}
},
"type": "object"
},
"GoogleAppengineV1betaLocationMetadata": {
"description": "Metadata for the given google.cloud.location.Location.",
"id": "GoogleAppengineV1betaLocationMetadata",
Expand Down Expand Up @@ -3814,6 +3829,10 @@
},
"type": "array"
},
"flexibleRuntimeSettings": {
"$ref": "FlexibleRuntimeSettings",
"description": "Settings for App Engine flexible runtimes."
},
"handlers": {
"description": "An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set.",
"items": {
Expand Down
20 changes: 20 additions & 0 deletions src/apis/appengine/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,19 @@ export namespace appengine_v1 {
*/
sourceRange?: string | null;
}
/**
* Runtime settings for the App Engine flexible environment.
*/
export interface Schema$FlexibleRuntimeSettings {
/**
* The operating system of the application runtime.
*/
operatingSystem?: string | null;
/**
* The runtime version of an App Engine flexible application.
*/
runtimeVersion?: string | null;
}
/**
* Metadata for the given google.cloud.location.Location.
*/
Expand Down Expand Up @@ -1597,6 +1610,10 @@ export namespace appengine_v1 {
* Custom static error pages. Limited to 10KB per page.Only returned in GET requests if view=FULL is set.
*/
errorHandlers?: Schema$ErrorHandler[];
/**
* Settings for App Engine flexible runtimes.
*/
flexibleRuntimeSettings?: Schema$FlexibleRuntimeSettings;
/**
* An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the request and other request handlers are not attempted.Only returned in GET requests if view=FULL is set.
*/
Expand Down Expand Up @@ -6469,6 +6486,7 @@ export namespace appengine_v1 {
* // "env": "my_env",
* // "envVariables": {},
* // "errorHandlers": [],
* // "flexibleRuntimeSettings": {},
* // "handlers": [],
* // "healthCheck": {},
* // "id": "my_id",
Expand Down Expand Up @@ -6795,6 +6813,7 @@ export namespace appengine_v1 {
* // "env": "my_env",
* // "envVariables": {},
* // "errorHandlers": [],
* // "flexibleRuntimeSettings": {},
* // "handlers": [],
* // "healthCheck": {},
* // "id": "my_id",
Expand Down Expand Up @@ -7115,6 +7134,7 @@ export namespace appengine_v1 {
* // "env": "my_env",
* // "envVariables": {},
* // "errorHandlers": [],
* // "flexibleRuntimeSettings": {},
* // "handlers": [],
* // "healthCheck": {},
* // "id": "my_id",
Expand Down

0 comments on commit 3a57b47

Please sign in to comment.