google-apis-policysimulator_v1alpha 0.23.0 → 0.24.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0190a05bb79cf3a40df2bccbe8e98869aa90a9a0f99baf42c0476ccb2256fb8
4
- data.tar.gz: '058ea110f73c651ebcd43bc3f72ac6f47527cb18f12416bb2da8bbe03a86dc8b'
3
+ metadata.gz: fadf6e4aafe941f0c001449569cf6dea602c055598832ac54e9233debabb6b60
4
+ data.tar.gz: d7ce5a144e5678b8f5afdd51fafe031b8800756a8bd166502f2088dcda865d47
5
5
  SHA512:
6
- metadata.gz: b84372b75bd0eb5839aa180c78d65cd9cb00dae78d6ea650053ea5442db1f75a369bd189878d705a1967c2039202e41d3ac3c6b1afcc8f6205cb063c63faaabd
7
- data.tar.gz: 79c936489c20ac153e30c71f942d835e499d3d381a896d8b9407c722be3fc011bd1360a6155c098c72a4a1d484f383b5c3845b87bef190714358a79b3325baa5
6
+ metadata.gz: f54491fd1a444fab3a9157474ecacb0462a490a5ef13fb52c61e10c3e1542b15a96f3fcae40d8245e309e1ebe5002b97b16d88a828ef80d736d0b566f1f358f9
7
+ data.tar.gz: 301e0ab45464e44ecfcaf0c645d91ee3ede144dca6596d1ec24a56559d1351ebb7bf1c4bba42001b1d270373305641cd5ae69981d8e478796b860726dc425f3e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-policysimulator_v1alpha
2
2
 
3
+ ### v0.24.0 (2025-06-22)
4
+
5
+ * Regenerated from discovery document revision 20250614
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.23.0 (2025-05-04)
4
9
 
5
10
  * Regenerated using generator version 0.17.0
@@ -22,6 +22,351 @@ module Google
22
22
  module Apis
23
23
  module PolicysimulatorV1alpha
24
24
 
