@maxim_mazurok/gapi.client.appengine-v1 0.0.20230821 → 0.0.20230831
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 +5 -2
- package/package.json +1 -1
- package/tests.ts +7 -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: 20230831
|
|
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
|
/**
|
|
@@ -1272,7 +1275,7 @@ declare namespace gapi.client {
|
|
|
1272
1275
|
/** The egress setting for the connector, controlling what traffic is diverted through it. */
|
|
1273
1276
|
egressSetting?:
|
|
1274
1277
|
string;
|
|
1275
|
-
/** Full Serverless VPC Access Connector name e.g.
|
|
1278
|
+
/** Full Serverless VPC Access Connector name e.g. projects/my-project/locations/us-central1/connectors/c1. */
|
|
1276
1279
|
name?:
|
|
1277
1280
|
string;
|
|
1278
1281
|
}
|
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: 20230831
|
|
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",
|