@maxim_mazurok/gapi.client.appengine-v1alpha 0.0.20240902 → 0.0.20240906
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 +9 -1
- package/package.json +1 -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=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240906
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -90,6 +90,12 @@ declare namespace gapi.client {
|
|
|
90
90
|
sslSettings?: SslSettings;
|
|
91
91
|
}
|
|
92
92
|
interface Empty {}
|
|
93
|
+
interface GceTag {
|
|
94
|
+
/** The parents(s) of the tag. Eg. projects/123, folders/456 It usually contains only one parent. But, in some corner cases, it can contain multiple parents. Currently, organizations are not supported. */
|
|
95
|
+
parent?: string[];
|
|
96
|
+
/** The administrative_tag name. */
|
|
97
|
+
tag?: string;
|
|
98
|
+
}
|
|
93
99
|
interface GoogleAppengineV1betaLocationMetadata {
|
|
94
100
|
/** App Engine flexible environment is available in the given location.@OutputOnly */
|
|
95
101
|
flexibleEnvironmentAvailable?: boolean;
|
|
@@ -234,6 +240,8 @@ declare namespace gapi.client {
|
|
|
234
240
|
consumerProjectNumber?: string;
|
|
235
241
|
/** The CCFE state of the consumer project. It is the same state that is communicated to the CLH during project events. Notice that this field is not set in the DB, it is only set in this proto when communicated to CLH in the side channel. */
|
|
236
242
|
consumerProjectState?: string;
|
|
243
|
+
/** The GCE tags associated with the consumer project and those inherited due to their ancestry, if any. Not supported by CCFE. */
|
|
244
|
+
gceTag?: GceTag[];
|
|
237
245
|
/** The service account authorized to operate on the consumer project. Note: CCFE only propagates P4SA with default tag to CLH. */
|
|
238
246
|
p4ServiceAccount?: string;
|
|
239
247
|
/** The producer project id. */
|