25
+ # Similar to PolicySpec but with an extra 'launch' field for launch reference.
26
+ # The PolicySpec here is specific for dry-run.
27
+ class GoogleCloudOrgpolicyV2AlternatePolicySpec
28
+ include Google::Apis::Core::Hashable
29
+
30
+ # Reference to the launch that will be used while audit logging and to control
31
+ # the launch. Should be set only in the alternate policy.
32
+ # Corresponds to the JSON property `launch`
33
+ # @return [String]
34
+ attr_accessor :launch
35
+
36
+ # Defines a Google Cloud policy specification which is used to specify
37
+ # constraints for configurations of Google Cloud resources.
38
+ # Corresponds to the JSON property `spec`
39
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec]
40
+ attr_accessor :spec
41
+
42
+ def initialize(**args)
43
+ update!(**args)
44
+ end
45
+
46
+ # Update properties of this object
47
+ def update!(**args)
48
+ @launch = args[:launch] if args.key?(:launch)
49
+ @spec = args[:spec] if args.key?(:spec)
50
+ end
51
+ end
52
+
53
+ # A custom constraint defined by customers which can *only* be applied to the
54
+ # given resource types and organization. By creating a custom constraint,
55
+ # customers can apply policies of this custom constraint. *Creating a custom
56
+ # constraint itself does NOT apply any policy enforcement*.
57
+ class GoogleCloudOrgpolicyV2CustomConstraint
58
+ include Google::Apis::Core::Hashable
59
+
60
+ # Allow or deny type.
61
+ # Corresponds to the JSON property `actionType`
62
+ # @return [String]
63
+ attr_accessor :action_type
64
+
65
+ # A Common Expression Language (CEL) condition which is used in the evaluation
66
+ # of the constraint. For example: `resource.instanceName.matches("[production|
67
+ # test]_.*_(\d)+")` or, `resource.management.auto_upgrade == true` The max
68
+ # length of the condition is 1000 characters.
69
+ # Corresponds to the JSON property `condition`
70
+ # @return [String]
71
+ attr_accessor :condition
72
+
73
+ # Detailed information about this custom policy constraint. The max length of
74
+ # the description is 2000 characters.
75
+ # Corresponds to the JSON property `description`
76
+ # @return [String]
77
+ attr_accessor :description
78
+
79
+ # One line display name for the UI. The max length of the display_name is 200
80
+ # characters.
81
+ # Corresponds to the JSON property `displayName`
82
+ # @return [String]
83
+ attr_accessor :display_name
84
+
85
+ # All the operations being applied for this constraint.
86
+ # Corresponds to the JSON property `methodTypes`
87
+ # @return [Array<String>]
88
+ attr_accessor :method_types
89
+
90
+ # Immutable. Name of the constraint. This is unique within the organization.
91
+ # Format of the name should be * `organizations/`organization_id`/
92
+ # customConstraints/`custom_constraint_id`` Example: `organizations/123/
93
+ # customConstraints/custom.createOnlyE2TypeVms` The max length is 70 characters
94
+ # and the minimum length is 1. Note that the prefix `organizations/`
95
+ # organization_id`/customConstraints/` is not counted.
96
+ # Corresponds to the JSON property `name`
97
+ # @return [String]
98
+ attr_accessor :name
99
+
100
+ # Immutable. The resource instance type on which this policy applies. Format
101
+ # will be of the form : `/` Example: * `compute.googleapis.com/Instance`.
102
+ # Corresponds to the JSON property `resourceTypes`
103
+ # @return [Array<String>]
104
+ attr_accessor :resource_types
105
+
106
+ # Output only. The last time this custom constraint was updated. This represents
107
+ # the last time that the `CreateCustomConstraint` or `UpdateCustomConstraint`
108
+ # methods were called.
109
+ # Corresponds to the JSON property `updateTime`
110
+ # @return [String]
111
+ attr_accessor :update_time
112
+
113
+ def initialize(**args)
114
+ update!(**args)
115
+ end
116
+
117
+ # Update properties of this object
118
+ def update!(**args)
119
+ @action_type = args[:action_type] if args.key?(:action_type)
120
+ @condition = args[:condition] if args.key?(:condition)
121
+ @description = args[:description] if args.key?(:description)
122
+ @display_name = args[:display_name] if args.key?(:display_name)
123
+ @method_types = args[:method_types] if args.key?(:method_types)
124
+ @name = args[:name] if args.key?(:name)
125
+ @resource_types = args[:resource_types] if args.key?(:resource_types)
126
+ @update_time = args[:update_time] if args.key?(:update_time)
127
+ end
128
+ end
129
+
130
+ # Defines an organization policy which is used to specify constraints for
131
+ # configurations of Google Cloud resources.
132
+ class GoogleCloudOrgpolicyV2Policy
133
+ include Google::Apis::Core::Hashable
134
+
135
+ # Similar to PolicySpec but with an extra 'launch' field for launch reference.
136
+ # The PolicySpec here is specific for dry-run.
137
+ # Corresponds to the JSON property `alternate`
138
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2AlternatePolicySpec]
139
+ attr_accessor :alternate
140
+
141
+ # Defines a Google Cloud policy specification which is used to specify
142
+ # constraints for configurations of Google Cloud resources.
143
+ # Corresponds to the JSON property `dryRunSpec`
144
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec]
145
+ attr_accessor :dry_run_spec
146
+
147
+ # Optional. An opaque tag indicating the current state of the policy, used for
148
+ # concurrency control. This 'etag' is computed by the server based on the value
149
+ # of other fields, and may be sent on update and delete requests to ensure the
150
+ # client has an up-to-date value before proceeding.
151
+ # Corresponds to the JSON property `etag`
152
+ # @return [String]
153
+ attr_accessor :etag
154
+
155
+ # Immutable. The resource name of the policy. Must be one of the following forms,
156
+ # where `constraint_name` is the name of the constraint which this policy
157
+ # configures: * `projects/`project_number`/policies/`constraint_name`` * `
158
+ # folders/`folder_id`/policies/`constraint_name`` * `organizations/`
159
+ # organization_id`/policies/`constraint_name`` For example, `projects/123/
160
+ # policies/compute.disableSerialPortAccess`. Note: `projects/`project_id`/
161
+ # policies/`constraint_name`` is also an acceptable name for API requests, but
162
+ # responses will return the name using the equivalent project number.
163
+ # Corresponds to the JSON property `name`
164
+ # @return [String]
165
+ attr_accessor :name
166
+
167
+ # Defines a Google Cloud policy specification which is used to specify
168
+ # constraints for configurations of Google Cloud resources.
169
+ # Corresponds to the JSON property `spec`
170
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec]
171
+ attr_accessor :spec
172
+
173
+ def initialize(**args)
174
+ update!(**args)
175
+ end
176
+
177
+ # Update properties of this object
178
+ def update!(**args)
179
+ @alternate = args[:alternate] if args.key?(:alternate)
180
+ @dry_run_spec = args[:dry_run_spec] if args.key?(:dry_run_spec)
181
+ @etag = args[:etag] if args.key?(:etag)
182
+ @name = args[:name] if args.key?(:name)
183
+ @spec = args[:spec] if args.key?(:spec)
184
+ end
185
+ end
186
+
187
+ # Defines a Google Cloud policy specification which is used to specify
188
+ # constraints for configurations of Google Cloud resources.
189
+ class GoogleCloudOrgpolicyV2PolicySpec
190
+ include Google::Apis::Core::Hashable
191
+
192
+ # An opaque tag indicating the current version of the policySpec, used for
193
+ # concurrency control. This field is ignored if used in a `CreatePolicy` request.
194
+ # When the policy is returned from either a `GetPolicy` or a `ListPolicies`
195
+ # request, this `etag` indicates the version of the current policySpec to use
196
+ # when executing a read-modify-write loop. When the policy is returned from a `
197
+ # GetEffectivePolicy` request, the `etag` will be unset.
198
+ # Corresponds to the JSON property `etag`
199
+ # @return [String]
200
+ attr_accessor :etag
201
+
202
+ # Determines the inheritance behavior for this policy. If `inherit_from_parent`
203
+ # is true, policy rules set higher up in the hierarchy (up to the closest root)
204
+ # are inherited and present in the effective policy. If it is false, then no
205
+ # rules are inherited, and this policy becomes the new root for evaluation. This
206
+ # field can be set only for policies which configure list constraints.
207
+ # Corresponds to the JSON property `inheritFromParent`
208
+ # @return [Boolean]
209
+ attr_accessor :inherit_from_parent
210
+ alias_method :inherit_from_parent?, :inherit_from_parent
211
+
212
+ # Ignores policies set above this resource and restores the `constraint_default`
213
+ # enforcement behavior of the specific constraint at this resource. This field
214
+ # can be set in policies for either list or boolean constraints. If set, `rules`
215
+ # must be empty and `inherit_from_parent` must be set to false.
216
+ # Corresponds to the JSON property `reset`
217
+ # @return [Boolean]
218
+ attr_accessor :reset
219
+ alias_method :reset?, :reset
220
+
221
+ # In policies for boolean constraints, the following requirements apply: - There
222
+ # must be one and only one policy rule where condition is unset. - Boolean
223
+ # policy rules with conditions must set `enforced` to the opposite of the policy
224
+ # rule without a condition. - During policy evaluation, policy rules with
225
+ # conditions that are true for a target resource take precedence.
226
+ # Corresponds to the JSON property `rules`
227
+ # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpecPolicyRule>]
228
+ attr_accessor :rules
229
+
230
+ # Output only. The time stamp this was previously updated. This represents the
231
+ # last time a call to `CreatePolicy` or `UpdatePolicy` was made for that policy.
232
+ # Corresponds to the JSON property `updateTime`
233
+ # @return [String]
234
+ attr_accessor :update_time
235
+
236
+ def initialize(**args)
237
+ update!(**args)
238
+ end
239
+
240
+ # Update properties of this object
241
+ def update!(**args)
242
+ @etag = args[:etag] if args.key?(:etag)
243
+ @inherit_from_parent = args[:inherit_from_parent] if args.key?(:inherit_from_parent)
244
+ @reset = args[:reset] if args.key?(:reset)
245
+ @rules = args[:rules] if args.key?(:rules)
246
+ @update_time = args[:update_time] if args.key?(:update_time)
247
+ end
248
+ end
249
+
250
+ # A rule used to express this policy.
251
+ class GoogleCloudOrgpolicyV2PolicySpecPolicyRule
252
+ include Google::Apis::Core::Hashable
253
+
254
+ # Setting this to true means that all values are allowed. This field can be set
255
+ # only in policies for list constraints.
256
+ # Corresponds to the JSON property `allowAll`
257
+ # @return [Boolean]
258
+ attr_accessor :allow_all
259
+ alias_method :allow_all?, :allow_all
260
+
261
+ # Represents a textual expression in the Common Expression Language (CEL) syntax.
262
+ # CEL is a C-like expression language. The syntax and semantics of CEL are
263
+ # documented at https://github.com/google/cel-spec. Example (Comparison): title:
264
+ # "Summary size limit" description: "Determines if a summary is less than 100
265
+ # chars" expression: "document.summary.size() < 100" Example (Equality): title: "
266
+ # Requestor is owner" description: "Determines if requestor is the document
267
+ # owner" expression: "document.owner == request.auth.claims.email" Example (
268
+ # Logic): title: "Public documents" description: "Determine whether the document
269
+ # should be publicly visible" expression: "document.type != 'private' &&
270
+ # document.type != 'internal'" Example (Data Manipulation): title: "Notification
271
+ # string" description: "Create a notification string with a timestamp."
272
+ # expression: "'New message received at ' + string(document.create_time)" The
273
+ # exact variables and functions that may be referenced within an expression are
274
+ # determined by the service that evaluates it. See the service documentation for
275
+ # additional information.
276
+ # Corresponds to the JSON property `condition`
277
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleTypeExpr]
278
+ attr_accessor :condition
279
+
280
+ # Setting this to true means that all values are denied. This field can be set
281
+ # only in policies for list constraints.
282
+ # Corresponds to the JSON property `denyAll`
283
+ # @return [Boolean]
284
+ attr_accessor :deny_all
285
+ alias_method :deny_all?, :deny_all
286
+
287
+ # If `true`, then the policy is enforced. If `false`, then any configuration is
288
+ # acceptable. This field can be set in policies for boolean constraints, custom
289
+ # constraints and managed constraints.
290
+ # Corresponds to the JSON property `enforce`
291
+ # @return [Boolean]
292
+ attr_accessor :enforce
293
+ alias_method :enforce?, :enforce
294
+
295
+ # Optional. Required for managed constraints if parameters are defined. Passes
296
+ # parameter values when policy enforcement is enabled. Ensure that parameter
297
+ # value types match those defined in the constraint definition. For example: ` "
298
+ # allowedLocations" : ["us-east1", "us-west1"], "allowAll" : true `
299
+ # Corresponds to the JSON property `parameters`
300
+ # @return [Hash<String,Object>]
301
+ attr_accessor :parameters
302
+
303
+ # A message that holds specific allowed and denied values. This message can
304
+ # define specific values and subtrees of the Resource Manager resource hierarchy
305
+ # (`Organizations`, `Folders`, `Projects`) that are allowed or denied. This is
306
+ # achieved by using the `under:` and optional `is:` prefixes. The `under:`
307
+ # prefix is used to denote resource subtree values. The `is:` prefix is used to
308
+ # denote specific values, and is required only if the value contains a ":".
309
+ # Values prefixed with "is:" are treated the same as values with no prefix.
310
+ # Ancestry subtrees must be in one of the following formats: - `projects/` (for
311
+ # example, `projects/tokyo-rain-123`) - `folders/` (for example, `folders/1234`)
312
+ # - `organizations/` (for example, `organizations/1234`) The `supports_under`
313
+ # field of the associated `Constraint` defines whether ancestry prefixes can be
314
+ # used.
315
+ # Corresponds to the JSON property `values`
316
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues]
317
+ attr_accessor :values
318
+
319
+ def initialize(**args)
320
+ update!(**args)
321
+ end
322
+
323
+ # Update properties of this object
324
+ def update!(**args)
325
+ @allow_all = args[:allow_all] if args.key?(:allow_all)
326
+ @condition = args[:condition] if args.key?(:condition)
327
+ @deny_all = args[:deny_all] if args.key?(:deny_all)
328
+ @enforce = args[:enforce] if args.key?(:enforce)
329
+ @parameters = args[:parameters] if args.key?(:parameters)
330
+ @values = args[:values] if args.key?(:values)
331
+ end
332
+ end
333
+
334
+ # A message that holds specific allowed and denied values. This message can
335
+ # define specific values and subtrees of the Resource Manager resource hierarchy
336
+ # (`Organizations`, `Folders`, `Projects`) that are allowed or denied. This is
337
+ # achieved by using the `under:` and optional `is:` prefixes. The `under:`
338
+ # prefix is used to denote resource subtree values. The `is:` prefix is used to
339
+ # denote specific values, and is required only if the value contains a ":".
340
+ # Values prefixed with "is:" are treated the same as values with no prefix.
341
+ # Ancestry subtrees must be in one of the following formats: - `projects/` (for
342
+ # example, `projects/tokyo-rain-123`) - `folders/` (for example, `folders/1234`)
343
+ # - `organizations/` (for example, `organizations/1234`) The `supports_under`
344
+ # field of the associated `Constraint` defines whether ancestry prefixes can be
345
+ # used.
346
+ class GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues
347
+ include Google::Apis::Core::Hashable
348
+
349
+ # List of values allowed at this resource.
350
+ # Corresponds to the JSON property `allowedValues`
351
+ # @return [Array<String>]
352
+ attr_accessor :allowed_values
353
+
354
+ # List of values denied at this resource.
355
+ # Corresponds to the JSON property `deniedValues`
356
+ # @return [Array<String>]
357
+ attr_accessor :denied_values
358
+
359
+ def initialize(**args)
360
+ update!(**args)
361
+ end
362
+
363
+ # Update properties of this object
364
+ def update!(**args)
365
+ @allowed_values = args[:allowed_values] if args.key?(:allowed_values)
366
+ @denied_values = args[:denied_values] if args.key?(:denied_values)
367
+ end
368
+ end
369
+
25
370
  # A resource describing a `Replay`, or simulation.
