@maxim_mazurok/gapi.client.appengine-v1beta 0.0.20230821 → 0.0.20230909
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +37 -8
- package/package.json +1 -1
- package/tests.ts +18 -3
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://appengine.googleapis.com/$discovery/rest?version=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230909
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -75,6 +75,9 @@ declare namespace gapi.client {
|
|
|
75
75
|
/** Output only. The Google Container Registry domain used for storing managed build docker images for this application. */
|
|
76
76
|
gcrDomain?:
|
|
77
77
|
string;
|
|
78
|
+
/** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetApplicationRequest */
|
|
79
|
+
generatedCustomerMetadata?:
|
|
80
|
+
{ [P in string]: any };
|
|
78
81
|
iap?:
|
|
79
82
|
IdentityAwareProxy;
|
|
80
83
|
/**
|
|
@@ -296,6 +299,17 @@ declare namespace gapi.client {
|
|
|
296
299
|
targetUtilization?:
|
|
297
300
|
number;
|
|
298
301
|
}
|
|
302
|
+
interface Date {
|
|
303
|
+
/** 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. */
|
|
304
|
+
day?:
|
|
305
|
+
number;
|
|
306
|
+
/** Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day. */
|
|
307
|
+
month?:
|
|
308
|
+
number;
|
|
309
|
+
/** Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year. */
|
|
310
|
+
year?:
|
|
311
|
+
number;
|
|
312
|
+
}
|
|
299
313
|
interface DebugInstanceRequest {
|
|
300
314
|
/**
|
|
301
315
|
* Public SSH key to add to the instance. Examples: [USERNAME]:ssh-rsa [KEY_VALUE] [USERNAME] [USERNAME]:ssh-rsa [KEY_VALUE] google-ssh
|
|
@@ -986,6 +1000,15 @@ declare namespace gapi.client {
|
|
|
986
1000
|
Volume[];
|
|
987
1001
|
}
|
|
988
1002
|
interface Runtime {
|
|
1003
|
+
/** Date when Runtime is decommissioned. */
|
|
1004
|
+
decommissionedDate?:
|
|
1005
|
+
Date;
|
|
1006
|
+
/** Date when Runtime is deprecated. */
|
|
1007
|
+
deprecationDate?:
|
|
1008
|
+
Date;
|
|
1009
|
+
/** Date when Runtime is end of support. */
|
|
1010
|
+
endOfSupportDate?:
|
|
1011
|
+
Date;
|
|
989
1012
|
/** The environment of the runtime. */
|
|
990
1013
|
environment?:
|
|
991
1014
|
string;
|
|
@@ -1005,6 +1028,9 @@ declare namespace gapi.client {
|
|
|
1005
1028
|
string;
|
|
1006
1029
|
}
|
|
1007
1030
|
interface Service {
|
|
1031
|
+
/** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetServiceRequest */
|
|
1032
|
+
generatedCustomerMetadata?:
|
|
1033
|
+
{ [P in string]: any };
|
|
1008
1034
|
/** Relative name of the service within the application. Example: default.@OutputOnly */
|
|
1009
1035
|
id?:
|
|
1010
1036
|
string;
|
|
@@ -1216,6 +1242,9 @@ declare namespace gapi.client {
|
|
|
1216
1242
|
/** Settings for App Engine flexible runtimes. */
|
|
1217
1243
|
flexibleRuntimeSettings?:
|
|
1218
1244
|
FlexibleRuntimeSettings;
|
|
1245
|
+
/** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetVersionRequest */
|
|
1246
|
+
generatedCustomerMetadata?:
|
|
1247
|
+
{ [P in string]: any };
|
|
1219
1248
|
/**
|
|
1220
1249
|
* 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
|
|
1221
1250
|
* returned in GET requests if view=FULL is set.
|
|
@@ -1325,7 +1354,7 @@ declare namespace gapi.client {
|
|
|
1325
1354
|
/** The egress setting for the connector, controlling what traffic is diverted through it. */
|
|
1326
1355
|
egressSetting?:
|
|
1327
1356
|
string;
|
|
1328
|
-
/** Full Serverless VPC Access Connector name e.g.
|
|
1357
|
+
/** Full Serverless VPC Access Connector name e.g. projects/my-project/locations/us-central1/connectors/c1. */
|
|
1329
1358
|
name?:
|
|
1330
1359
|
string;
|
|
1331
1360
|
}
|
|
@@ -2631,12 +2660,6 @@ declare namespace gapi.client {
|
|
|
2631
2660
|
/** OAuth 2.0 token for the current user. */
|
|
2632
2661
|
oauth_token?:
|
|
2633
2662
|
string;
|
|
2634
|
-
/** Optional. Maximum results to return per page. */
|
|
2635
|
-
pageSize?:
|
|
2636
|
-
number;
|
|
2637
|
-
/** Optional. Continuation token for fetching the next page of results. */
|
|
2638
|
-
pageToken?:
|
|
2639
|
-
string;
|
|
2640
2663
|
/** Returns response with indentations and line breaks. */
|
|
2641
2664
|
prettyPrint?:
|
|
2642
2665
|
boolean;
|
|
@@ -3065,6 +3088,9 @@ declare namespace gapi.client {
|
|
|
3065
3088
|
/** Selector specifying which fields to include in a partial response. */
|
|
3066
3089
|
fields?:
|
|
3067
3090
|
string;
|
|
3091
|
+
/** Optional. Options to include extra data */
|
|
3092
|
+
includeExtraData?:
|
|
3093
|
+
string;
|
|
3068
3094
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3069
3095
|
key?:
|
|
3070
3096
|
string;
|
|
@@ -3330,6 +3356,9 @@ declare namespace gapi.client {
|
|
|
3330
3356
|
/** Selector specifying which fields to include in a partial response. */
|
|
3331
3357
|
fields?:
|
|
3332
3358
|
string;
|
|
3359
|
+
/** Optional. Options to include extra data */
|
|
3360
|
+
includeExtraData?:
|
|
3361
|
+
string;
|
|
3333
3362
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3334
3363
|
key?:
|
|
3335
3364
|
string;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230909
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -58,6 +58,9 @@ gapi.load('client', async () => {
|
|
|
58
58
|
useContainerOptimizedOs: true,
|
|
59
59
|
},
|
|
60
60
|
gcrDomain: "Test string",
|
|
61
|
+
generatedCustomerMetadata: {
|
|
62
|
+
A: 42
|
|
63
|
+
},
|
|
61
64
|
iap: {
|
|
62
65
|
enabled: true,
|
|
63
66
|
oauth2ClientId: "Test string",
|
|
@@ -101,6 +104,9 @@ gapi.load('client', async () => {
|
|
|
101
104
|
useContainerOptimizedOs: true,
|
|
102
105
|
},
|
|
103
106
|
gcrDomain: "Test string",
|
|
107
|
+
generatedCustomerMetadata: {
|
|
108
|
+
A: 42
|
|
109
|
+
},
|
|
104
110
|
iap: {
|
|
105
111
|
enabled: true,
|
|
106
112
|
oauth2ClientId: "Test string",
|
|
@@ -345,8 +351,6 @@ gapi.load('client', async () => {
|
|
|
345
351
|
await gapi.client.appengine.apps.runtimes.list({
|
|
346
352
|
appsId: "Test string",
|
|
347
353
|
environment: "Test string",
|
|
348
|
-
pageSize: 42,
|
|
349
|
-
pageToken: "Test string",
|
|
350
354
|
});
|
|
351
355
|
/** Deletes the specified service and all enclosed versions. */
|
|
352
356
|
await gapi.client.appengine.apps.services.delete({
|
|
@@ -356,6 +360,7 @@ gapi.load('client', async () => {
|
|
|
356
360
|
/** Gets the current configuration of the specified service. */
|
|
357
361
|
await gapi.client.appengine.apps.services.get({
|
|
358
362
|
appsId: "Test string",
|
|
363
|
+
includeExtraData: "Test string",
|
|
359
364
|
servicesId: "Test string",
|
|
360
365
|
});
|
|
361
366
|
/** Lists all the services in the application. */
|
|
@@ -371,6 +376,9 @@ gapi.load('client', async () => {
|
|
|
371
376
|
servicesId: "Test string",
|
|
372
377
|
updateMask: "Test string",
|
|
373
378
|
}, {
|
|
379
|
+
generatedCustomerMetadata: {
|
|
380
|
+
A: 42
|
|
381
|
+
},
|
|
374
382
|
id: "Test string",
|
|
375
383
|
labels: {
|
|
376
384
|
A: "Test string"
|
|
@@ -505,6 +513,9 @@ gapi.load('client', async () => {
|
|
|
505
513
|
operatingSystem: "Test string",
|
|
506
514
|
runtimeVersion: "Test string",
|
|
507
515
|
},
|
|
516
|
+
generatedCustomerMetadata: {
|
|
517
|
+
A: 42
|
|
518
|
+
},
|
|
508
519
|
handlers: [
|
|
509
520
|
{
|
|
510
521
|
apiEndpoint: {
|
|
@@ -623,6 +634,7 @@ gapi.load('client', async () => {
|
|
|
623
634
|
/** Gets the specified Version resource. By default, only a BASIC_VIEW will be returned. Specify the FULL_VIEW parameter to get the full resource. */
|
|
624
635
|
await gapi.client.appengine.apps.services.versions.get({
|
|
625
636
|
appsId: "Test string",
|
|
637
|
+
includeExtraData: "Test string",
|
|
626
638
|
servicesId: "Test string",
|
|
627
639
|
versionsId: "Test string",
|
|
628
640
|
view: "Test string",
|
|
@@ -777,6 +789,9 @@ gapi.load('client', async () => {
|
|
|
777
789
|
operatingSystem: "Test string",
|
|
778
790
|
runtimeVersion: "Test string",
|
|
779
791
|
},
|
|
792
|
+
generatedCustomerMetadata: {
|
|
793
|
+
A: 42
|
|
794
|
+
},
|
|
780
795
|
handlers: [
|
|
781
796
|
{
|
|
782
797
|
apiEndpoint: {
|