@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20250616 → 0.0.20250708

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 +1 -94
  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: 20250616
12
+ // Revision: 20250708
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -123,21 +123,6 @@ declare namespace gapi.client {
123
123
  /** ShellCommand is invoked via the agent's command line executor. */
124
124
  shellCommand?: ShellCommand;
125
125
  }
126
- interface ComponentHealth {
127
- /** The component of a workload. */
128
- component?: string;
129
- /** The detailed health checks of the component. */
130
- componentHealthChecks?: HealthCheck[];
131
- /** Output only. The type of the component health. */
132
- componentHealthType?: string;
133
- /** Output only. The requirement of the component. */
134
- isRequired?: boolean;
135
- /** Output only. The health state of the component. */
136
- state?: string;
137
- subComponentHealthes?: ComponentHealth[];
138
- /** Sub component health. */
139
- subComponentsHealth?: ComponentHealth[];
140
- }
141
126
  interface DatabaseProperties {
142
127
  /** Output only. Backup properties. */
143
128
  backupProperties?: BackupProperties;
@@ -231,18 +216,6 @@ declare namespace gapi.client {
231
216
  /** Service account of compute engine */
232
217
  serviceAccounts?: string[];
233
218
  }
234
- interface HealthCheck {
235
- /** Output only. The message of the health check. */
236
- message?: string;
237
- /** Output only. The health check source metric name. */
238
- metric?: string;
239
- /** Output only. The resource the check performs on. */
240
- resource?: CloudResource;
241
- /** Output only. The source of the health check. */
242
- source?: string;
243
- /** Output only. The state of the health check. */
244
- state?: string;
245
- }
246
219
  interface Insight {
247
220
  /** The insights data for the agent status. */
248
221
  agentStatus?: AgentStatus;
@@ -759,15 +732,6 @@ declare namespace gapi.client {
759
732
  /** Required. The type of the workload */
760
733
  workloadType?: string;
761
734
  }
762
- interface WorkloadProfileHealth {
763
- /** The time when the health check was performed. */
764
- checkTime?: string;
765
- componentHealthes?: ComponentHealth[];
766
- /** The detailed condition reports of each component. */
767
- componentsHealth?: ComponentHealth[];
768
- /** Output only. The health state of the workload. */
769
- state?: string;
770
- }
771
735
  interface WriteInsightRequest {
772
736
  /** Optional. The agent version collected this data point. */
773
737
  agentVersion?: string;
@@ -777,63 +741,7 @@ declare namespace gapi.client {
777
741
  requestId?: string;
778
742
  }
779
743
  interface WriteInsightResponse {}
780
- interface HealthesResource {
781
- /** Get the health of a discovered workload profile. */
782
- get(request?: {
783
- /** V1 error format. */
784
- '$.xgafv'?: string;
785
- /** OAuth access token. */
786
- access_token?: string;
787
- /** Data format for response. */
788
- alt?: string;
789
- /** JSONP */
790
- callback?: string;
791
- /** Selector specifying which fields to include in a partial response. */
792
- fields?: string;
793
- /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
794
- key?: string;
795
- /** Required. The resource name */
796
- name: string;
797
- /** OAuth 2.0 token for the current user. */
798
- oauth_token?: string;
799
- /** Returns response with indentations and line breaks. */
800
- prettyPrint?: boolean;
801
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
802
- quotaUser?: string;
803
- /** Upload protocol for media (e.g. "raw", "multipart"). */
804
- upload_protocol?: string;
805
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
806
- uploadType?: string;
807
- }): Request<WorkloadProfileHealth>;
808
- }
809
744
  interface DiscoveredprofilesResource {
810
- /** Gets details of a discovered workload profile. */
811
- get(request?: {
812
- /** V1 error format. */
813
- '$.xgafv'?: string;
814
- /** OAuth access token. */
815
- access_token?: string;
816
- /** Data format for response. */
817
- alt?: string;
818
- /** JSONP */
819
- callback?: string;
820
- /** Selector specifying which fields to include in a partial response. */
821
- fields?: string;
822
- /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
823
- key?: string;
824
- /** Required. Name of the resource */
825
- name: string;
826
- /** OAuth 2.0 token for the current user. */
827
- oauth_token?: string;
828
- /** Returns response with indentations and line breaks. */
829
- prettyPrint?: boolean;
830
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
831
- quotaUser?: string;
832
- /** Upload protocol for media (e.g. "raw", "multipart"). */
833
- upload_protocol?: string;
834
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
835
- uploadType?: string;
836
- }): Request<WorkloadProfile>;
837
745
  /** List discovered workload profiles */
838
746
  list(request?: {
839
747
  /** V1 error format. */
@@ -867,7 +775,6 @@ declare namespace gapi.client {
867
775
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
868
776
  uploadType?: string;
869
777
  }): Request<ListDiscoveredProfilesResponse>;
870
- healthes: HealthesResource;
871
778
  }
872
779
  interface ResultsResource {
873
780
  /** Lists the result of a single evaluation. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.workloadmanager-v1",
3
- "version": "0.0.20250616",
3
+ "version": "0.0.20250708",
4
4
  "description": "TypeScript typings for Workload Manager API v1",
5
5
  "repository": {
6
6
  "type": "git",