26
371
  class GoogleCloudPolicysimulatorV1Replay
27
372
  include Google::Apis::Core::Hashable
@@ -180,6 +525,321 @@ module Google
180
525
  end
181
526
  end
182
527
 
528
+ # CreateOrgPolicyViolationsPreviewOperationMetadata is metadata about an
529
+ # OrgPolicyViolationsPreview generations operation.
530
+ class GoogleCloudPolicysimulatorV1betaCreateOrgPolicyViolationsPreviewOperationMetadata
531
+ include Google::Apis::Core::Hashable
532
+
533
+ # Time when the request was received.
534
+ # Corresponds to the JSON property `requestTime`
535
+ # @return [String]
536
+ attr_accessor :request_time
537
+
538
+ # Total number of resources that need scanning. Should equal resource_scanned +
539
+ # resources_pending
540
+ # Corresponds to the JSON property `resourcesFound`
541
+ # @return [Fixnum]
542
+ attr_accessor :resources_found
543
+
544
+ # Number of resources still to scan.
545
+ # Corresponds to the JSON property `resourcesPending`
546
+ # @return [Fixnum]
547
+ attr_accessor :resources_pending
548
+
549
+ # Number of resources already scanned.
550
+ # Corresponds to the JSON property `resourcesScanned`
551
+ # @return [Fixnum]
552
+ attr_accessor :resources_scanned
553
+
554
+ # Time when the request started processing, i.e., when the state was set to
555
+ # RUNNING.
556
+ # Corresponds to the JSON property `startTime`
557
+ # @return [String]
558
+ attr_accessor :start_time
559
+
560
+ # Output only. The current state of the operation.
561
+ # Corresponds to the JSON property `state`
562
+ # @return [String]
563
+ attr_accessor :state
564
+
565
+ def initialize(**args)
566
+ update!(**args)
567
+ end
568
+
569
+ # Update properties of this object
570
+ def update!(**args)
571
+ @request_time = args[:request_time] if args.key?(:request_time)
572
+ @resources_found = args[:resources_found] if args.key?(:resources_found)
573
+ @resources_pending = args[:resources_pending] if args.key?(:resources_pending)
574
+ @resources_scanned = args[:resources_scanned] if args.key?(:resources_scanned)
575
+ @start_time = args[:start_time] if args.key?(:start_time)
576
+ @state = args[:state] if args.key?(:state)
577
+ end
578
+ end
579
+
580
+ # GenerateOrgPolicyViolationsPreviewOperationMetadata is metadata about an
581
+ # OrgPolicyViolationsPreview generations operation.
582
+ class GoogleCloudPolicysimulatorV1betaGenerateOrgPolicyViolationsPreviewOperationMetadata
583
+ include Google::Apis::Core::Hashable
584
+
585
+ # Time when the request was received.
586
+ # Corresponds to the JSON property `requestTime`
587
+ # @return [String]
588
+ attr_accessor :request_time
589
+
590
+ # Total number of resources that need scanning. Should equal resource_scanned +
591
+ # resources_pending
592
+ # Corresponds to the JSON property `resourcesFound`
593
+ # @return [Fixnum]
594
+ attr_accessor :resources_found
595
+
596
+ # Number of resources still to scan.
597
+ # Corresponds to the JSON property `resourcesPending`
598
+ # @return [Fixnum]
599
+ attr_accessor :resources_pending
600
+
601
+ # Number of resources already scanned.
602
+ # Corresponds to the JSON property `resourcesScanned`
603
+ # @return [Fixnum]
604
+ attr_accessor :resources_scanned
605
+
606
+ # Time when the request started processing, i.e. when the state was set to
607
+ # RUNNING.
608
+ # Corresponds to the JSON property `startTime`
609
+ # @return [String]
610
+ attr_accessor :start_time
611
+
612
+ # The current state of the operation.
613
+ # Corresponds to the JSON property `state`
614
+ # @return [String]
615
+ attr_accessor :state
616
+
617
+ def initialize(**args)
618
+ update!(**args)
619
+ end
620
+
621
+ # Update properties of this object
622
+ def update!(**args)
623
+ @request_time = args[:request_time] if args.key?(:request_time)
624
+ @resources_found = args[:resources_found] if args.key?(:resources_found)
625
+ @resources_pending = args[:resources_pending] if args.key?(:resources_pending)
626
+ @resources_scanned = args[:resources_scanned] if args.key?(:resources_scanned)
627
+ @start_time = args[:start_time] if args.key?(:start_time)
628
+ @state = args[:state] if args.key?(:state)
629
+ end
630
+ end
631
+
632
+ # The proposed changes to OrgPolicy.
633
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlay
634
+ include Google::Apis::Core::Hashable
635
+
636
+ # Optional. The OrgPolicy CustomConstraint changes to preview violations for.
637
+ # Any existing CustomConstraints with the same name will be overridden in the
638
+ # simulation. That is, violations will be determined as if all custom
639
+ # constraints in the overlay were instantiated. Only a single custom_constraint
640
+ # is supported in the overlay at a time. For evaluating multiple constraints,
641
+ # multiple `GenerateOrgPolicyViolationsPreview` requests are made, where each
642
+ # request evaluates a single constraint.
643
+ # Corresponds to the JSON property `customConstraints`
644
+ # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayCustomConstraintOverlay>]
645
+ attr_accessor :custom_constraints
646
+
647
+ # Optional. The OrgPolicy changes to preview violations for. Any existing
648
+ # OrgPolicies with the same name will be overridden in the simulation. That is,
649
+ # violations will be determined as if all policies in the overlay were created
650
+ # or updated.
651
+ # Corresponds to the JSON property `policies`
652
+ # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayPolicyOverlay>]
653
+ attr_accessor :policies
654
+
655
+ def initialize(**args)
656
+ update!(**args)
657
+ end
658
+
659
+ # Update properties of this object
660
+ def update!(**args)
661
+ @custom_constraints = args[:custom_constraints] if args.key?(:custom_constraints)
662
+ @policies = args[:policies] if args.key?(:policies)
663
+ end
664
+ end
665
+
666
+ # A change to an OrgPolicy custom constraint.
667
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayCustomConstraintOverlay
668
+ include Google::Apis::Core::Hashable
669
+
670
+ # A custom constraint defined by customers which can *only* be applied to the
671
+ # given resource types and organization. By creating a custom constraint,
672
+ # customers can apply policies of this custom constraint. *Creating a custom
673
+ # constraint itself does NOT apply any policy enforcement*.
674
+ # Corresponds to the JSON property `customConstraint`
675
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2CustomConstraint]
676
+ attr_accessor :custom_constraint
677
+
678
+ # Optional. Resource the constraint is attached to. Example: "organization/
679
+ # 987654"
680
+ # Corresponds to the JSON property `customConstraintParent`
681
+ # @return [String]
682
+ attr_accessor :custom_constraint_parent
683
+
684
+ def initialize(**args)
685
+ update!(**args)
686
+ end
687
+
688
+ # Update properties of this object
689
+ def update!(**args)
690
+ @custom_constraint = args[:custom_constraint] if args.key?(:custom_constraint)
691
+ @custom_constraint_parent = args[:custom_constraint_parent] if args.key?(:custom_constraint_parent)
692
+ end
693
+ end
694
+
695
+ # A change to an OrgPolicy.
696
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayPolicyOverlay
697
+ include Google::Apis::Core::Hashable
698
+
699
+ # Defines an organization policy which is used to specify constraints for
700
+ # configurations of Google Cloud resources.
701
+ # Corresponds to the JSON property `policy`
702
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2Policy]
703
+ attr_accessor :policy
704
+
705
+ # Optional. The parent of the policy we are attaching to. Example: "projects/
706
+ # 123456"
707
+ # Corresponds to the JSON property `policyParent`
708
+ # @return [String]
709
+ attr_accessor :policy_parent
710
+
711
+ def initialize(**args)
712
+ update!(**args)
713
+ end
714
+
715
+ # Update properties of this object
716
+ def update!(**args)
717
+ @policy = args[:policy] if args.key?(:policy)
718
+ @policy_parent = args[:policy_parent] if args.key?(:policy_parent)
719
+ end
720
+ end
721
+
722
+ # OrgPolicyViolationsPreview is a resource providing a preview of the violations
723
+ # that will exist if an OrgPolicy change is made. The list of violations are
724
+ # modeled as child resources and retrieved via a ListOrgPolicyViolations API
725
+ # call. There are potentially more OrgPolicyViolations than could fit in an
726
+ # embedded field. Thus, the use of a child resource instead of a field.
727
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreview
728
+ include Google::Apis::Core::Hashable
729
+
730
+ # Output only. Time when this `OrgPolicyViolationsPreview` was created.
731
+ # Corresponds to the JSON property `createTime`
732
+ # @return [String]
733
+ attr_accessor :create_time
734
+
735
+ # Output only. The names of the constraints against which all `
736
+ # OrgPolicyViolations` were evaluated. If `OrgPolicyOverlay` only contains `
737
+ # PolicyOverlay` then it contains the name of the configured custom constraint,
738
+ # applicable to the specified policies. Otherwise it contains the name of the
739
+ # constraint specified in `CustomConstraintOverlay`. Format: `organizations/`
740
+ # organization_id`/customConstraints/`custom_constraint_id`` Example: `
741
+ # organizations/123/customConstraints/custom.createOnlyE2TypeVms`
742
+ # Corresponds to the JSON property `customConstraints`
743
+ # @return [Array<String>]
744
+ attr_accessor :custom_constraints
745
+
746
+ # Output only. The resource name of the `OrgPolicyViolationsPreview`. It has the
747
+ # following format: `organizations/`organization`/locations/`location`/
748
+ # orgPolicyViolationsPreviews/`orgPolicyViolationsPreview`` Example: `
749
+ # organizations/my-example-org/locations/global/orgPolicyViolationsPreviews/
750
+ # 506a5f7f`
751
+ # Corresponds to the JSON property `name`
752
+ # @return [String]
753
+ attr_accessor :name
754
+
755
+ # The proposed changes to OrgPolicy.
756
+ # Corresponds to the JSON property `overlay`
757
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlay]
758
+ attr_accessor :overlay
759
+
760
+ # A summary of the state of all resources scanned for compliance with the
761
+ # changed OrgPolicy.
762
+ # Corresponds to the JSON property `resourceCounts`
763
+ # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreviewResourceCounts]
764
+ attr_accessor :resource_counts
765
+
766
+ # Output only. The state of the `OrgPolicyViolationsPreview`.
767
+ # Corresponds to the JSON property `state`
768
+ # @return [String]
769
+ attr_accessor :state
770
+
771
+ # Output only. The number of OrgPolicyViolations in this `
772
+ # OrgPolicyViolationsPreview`. This count may differ from `resource_summary.
773
+ # noncompliant_count` because each OrgPolicyViolation is specific to a resource *
774
+ # *and** constraint. If there are multiple constraints being evaluated (i.e.
775
+ # multiple policies in the overlay), a single resource may violate multiple
776
+ # constraints.
777
+ # Corresponds to the JSON property `violationsCount`
778
+ # @return [Fixnum]
779
+ attr_accessor :violations_count
780
+
781
+ def initialize(**args)
782
+ update!(**args)
783
+ end
784
+
785
+ # Update properties of this object
786
+ def update!(**args)
787
+ @create_time = args[:create_time] if args.key?(:create_time)
788
+ @custom_constraints = args[:custom_constraints] if args.key?(:custom_constraints)
789
+ @name = args[:name] if args.key?(:name)
790
+ @overlay = args[:overlay] if args.key?(:overlay)
791
+ @resource_counts = args[:resource_counts] if args.key?(:resource_counts)
792
+ @state = args[:state] if args.key?(:state)
793
+ @violations_count = args[:violations_count] if args.key?(:violations_count)
794
+ end
795
+ end
796
+
797
+ # A summary of the state of all resources scanned for compliance with the
798
+ # changed OrgPolicy.
799
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreviewResourceCounts
800
+ include Google::Apis::Core::Hashable
801
+
802
+ # Output only. Number of scanned resources with zero violations.
803
+ # Corresponds to the JSON property `compliant`
804
+ # @return [Fixnum]
805
+ attr_accessor :compliant
806
+
807
+ # Output only. Number of resources that returned an error when scanned.
808
+ # Corresponds to the JSON property `errors`
809
+ # @return [Fixnum]
810
+ attr_accessor :errors
811
+
812
+ # Output only. Number of scanned resources with at least one violation.
813
+ # Corresponds to the JSON property `noncompliant`
814
+ # @return [Fixnum]
815
+ attr_accessor :noncompliant
816
+
817
+ # Output only. Number of resources checked for compliance. Must equal:
818
+ # unenforced + noncompliant + compliant + error
819
+ # Corresponds to the JSON property `scanned`
820
+ # @return [Fixnum]
821
+ attr_accessor :scanned
822
+
823
+ # Output only. Number of resources where the constraint was not enforced, i.e.
824
+ # the Policy set `enforced: false` for that resource.
825
+ # Corresponds to the JSON property `unenforced`
826
+ # @return [Fixnum]
827
+ attr_accessor :unenforced
828
+
829
+ def initialize(**args)
830
+ update!(**args)
831
+ end
832
+
833
+ # Update properties of this object
834
+ def update!(**args)
835
+ @compliant = args[:compliant] if args.key?(:compliant)
836
+ @errors = args[:errors] if args.key?(:errors)
837
+ @noncompliant = args[:noncompliant] if args.key?(:noncompliant)
838
+ @scanned = args[:scanned] if args.key?(:scanned)
839
+ @unenforced = args[:unenforced] if args.key?(:unenforced)
840
+ end
841
+ end
842
+
183
843
  # Specifies the audit configuration for a service. The configuration determines
