@maxim_mazurok/gapi.client.orgpolicy-v2 0.0.20241021 → 0.0.20241129
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 +5 -1
- 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://orgpolicy.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241129
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -45,6 +45,8 @@ declare namespace gapi.client {
|
|
|
45
45
|
name?: string;
|
|
46
46
|
/** Shows if dry run is supported for this constraint or not. */
|
|
47
47
|
supportsDryRun?: boolean;
|
|
48
|
+
/** Shows if simulation is supported for this constraint or not. */
|
|
49
|
+
supportsSimulation?: boolean;
|
|
48
50
|
}
|
|
49
51
|
interface GoogleCloudOrgpolicyV2ConstraintBooleanConstraint {
|
|
50
52
|
/** Custom constraint definition. This is set only for Managed Constraints */
|
|
@@ -155,6 +157,8 @@ declare namespace gapi.client {
|
|
|
155
157
|
denyAll?: boolean;
|
|
156
158
|
/** If `true`, then the policy is enforced. If `false`, then any configuration is acceptable. This field can be set only in policies for boolean constraints. */
|
|
157
159
|
enforce?: boolean;
|
|
160
|
+
/** Optional. Required for GMCs if parameters defined in constraints. Pass parameter values when policy enforcement is enabled. Ensure that parameter value types match those defined in the constraint definition. For example: { "allowedLocations" : ["us-east1", "us-west1"], "allowAll" : true } */
|
|
161
|
+
parameters?: {[P in string]: any};
|
|
158
162
|
/** List of values to be used for this policy rule. This field can be set only in policies for list constraints. */
|
|
159
163
|
values?: GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues;
|
|
160
164
|
}
|