@maxim_mazurok/gapi.client.appengine-v1 0.0.20240902 → 0.0.20240909
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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240909
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -277,6 +277,12 @@ declare namespace gapi.client {
|
|
|
277
277
|
/** The runtime version of an App Engine flexible application. */
|
|
278
278
|
runtimeVersion?: string;
|
|
279
279
|
}
|
|
280
|
+
interface GceTag {
|
|
281
|
+
/** 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. */
|
|
282
|
+
parent?: string[];
|
|
283
|
+
/** The administrative_tag name. */
|
|
284
|
+
tag?: string;
|
|
285
|
+
}
|
|
280
286
|
interface GoogleAppengineV1betaLocationMetadata {
|
|
281
287
|
/** App Engine flexible environment is available in the given location.@OutputOnly */
|
|
282
288
|
flexibleEnvironmentAvailable?: boolean;
|
|
@@ -567,6 +573,8 @@ declare namespace gapi.client {
|
|
|
567
573
|
consumerProjectNumber?: string;
|
|
568
574
|
/** 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. */
|
|
569
575
|
consumerProjectState?: string;
|
|
576
|
+
/** The GCE tags associated with the consumer project and those inherited due to their ancestry, if any. Not supported by CCFE. */
|
|
577
|
+
gceTag?: GceTag[];
|
|
570
578
|
/** The service account authorized to operate on the consumer project. Note: CCFE only propagates P4SA with default tag to CLH. */
|
|
571
579
|
p4ServiceAccount?: string;
|
|
572
580
|
/** The producer project id. */
|