184
844
  # which permission types are logged, and what identities, if any, are exempted
185
845
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PolicysimulatorV1alpha
18
18
  # Version of the google-apis-policysimulator_v1alpha gem
19
- GEM_VERSION = "0.23.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250323"
25
+ REVISION = "20250614"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,42 @@ module Google
22
22
  module Apis
23
23
  module PolicysimulatorV1alpha
24
24
 
25
+ class GoogleCloudOrgpolicyV2AlternatePolicySpec
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class GoogleCloudOrgpolicyV2CustomConstraint
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class GoogleCloudOrgpolicyV2Policy
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
43
+ class GoogleCloudOrgpolicyV2PolicySpec
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
49
+ class GoogleCloudOrgpolicyV2PolicySpecPolicyRule
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
55
+ class GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
25
61
  class GoogleCloudPolicysimulatorV1Replay
26
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
63
 
@@ -46,6 +82,48 @@ module Google
46
82
  include Google::Apis::Core::JsonObjectSupport
47
83
  end
48
84
 
85
+ class GoogleCloudPolicysimulatorV1betaCreateOrgPolicyViolationsPreviewOperationMetadata
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
91
+ class GoogleCloudPolicysimulatorV1betaGenerateOrgPolicyViolationsPreviewOperationMetadata
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
97
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlay
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
103
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayCustomConstraintOverlay
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
109
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayPolicyOverlay
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
115
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreview
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
121
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreviewResourceCounts
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
49
127
  class GoogleIamV1AuditConfig
