@maxim_mazurok/gapi.client.workloadmanager-v1 0.1.20251210 → 0.1.20260107
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 +11 -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: 20260107
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -223,7 +223,7 @@ declare namespace gapi.client {
|
|
|
223
223
|
violationMessage?: string;
|
|
224
224
|
}
|
|
225
225
|
interface ExternalDataSources {
|
|
226
|
-
/** Required. The asset type of the external data source
|
|
226
|
+
/** Required. The asset type of the external data source. This can be a supported Cloud Asset Inventory asset type (see https://cloud.google.com/asset-inventory/docs/supported-asset-types) to override the default asset type, or it can be a custom type defined by the user. */
|
|
227
227
|
assetType?: string;
|
|
228
228
|
/** Optional. Name of external data source. The name will be used inside the rego/sql to refer the external data */
|
|
229
229
|
name?: string;
|
|
@@ -464,6 +464,12 @@ declare namespace gapi.client {
|
|
|
464
464
|
/** Output only. The execution status */
|
|
465
465
|
state?: string;
|
|
466
466
|
}
|
|
467
|
+
interface RuleOutput {
|
|
468
|
+
/** Output only. Violation details generated by rule. */
|
|
469
|
+
details?: {[P in string]: string};
|
|
470
|
+
/** Output only. The message generated by rule. */
|
|
471
|
+
message?: string;
|
|
472
|
+
}
|
|
467
473
|
interface RunEvaluationRequest {
|
|
468
474
|
/** Required. The resource being created */
|
|
469
475
|
execution?: Execution;
|
|
@@ -777,8 +783,10 @@ declare namespace gapi.client {
|
|
|
777
783
|
interface ViolationDetails {
|
|
778
784
|
/** The name of the asset. */
|
|
779
785
|
asset?: string;
|
|
780
|
-
/** Details of the violation.
|
|
786
|
+
/** Details of the violation. */
|
|
781
787
|
observed?: {[P in string]: string};
|
|
788
|
+
/** Output only. The rule output of the violation. */
|
|
789
|
+
ruleOutput?: RuleOutput[];
|
|
782
790
|
/** The service account associated with the resource. */
|
|
783
791
|
serviceAccount?: string;
|
|
784
792
|
}
|