@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20250319 → 0.0.20250416

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 +5 -85
  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://workloadmanager.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20250319
12
+ // Revision: 20250416
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -34,36 +34,6 @@ declare namespace gapi.client {
34
34
  /** parameters is a map of key/value pairs that can be used to specify additional one-time executable settings. */
35
35
  parameters?: {[P in string]: string};
36
36
  }
37
- interface APILayerServer {
38
- /** Output only. The api layer name */
39
- name?: string;
40
- /** Output only. OS information */
41
- osVersion?: string;
42
- /** Output only. resources in the component */
43
- resources?: CloudResource[];
44
- }
45
- interface AvailabilityGroup {
46
- /** Output only. The databases */
47
- databases?: string[];
48
- /** Output only. The availability group name */
49
- name?: string;
50
- /** Output only. The primary server */
51
- primaryServer?: string;
52
- /** Output only. The secondary servers */
53
- secondaryServers?: string[];
54
- }
55
- interface BackendServer {
56
- /** Output only. The backup file */
57
- backupFile?: string;
58
- /** Output only. The backup schedule */
59
- backupSchedule?: string;
60
- /** Output only. The backend name */
61
- name?: string;
62
- /** Output only. OS information */
63
- osVersion?: string;
64
- /** Output only. resources in the component */
65
- resources?: CloudResource[];
66
- }
67
37
  interface BackupProperties {
68
38
  /** Output only. The state of the latest backup. */
69
39
  latestBackupStatus?: string;
@@ -85,12 +55,6 @@ declare namespace gapi.client {
85
55
  /** Output only. resource name */
86
56
  name?: string;
87
57
  }
88
- interface Cluster {
89
- /** Output only. The nodes */
90
- nodes?: string[];
91
- /** Output only. The witness server */
92
- witnessServer?: string;
93
- }
94
58
  interface Command {
95
59
  /** AgentCommand specifies a one-time executable program for the agent to run. */
96
60
  agentCommand?: AgentCommand;
@@ -111,16 +75,6 @@ declare namespace gapi.client {
111
75
  /** Sub component health. */
112
76
  subComponentHealthes?: ComponentHealth[];
113
77
  }
114
- interface Database {
115
- /** Output only. The backup file */
116
- backupFile?: string;
117
- /** Output only. The backup schedule */
118
- backupSchedule?: string;
119
- /** Output only. The host VM */
120
- hostVm?: string;
121
- /** Output only. The database name */
122
- name?: string;
123
- }
124
78
  interface DatabaseProperties {
125
79
  /** Output only. Backup properties. */
126
80
  backupProperties?: BackupProperties;
@@ -210,14 +164,6 @@ declare namespace gapi.client {
210
164
  /** Required. URI of external data source. example of bq table {project_ID}.{dataset_ID}.{table_ID} */
211
165
  uri?: string;
212
166
  }
213
- interface FrontEndServer {
214
- /** Output only. The frontend name */
215
- name?: string;
216
- /** Output only. OS information */
217
- osVersion?: string;
218
- /** Output only. resources in the component */
219
- resources?: CloudResource[];
220
- }
221
167
  interface GceInstanceFilter {
222
168
  /** Service account of compute engine */
223
169
  serviceAccounts?: string[];
@@ -336,12 +282,6 @@ declare namespace gapi.client {
336
282
  /** All scanned resources in response */
337
283
  scannedResources?: ScannedResource[];
338
284
  }
339
- interface LoadBalancerServer {
340
- /** Output only. The IP address */
341
- ip?: string;
342
- /** Output only. The VM name */
343
- vm?: string;
344
- }
345
285
  interface Location {
346
286
  /** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
347
287
  displayName?: string;
@@ -692,16 +632,6 @@ declare namespace gapi.client {
692
632
  /** Optional. The Sqlserver system that the validation data is from. */
693
633
  type?: string;
694
634
  }
695
- interface SqlserverWorkload {
696
- /** Output only. The availability groups for sqlserver */
697
- ags?: AvailabilityGroup[];
698
- /** Output only. The cluster for sqlserver */
699
- cluster?: Cluster;
700
- /** Output only. The databases for sqlserver */
701
- databases?: Database[];
702
- /** Output only. The load balancer for sqlserver */
703
- loadBalancerServer?: LoadBalancerServer;
704
- }
705
635
  interface Status {
706
636
  /** The status code, which should be an enum value of google.rpc.Code. */
707
637
  code?: number;
@@ -718,16 +648,6 @@ declare namespace gapi.client {
718
648
  /** Output only. Number of new fixes compared to the previous execution */
719
649
  newFixes?: string;
720
650
  }
721
- interface ThreeTierWorkload {
722
- /** Output only. The API layer for three tier workload */
723
- apiLayer?: APILayerServer;
724
- /** Output only. The backend for three tier workload */
725
- backend?: BackendServer;
726
- /** Output only. the workload endpoint */
727
- endpoint?: string;
728
- /** Output only. The frontend for three tier workload */
729
- frontend?: FrontEndServer;
730
- }
731
651
  interface TorsoValidation {
732
652
  /** Required. agent_version lists the version of the agent that collected this data. */
733
653
  agentVersion?: string;
@@ -745,6 +665,8 @@ declare namespace gapi.client {
745
665
  endTime?: string;
746
666
  /** Optional. Maintenance status */
747
667
  maintenanceStatus?: string;
668
+ /** Optional. Instance maintenance behavior. Could be "MIGRATE" or "TERMINATE". */
669
+ onHostMaintenance?: string;
748
670
  /** Optional. Start time */
749
671
  startTime?: string;
750
672
  /** Optional. Type */
@@ -773,12 +695,8 @@ declare namespace gapi.client {
773
695
  refreshedTime?: string;
774
696
  /** The sap workload content */
775
697
  sapWorkload?: SapWorkload;
776
- /** The sqlserver workload content */
777
- sqlserverWorkload?: SqlserverWorkload;
778
698
  /** Output only. [output only] the current state if a a workload */
779
699
  state?: string;
780
- /** The 3 tier web app workload content */
781
- threeTierWorkload?: ThreeTierWorkload;
782
700
  /** Required. The type of the workload */
783
701
  workloadType?: string;
784
702
  }
@@ -1593,6 +1511,8 @@ declare namespace gapi.client {
1593
1511
  alt?: string;
1594
1512
  /** JSONP */
1595
1513
  callback?: string;
1514
+ /** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
1515
+ extraLocationTypes?: string | string[];
1596
1516
  /** Selector specifying which fields to include in a partial response. */
1597
1517
  fields?: string;
1598
1518
  /** A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.workloadmanager-v1",
3
- "version": "0.0.20250319",
3
+ "version": "0.0.20250416",
4
4
  "description": "TypeScript typings for Workload Manager API v1",
5
5
  "repository": {
6
6
  "type": "git",