50
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
129
 
@@ -100,6 +178,77 @@ module Google
100
178
  include Google::Apis::Core::JsonObjectSupport
101
179
  end
102
180
 
181
+ class GoogleCloudOrgpolicyV2AlternatePolicySpec
182
+ # @private
183
+ class Representation < Google::Apis::Core::JsonRepresentation
184
+ property :launch, as: 'launch'
185
+ property :spec, as: 'spec', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec::Representation
186
+
187
+ end
188
+ end
189
+
190
+ class GoogleCloudOrgpolicyV2CustomConstraint
191
+ # @private
192
+ class Representation < Google::Apis::Core::JsonRepresentation
193
+ property :action_type, as: 'actionType'
194
+ property :condition, as: 'condition'
195
+ property :description, as: 'description'
196
+ property :display_name, as: 'displayName'
197
+ collection :method_types, as: 'methodTypes'
198
+ property :name, as: 'name'
199
+ collection :resource_types, as: 'resourceTypes'
200
+ property :update_time, as: 'updateTime'
201
+ end
202
+ end
203
+
204
+ class GoogleCloudOrgpolicyV2Policy
205
+ # @private
206
+ class Representation < Google::Apis::Core::JsonRepresentation
207
+ property :alternate, as: 'alternate', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2AlternatePolicySpec, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2AlternatePolicySpec::Representation
208
+
209
+ property :dry_run_spec, as: 'dryRunSpec', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec::Representation
210
+
211
+ property :etag, as: 'etag'
212
+ property :name, as: 'name'
213
+ property :spec, as: 'spec', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpec::Representation
214
+
215
+ end
216
+ end
217
+
218
+ class GoogleCloudOrgpolicyV2PolicySpec
219
+ # @private
220
+ class Representation < Google::Apis::Core::JsonRepresentation
221
+ property :etag, as: 'etag'
222
+ property :inherit_from_parent, as: 'inheritFromParent'
223
+ property :reset, as: 'reset'
224
+ collection :rules, as: 'rules', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpecPolicyRule, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpecPolicyRule::Representation
225
+
226
+ property :update_time, as: 'updateTime'
227
+ end
228
+ end
229
+
230
+ class GoogleCloudOrgpolicyV2PolicySpecPolicyRule
231
+ # @private
232
+ class Representation < Google::Apis::Core::JsonRepresentation
233
+ property :allow_all, as: 'allowAll'
234
+ property :condition, as: 'condition', class: Google::Apis::PolicysimulatorV1alpha::GoogleTypeExpr, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleTypeExpr::Representation
235
+
236
+ property :deny_all, as: 'denyAll'
237
+ property :enforce, as: 'enforce'
238
+ hash :parameters, as: 'parameters'
239
+ property :values, as: 'values', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues::Representation
240
+
241
+ end
242
+ end
243
+
244
+ class GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues
245
+ # @private
246
+ class Representation < Google::Apis::Core::JsonRepresentation
247
+ collection :allowed_values, as: 'allowedValues'
248
+ collection :denied_values, as: 'deniedValues'
249
+ end
250
+ end
251
+
103
252
  class GoogleCloudPolicysimulatorV1Replay
