Skip to content

Commit

Permalink
feat(appengine): update the API
Browse files Browse the repository at this point in the history
#### appengine:v1beta
The following keys were added:
- schemas.Version.properties.appEngineApis.description
- schemas.Version.properties.appEngineApis.type
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Nov 30, 2020
1 parent 5c20722 commit 5940274
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 5 additions & 1 deletion discovery/appengine-v1beta.json
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,7 @@
}
}
},
"revision": "20201107",
"revision": "20201114",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"ApiConfigHandler": {
Expand Down Expand Up @@ -3492,6 +3492,10 @@
"$ref": "ApiConfigHandler",
"description": "Serving configuration for Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/).Only returned in GET requests if view=FULL is set."
},
"appEngineApis": {
"description": "app_engine_apis allows Second Generation runtimes to access the App Engine APIs.",
"type": "boolean"
},
"automaticScaling": {
"$ref": "AutomaticScaling",
"description": "Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic."
Expand Down
7 changes: 7 additions & 0 deletions src/apis/appengine/v1beta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1465,6 +1465,10 @@ export namespace appengine_v1beta {
* Serving configuration for Google Cloud Endpoints (https://cloud.google.com/appengine/docs/python/endpoints/).Only returned in GET requests if view=FULL is set.
*/
apiConfig?: Schema$ApiConfigHandler;
/**
* app_engine_apis allows Second Generation runtimes to access the App Engine APIs.
*/
appEngineApis?: boolean | null;
/**
* Automatic scaling is based on request rate, response latencies, and other application metrics. Instances are dynamically created and destroyed as needed in order to handle traffic.
*/
Expand Down Expand Up @@ -6368,6 +6372,7 @@ export namespace appengine_v1beta {
* // request body parameters
* // {
* // "apiConfig": {},
* // "appEngineApis": false,
* // "automaticScaling": {},
* // "basicScaling": {},
* // "betaSettings": {},
Expand Down Expand Up @@ -6692,6 +6697,7 @@ export namespace appengine_v1beta {
* // Example response
* // {
* // "apiConfig": {},
* // "appEngineApis": false,
* // "automaticScaling": {},
* // "basicScaling": {},
* // "betaSettings": {},
Expand Down Expand Up @@ -7010,6 +7016,7 @@ export namespace appengine_v1beta {
* // request body parameters
* // {
* // "apiConfig": {},
* // "appEngineApis": false,
* // "automaticScaling": {},
* // "basicScaling": {},
* // "betaSettings": {},
Expand Down

0 comments on commit 5940274

Please sign in to comment.