@maxim_mazurok/gapi.client.workloadmanager-v1 0.1.20250922 → 0.1.20251015
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 +14 -3
- 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:
|
|
12
|
+
// Revision: 20251015
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -248,7 +248,7 @@ declare namespace gapi.client {
|
|
|
248
248
|
/** Optional. The instance id where the insight is generated from */
|
|
249
249
|
instanceId?: string;
|
|
250
250
|
/** The insights data for the OpenShift workload validation. */
|
|
251
|
-
openShiftValidation?:
|
|
251
|
+
openShiftValidation?: OpenShiftValidation;
|
|
252
252
|
/** The insights data for SAP system discovery. This is a copy of SAP System proto and should get updated whenever that one changes. */
|
|
253
253
|
sapDiscovery?: SapDiscovery;
|
|
254
254
|
/** The insights data for the SAP workload validation. */
|
|
@@ -329,6 +329,8 @@ declare namespace gapi.client {
|
|
|
329
329
|
nextPageToken?: string;
|
|
330
330
|
/** A list of operations that matches the specified filter in the request. */
|
|
331
331
|
operations?: Operation[];
|
|
332
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
|
|
333
|
+
unreachable?: string[];
|
|
332
334
|
}
|
|
333
335
|
interface ListRulesResponse {
|
|
334
336
|
/** A wrapper of the invalid rules that failed to be validated. */
|
|
@@ -358,7 +360,12 @@ declare namespace gapi.client {
|
|
|
358
360
|
/** Output only. Message of the notice */
|
|
359
361
|
message?: string;
|
|
360
362
|
}
|
|
361
|
-
interface OpenShiftValidation {
|
|
363
|
+
interface OpenShiftValidation {
|
|
364
|
+
/** Required. The OpenShift cluster ID (e.g. 8371bb05-7cac-4d38-82c0-0f58c4f6f936). */
|
|
365
|
+
clusterId?: string;
|
|
366
|
+
/** Required. The validation details of the OpenShift cluster in JSON format. */
|
|
367
|
+
validationDetails?: {[P in string]: any};
|
|
368
|
+
}
|
|
362
369
|
interface Operation {
|
|
363
370
|
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
|
364
371
|
done?: boolean;
|
|
@@ -418,6 +425,8 @@ declare namespace gapi.client {
|
|
|
418
425
|
state?: string;
|
|
419
426
|
}
|
|
420
427
|
interface Rule {
|
|
428
|
+
/** The CAI asset type of the rule is evaluating, for joined asset types, it will be the corresponding primary asset types. */
|
|
429
|
+
assetType?: string;
|
|
421
430
|
/** descrite rule in plain language */
|
|
422
431
|
description?: string;
|
|
423
432
|
/** the name display in UI */
|
|
@@ -1514,6 +1523,8 @@ declare namespace gapi.client {
|
|
|
1514
1523
|
prettyPrint?: boolean;
|
|
1515
1524
|
/** 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. */
|
|
1516
1525
|
quotaUser?: string;
|
|
1526
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
1527
|
+
returnPartialSuccess?: boolean;
|
|
1517
1528
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1518
1529
|
upload_protocol?: string;
|
|
1519
1530
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|