104
253
  # @private
105
254
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -142,6 +291,84 @@ module Google
142
291
  end
143
292
  end
144
293
 
294
+ class GoogleCloudPolicysimulatorV1betaCreateOrgPolicyViolationsPreviewOperationMetadata
295
+ # @private
296
+ class Representation < Google::Apis::Core::JsonRepresentation
297
+ property :request_time, as: 'requestTime'
298
+ property :resources_found, as: 'resourcesFound'
299
+ property :resources_pending, as: 'resourcesPending'
300
+ property :resources_scanned, as: 'resourcesScanned'
301
+ property :start_time, as: 'startTime'
302
+ property :state, as: 'state'
303
+ end
304
+ end
305
+
306
+ class GoogleCloudPolicysimulatorV1betaGenerateOrgPolicyViolationsPreviewOperationMetadata
307
+ # @private
308
+ class Representation < Google::Apis::Core::JsonRepresentation
309
+ property :request_time, as: 'requestTime'
310
+ property :resources_found, as: 'resourcesFound'
311
+ property :resources_pending, as: 'resourcesPending'
312
+ property :resources_scanned, as: 'resourcesScanned'
313
+ property :start_time, as: 'startTime'
314
+ property :state, as: 'state'
315
+ end
316
+ end
317
+
318
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlay
319
+ # @private
320
+ class Representation < Google::Apis::Core::JsonRepresentation
321
+ collection :custom_constraints, as: 'customConstraints', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayCustomConstraintOverlay, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayCustomConstraintOverlay::Representation
322
+
323
+ collection :policies, as: 'policies', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayPolicyOverlay, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayPolicyOverlay::Representation
324
+
325
+ end
326
+ end
327
+
328
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayCustomConstraintOverlay
329
+ # @private
330
+ class Representation < Google::Apis::Core::JsonRepresentation
331
+ property :custom_constraint, as: 'customConstraint', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2CustomConstraint, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2CustomConstraint::Representation
332
+
333
+ property :custom_constraint_parent, as: 'customConstraintParent'
334
+ end
335
+ end
336
+
337
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayPolicyOverlay
338
+ # @private
339
+ class Representation < Google::Apis::Core::JsonRepresentation
340
+ property :policy, as: 'policy', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2Policy, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2Policy::Representation
341
+
342
+ property :policy_parent, as: 'policyParent'
343
+ end
344
+ end
345
+
346
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreview
347
+ # @private
348
+ class Representation < Google::Apis::Core::JsonRepresentation
349
+ property :create_time, as: 'createTime'
350
+ collection :custom_constraints, as: 'customConstraints'
351
+ property :name, as: 'name'
352
+ property :overlay, as: 'overlay', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlay, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlay::Representation
353
+
354
+ property :resource_counts, as: 'resourceCounts', class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreviewResourceCounts, decorator: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreviewResourceCounts::Representation
355
+
356
+ property :state, as: 'state'
357
+ property :violations_count, as: 'violationsCount'
358
+ end
359
+ end
360
+
361
+ class GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreviewResourceCounts
362
+ # @private
363
+ class Representation < Google::Apis::Core::JsonRepresentation
364
+ property :compliant, as: 'compliant'
365
+ property :errors, as: 'errors'
366
+ property :noncompliant, as: 'noncompliant'
367
+ property :scanned, as: 'scanned'
368
+ property :unenforced, as: 'unenforced'
369
+ end
370
+ end
371
+
145
372
  class GoogleIamV1AuditConfig
146
373
  # @private
147
374
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-policysimulator_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-policysimulator_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-policysimulator_v1alpha/v0.23.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-policysimulator_v1alpha/v0.24.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-policysimulator_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Policy Simulator API V1alpha
79
79
  test_files: []