@maxim_mazurok/gapi.client.appengine-v1 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 +8 -2
- package/package.json +1 -1
- package/tests.ts +10 -1
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=v1
|
|
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
|
/**
|
|
@@ -952,6 +955,9 @@ declare namespace gapi.client {
|
|
|
952
955
|
string;
|
|
953
956
|
}
|
|
954
957
|
interface Service {
|
|
958
|
+
/** Additional Google Generated Customer Metadata, this field won't be provided by default and can be requested by setting the IncludeExtraData field in GetServiceRequest */
|
|
959
|
+
generatedCustomerMetadata?:
|
|
960
|
+
{ [P in string]: any };
|
|
955
961
|
/** Relative name of the service within the application. Example: default.@OutputOnly */
|
|
956
962
|
id?:
|
|
957
963
|
string;
|
|
@@ -1272,7 +1278,7 @@ declare namespace gapi.client {
|
|
|
1272
1278
|
/** The egress setting for the connector, controlling what traffic is diverted through it. */
|
|
1273
1279
|
egressSetting?:
|
|
1274
1280
|
string;
|
|
1275
|
-
/** Full Serverless VPC Access Connector name e.g.
|
|
1281
|
+
/** Full Serverless VPC Access Connector name e.g. projects/my-project/locations/us-central1/connectors/c1. */
|
|
1276
1282
|
name?:
|
|
1277
1283
|
string;
|
|
1278
1284
|
}
|
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",
|
|
@@ -364,6 +370,9 @@ gapi.load('client', async () => {
|
|
|
364
370
|
servicesId: "Test string",
|
|
365
371
|
updateMask: "Test string",
|
|
366
372
|
}, {
|
|
373
|
+
generatedCustomerMetadata: {
|
|
374
|
+
A: 42
|
|
375
|
+
},
|
|
367
376
|
id: "Test string",
|
|
368
377
|
labels: {
|
|
369
378
|
A: "Test string"
|