@maxim_mazurok/gapi.client.compute-alpha 0.0.20250708 → 0.0.20250717

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 (2) hide show
  1. package/index.d.ts +35 -1
  2. 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://www.googleapis.com/discovery/v1/apis/compute/alpha/rest
12
- // Revision: 20250708
12
+ // Revision: 20250717
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -317,6 +317,8 @@ declare namespace gapi.client {
317
317
  interface AllocationResourceStatus {
318
318
  /** Properties of this aggregatereservation. */
319
319
  aggregateAllocation?: AllocationResourceStatusAggregateAllocation;
320
+ /** [Output only] Health information for the reservation. */
321
+ healthInfo?: AllocationResourceStatusHealthInfo;
320
322
  /** The number of reservation blocks associated with this reservation. */
321
323
  reservationBlockCount?: number;
322
324
  /** Maintenance information for this reservation */
@@ -328,6 +330,14 @@ declare namespace gapi.client {
328
330
  /** Per service utilization breakdown. The Key is the Google Cloud managed service name. */
329
331
  utilizations?: {[P in string]: string};
330
332
  }
333
+ interface AllocationResourceStatusHealthInfo {
334
+ /** The number of reservation blocks that are degraded. */
335
+ degradedBlockCount?: number;
336
+ /** The health status of the reservation. */
337
+ healthStatus?: string;
338
+ /** The number of reservation blocks that are healthy. */
339
+ healthyBlockCount?: number;
340
+ }
331
341
  interface AllocationResourceStatusSpecificSKUAllocation {
332
342
  /** ID of the instance template used to populate reservation properties. */
333
343
  sourceInstanceTemplateId?: string;
@@ -10512,6 +10522,8 @@ declare namespace gapi.client {
10512
10522
  count?: number;
10513
10523
  /** [Output Only] Creation timestamp in RFC3339 text format. */
10514
10524
  creationTimestamp?: string;
10525
+ /** [Output Only] Health information for the reservation block. */
10526
+ healthInfo?: ReservationBlockHealthInfo;
10515
10527
  /** [Output Only] The unique identifier for the resource. This identifier is defined by the server. */
10516
10528
  id?: string;
10517
10529
  /** [Output Only] The number of instances that are currently in use on this reservation block. */
@@ -10539,6 +10551,14 @@ declare namespace gapi.client {
10539
10551
  /** [Output Only] Zone in which the reservation block resides. */
10540
10552
  zone?: string;
10541
10553
  }
10554
+ interface ReservationBlockHealthInfo {
10555
+ /** The number of subBlocks that are degraded. */
10556
+ degradedSubBlockCount?: number;
10557
+ /** The health status of the reservation block. */
10558
+ healthStatus?: string;
10559
+ /** The number of subBlocks that are healthy. */
10560
+ healthySubBlockCount?: number;
10561
+ }
10542
10562
  interface ReservationBlockPhysicalTopology {
10543
10563
  /** The hash of the capacity block within the cluster. */
10544
10564
  block?: string;
@@ -10651,6 +10671,8 @@ declare namespace gapi.client {
10651
10671
  count?: number;
10652
10672
  /** [Output Only] Creation timestamp in RFC3339 text format. */
10653
10673
  creationTimestamp?: string;
10674
+ /** [Output Only] Health information for the reservation subBlock. */
10675
+ healthInfo?: ReservationSubBlockHealthInfo;
10654
10676
  /** [Output Only] The unique identifier for the resource. This identifier is defined by the server. */
10655
10677
  id?: string;
10656
10678
  /** [Output Only] The number of instances that are currently in use on this reservation subBlock. */
@@ -10672,6 +10694,18 @@ declare namespace gapi.client {
10672
10694
  /** [Output Only] Zone in which the reservation subBlock resides. */
10673
10695
  zone?: string;
10674
10696
  }
10697
+ interface ReservationSubBlockHealthInfo {
10698
+ /** The number of degraded hosts in the reservation subBlock. */
10699
+ degradedHostCount?: number;
10700
+ /** The number of degraded infrastructure (e.g NV link domain) in the reservation subblock. */
10701
+ degradedInfraCount?: number;
10702
+ /** The health status of the reservation subBlock. */
10703
+ healthStatus?: string;
10704
+ /** The number of healthy hosts in the reservation subBlock. */
10705
+ healthyHostCount?: number;
10706
+ /** The number of healthy infrastructure (e.g NV link domain) in the reservation subblock. */
10707
+ healthyInfraCount?: number;
10708
+ }
10675
10709
  interface ReservationSubBlockPhysicalTopology {
10676
10710
  /** The hash of the capacity block within the cluster. */
10677
10711
  block?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.compute-alpha",
3
- "version": "0.0.20250708",
3
+ "version": "0.0.20250717",
4
4
  "description": "TypeScript typings for Compute Engine API alpha",
5
5
  "repository": {
6
6
  "type": "git",