@maxim_mazurok/gapi.client.appengine-v1alpha 0.0.20230925 → 0.0.20231004
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 +18 -18
- package/package.json +1 -1
- package/tests.ts +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: 20231004
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -86,6 +86,22 @@ declare namespace gapi.client {
|
|
|
86
86
|
publicCertificate?:
|
|
87
87
|
string;
|
|
88
88
|
}
|
|
89
|
+
interface ContainerState {
|
|
90
|
+
currentReasons?:
|
|
91
|
+
Reasons;
|
|
92
|
+
/**
|
|
93
|
+
* The previous and current reasons for a container state will be sent for a container event. CLHs that need to know the signal that caused the container event to trigger (edges) as
|
|
94
|
+
* opposed to just knowing the state can act upon differences in the previous and current reasons.Reasons will be provided for every system: service management, data governance, abuse,
|
|
95
|
+
* and billing.If this is a CCFE-triggered event used for reconciliation then the current reasons will be set to their *_CONTROL_PLANE_SYNC state. The previous reasons will contain the
|
|
96
|
+
* last known set of non-unknown non-control_plane_sync reasons for the state.Reasons fields are deprecated. New tenants should only use the state field. If you must know the reason(s)
|
|
97
|
+
* behind a specific state, please consult with CCFE team first (cloud-ccfe-discuss@google.com).
|
|
98
|
+
*/
|
|
99
|
+
previousReasons?:
|
|
100
|
+
Reasons;
|
|
101
|
+
/** The current state of the container. This state is the culmination of all of the opinions from external systems that CCFE knows about of the container. */
|
|
102
|
+
state?:
|
|
103
|
+
string;
|
|
104
|
+
}
|
|
89
105
|
interface CreateVersionMetadataV1 {
|
|
90
106
|
/** The Cloud Build ID if one was created as part of the version create. @OutputOnly */
|
|
91
107
|
cloudBuildId?:
|
|
@@ -324,7 +340,7 @@ declare namespace gapi.client {
|
|
|
324
340
|
ProjectsMetadata;
|
|
325
341
|
/** The state of the project that led to this event. */
|
|
326
342
|
state?:
|
|
327
|
-
|
|
343
|
+
ContainerState;
|
|
328
344
|
}
|
|
329
345
|
interface ProjectsMetadata {
|
|
330
346
|
/** The consumer project id. */
|
|
@@ -355,22 +371,6 @@ declare namespace gapi.client {
|
|
|
355
371
|
tenantProjectNumber?:
|
|
356
372
|
string;
|
|
357
373
|
}
|
|
358
|
-
interface ProjectState {
|
|
359
|
-
currentReasons?:
|
|
360
|
-
Reasons;
|
|
361
|
-
/**
|
|
362
|
-
* The previous and current reasons for a project state will be sent for a project event. CLHs that need to know the signal that caused the project event to trigger (edges) as opposed
|
|
363
|
-
* to just knowing the state can act upon differences in the previous and current reasons.Reasons will be provided for every system: service management, data governance, abuse, and
|
|
364
|
-
* billing.If this is a CCFE-triggered event used for reconciliation then the current reasons will be set to their *_CONTROL_PLANE_SYNC state. The previous reasons will contain the
|
|
365
|
-
* last known set of non-unknown non-control_plane_sync reasons for the state.Reasons fields are deprecated. New tenants should only use the state field. If you must know the reason(s)
|
|
366
|
-
* behind a specific state, please consult with CCFE team first (cloud-ccfe-discuss@google.com).
|
|
367
|
-
*/
|
|
368
|
-
previousReasons?:
|
|
369
|
-
Reasons;
|
|
370
|
-
/** The current state of the project. This state is the culmination of all of the opinions from external systems that CCFE knows about of the project. */
|
|
371
|
-
state?:
|
|
372
|
-
string;
|
|
373
|
-
}
|
|
374
374
|
interface Reasons {
|
|
375
375
|
abuse?:
|
|
376
376
|
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: 20231004
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|