@maxim_mazurok/gapi.client.appengine-v1 0.0.20230925 → 0.0.20231016

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.
Files changed (3) hide show
  1. package/index.d.ts +18 -18
  2. package/package.json +1 -1
  3. 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=v1
12
- // Revision: 20230925
12
+ // Revision: 20231016
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -248,6 +248,22 @@ declare namespace gapi.client {
248
248
  image?:
249
249
  string;
250
250
  }
251
+ interface ContainerState {
252
+ currentReasons?:
253
+ Reasons;
254
+ /**
255
+ * 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
256
+ * 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,
257
+ * 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
258
+ * 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)
259
+ * behind a specific state, please consult with CCFE team first (cloud-ccfe-discuss@google.com).
260
+ */
261
+ previousReasons?:
262
+ Reasons;
263
+ /** 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. */
264
+ state?:
265
+ string;
266
+ }
251
267
  interface CpuUtilization {
252
268
  /** Period of time over which CPU utilization is calculated. */
253
269
  aggregationWindowLength?:
@@ -830,7 +846,7 @@ declare namespace gapi.client {
830
846
  ProjectsMetadata;
831
847
  /** The state of the project that led to this event. */
832
848
  state?:
833
- ProjectState;
849
+ ContainerState;
834
850
  }
835
851
  interface ProjectsMetadata {
836
852
  /** The consumer project id. */
@@ -861,22 +877,6 @@ declare namespace gapi.client {
861
877
  tenantProjectNumber?:
862
878
  string;
863
879
  }
864
- interface ProjectState {
865
- currentReasons?:
866
- Reasons;
867
- /**
868
- * 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
869
- * 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
870
- * 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
871
- * 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)
872
- * behind a specific state, please consult with CCFE team first (cloud-ccfe-discuss@google.com).
873
- */
874
- previousReasons?:
875
- Reasons;
876
- /** 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. */
877
- state?:
878
- string;
879
- }
880
880
  interface ReadinessCheck {
881
881
  /** A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic. */
882
882
  appStartTimeout?:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.appengine-v1",
3
- "version": "0.0.20230925",
3
+ "version": "0.0.20231016",
4
4
  "description": "TypeScript typings for App Engine Admin API v1",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20230925
6
+ // Revision: 20231016
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */