Skip to content

Commit 372faa7

Browse files
yoshi-automationquirogas
authored andcommitted
feat(appengine): update the API
#### appengine:v1beta The following keys were added: - schemas.Version.properties.appEngineBundledServices.description - schemas.Version.properties.appEngineBundledServices.items.enum - schemas.Version.properties.appEngineBundledServices.items.enumDescriptions - schemas.Version.properties.appEngineBundledServices.items.type - schemas.Version.properties.appEngineBundledServices.type
1 parent 8876edf commit 372faa7

File tree

2 files changed

+52
-1
lines changed

2 files changed

+52
-1
lines changed

discovery/appengine-v1beta.json

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2741,7 +2741,7 @@
27412741
}
27422742
}
27432743
},
2744-
"revision": "20251103",
2744+
"revision": "20251110",
27452745
"rootUrl": "https://appengine.googleapis.com/",
27462746
"schemas": {
27472747
"ApiConfigHandler": {
@@ -5155,6 +5155,49 @@
51555155
"description": "Allows App Engine second generation runtimes to access the legacy bundled services.",
51565156
"type": "boolean"
51575157
},
5158+
"appEngineBundledServices": {
5159+
"description": "List of specific App Engine Bundled Services that are enabled for this Version.",
5160+
"items": {
5161+
"enum": [
5162+
"BUNDLED_SERVICE_TYPE_UNSPECIFIED",
5163+
"BUNDLED_SERVICE_TYPE_APP_IDENTITY_SERVICE",
5164+
"BUNDLED_SERVICE_TYPE_BLOBSTORE",
5165+
"BUNDLED_SERVICE_TYPE_CAPABILITY_SERVICE",
5166+
"BUNDLED_SERVICE_TYPE_DATASTORE_V3",
5167+
"BUNDLED_SERVICE_TYPE_DEFERRED",
5168+
"BUNDLED_SERVICE_TYPE_IMAGES",
5169+
"BUNDLED_SERVICE_TYPE_MAIL",
5170+
"BUNDLED_SERVICE_TYPE_MEMCACHE",
5171+
"BUNDLED_SERVICE_TYPE_MODULES",
5172+
"BUNDLED_SERVICE_TYPE_NAMESPACES",
5173+
"BUNDLED_SERVICE_TYPE_NDB",
5174+
"BUNDLED_SERVICE_TYPE_SEARCH",
5175+
"BUNDLED_SERVICE_TYPE_TASKQUEUES",
5176+
"BUNDLED_SERVICE_TYPE_URLFETCH",
5177+
"BUNDLED_SERVICE_TYPE_USERS"
5178+
],
5179+
"enumDescriptions": [
5180+
"Default, invalid value",
5181+
"App Identity Service",
5182+
"Blobstore",
5183+
"Capability Service",
5184+
"Datastore V3",
5185+
"Deferred",
5186+
"Images",
5187+
"Mail",
5188+
"Memcache",
5189+
"Modules",
5190+
"Namespaces",
5191+
"NDB",
5192+
"Search",
5193+
"Task Queues",
5194+
"URL Fetch",
5195+
"Users"
5196+
],
5197+
"type": "string"
5198+
},
5199+
"type": "array"
5200+
},
51585201
"automaticScaling": {
51595202
"$ref": "AutomaticScaling",
51605203
"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."

src/apis/appengine/v1beta.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1731,6 +1731,10 @@ export namespace appengine_v1beta {
17311731
* Allows App Engine second generation runtimes to access the legacy bundled services.
17321732
*/
17331733
appEngineApis?: boolean | null;
1734+
/**
1735+
* List of specific App Engine Bundled Services that are enabled for this Version.
1736+
*/
1737+
appEngineBundledServices?: string[] | null;
17341738
/**
17351739
* 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.
17361740
*/
@@ -7085,6 +7089,7 @@ export namespace appengine_v1beta {
70857089
* // {
70867090
* // "apiConfig": {},
70877091
* // "appEngineApis": false,
7092+
* // "appEngineBundledServices": [],
70887093
* // "automaticScaling": {},
70897094
* // "basicScaling": {},
70907095
* // "betaSettings": {},
@@ -7432,6 +7437,7 @@ export namespace appengine_v1beta {
74327437
* // {
74337438
* // "apiConfig": {},
74347439
* // "appEngineApis": false,
7440+
* // "appEngineBundledServices": [],
74357441
* // "automaticScaling": {},
74367442
* // "basicScaling": {},
74377443
* // "betaSettings": {},
@@ -7768,6 +7774,7 @@ export namespace appengine_v1beta {
77687774
* // {
77697775
* // "apiConfig": {},
77707776
* // "appEngineApis": false,
7777+
* // "appEngineBundledServices": [],
77717778
* // "automaticScaling": {},
77727779
* // "basicScaling": {},
77737780
* // "betaSettings": {},
@@ -12020,6 +12027,7 @@ export namespace appengine_v1beta {
1202012027
* // {
1202112028
* // "apiConfig": {},
1202212029
* // "appEngineApis": false,
12030+
* // "appEngineBundledServices": [],
1202312031
* // "automaticScaling": {},
1202412032
* // "basicScaling": {},
1202512033
* // "betaSettings": {},

0 commit comments

Comments
 (0)