google-apis-policysimulator_v1alpha 0.21.0 → 0.22.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.
@@ -22,350 +22,6 @@ 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 only in policies for boolean constraints.
289
- # Corresponds to the JSON property `enforce`
290
- # @return [Boolean]
291
- attr_accessor :enforce
292
- alias_method :enforce?, :enforce
293
-
294
- # Optional. Required for managed constraints if parameters are defined. Passes
295
- # parameter values when policy enforcement is enabled. Ensure that parameter
296
- # value types match those defined in the constraint definition. For example: ` "
297
- # allowedLocations" : ["us-east1", "us-west1"], "allowAll" : true `
298
- # Corresponds to the JSON property `parameters`
299
- # @return [Hash<String,Object>]
300
- attr_accessor :parameters
301
-
302
- # A message that holds specific allowed and denied values. This message can
303
- # define specific values and subtrees of the Resource Manager resource hierarchy
304
- # (`Organizations`, `Folders`, `Projects`) that are allowed or denied. This is
305
- # achieved by using the `under:` and optional `is:` prefixes. The `under:`
306
- # prefix is used to denote resource subtree values. The `is:` prefix is used to
307
- # denote specific values, and is required only if the value contains a ":".
308
- # Values prefixed with "is:" are treated the same as values with no prefix.
309
- # Ancestry subtrees must be in one of the following formats: - `projects/` (for
310
- # example, `projects/tokyo-rain-123`) - `folders/` (for example, `folders/1234`)
311
- # - `organizations/` (for example, `organizations/1234`) The `supports_under`
312
- # field of the associated `Constraint` defines whether ancestry prefixes can be
313
- # used.
314
- # Corresponds to the JSON property `values`
315
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues]
316
- attr_accessor :values
317
-
318
- def initialize(**args)
319
- update!(**args)
320
- end
321
-
322
- # Update properties of this object
323
- def update!(**args)
324
- @allow_all = args[:allow_all] if args.key?(:allow_all)
325
- @condition = args[:condition] if args.key?(:condition)
326
- @deny_all = args[:deny_all] if args.key?(:deny_all)
327
- @enforce = args[:enforce] if args.key?(:enforce)
328
- @parameters = args[:parameters] if args.key?(:parameters)
329
- @values = args[:values] if args.key?(:values)
330
- end
331
- end
332
-
333
- # A message that holds specific allowed and denied values. This message can
334
- # define specific values and subtrees of the Resource Manager resource hierarchy
335
- # (`Organizations`, `Folders`, `Projects`) that are allowed or denied. This is
336
- # achieved by using the `under:` and optional `is:` prefixes. The `under:`
337
- # prefix is used to denote resource subtree values. The `is:` prefix is used to
338
- # denote specific values, and is required only if the value contains a ":".
339
- # Values prefixed with "is:" are treated the same as values with no prefix.
340
- # Ancestry subtrees must be in one of the following formats: - `projects/` (for
341
- # example, `projects/tokyo-rain-123`) - `folders/` (for example, `folders/1234`)
342
- # - `organizations/` (for example, `organizations/1234`) The `supports_under`
343
- # field of the associated `Constraint` defines whether ancestry prefixes can be
344
- # used.
345
- class GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues
346
- include Google::Apis::Core::Hashable
347
-
348
- # List of values allowed at this resource.
349
- # Corresponds to the JSON property `allowedValues`
350
- # @return [Array<String>]
351
- attr_accessor :allowed_values
352
-
353
- # List of values denied at this resource.
354
- # Corresponds to the JSON property `deniedValues`
355
- # @return [Array<String>]
356
- attr_accessor :denied_values
357
-
358
- def initialize(**args)
359
- update!(**args)
360
- end
361
-
362
- # Update properties of this object
363
- def update!(**args)
364
- @allowed_values = args[:allowed_values] if args.key?(:allowed_values)
365
- @denied_values = args[:denied_values] if args.key?(:denied_values)
366
- end
367
- end
368
-
369
25
  # A resource describing a `Replay`, or simulation.
370
26
  class GoogleCloudPolicysimulatorV1Replay
371
27
  include Google::Apis::Core::Hashable
@@ -524,1379 +180,6 @@ module Google
524
180
  end
525
181
  end
526
182
 
527
- # A summary and comparison of the principal's access under the current (baseline)
528
- # policies and the proposed (simulated) policies for a single access tuple.
529
- class GoogleCloudPolicysimulatorV1alphaAccessStateDiff
530
- include Google::Apis::Core::Hashable
531
-
532
- # How the principal's access, specified in the AccessState field, changed
533
- # between the current (baseline) policies and proposed (simulated) policies.
534
- # Corresponds to the JSON property `accessChange`
535
- # @return [String]
536
- attr_accessor :access_change
537
-
538
- # Details about how a set of policies, listed in ExplainedPolicy, resulted in a
539
- # certain AccessState when replaying an access tuple.
540
- # Corresponds to the JSON property `baseline`
541
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaExplainedAccess]
542
- attr_accessor :baseline
543
-
544
- # Details about how a set of policies, listed in ExplainedPolicy, resulted in a
545
- # certain AccessState when replaying an access tuple.
546
- # Corresponds to the JSON property `simulated`
547
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaExplainedAccess]
548
- attr_accessor :simulated
549
-
550
- def initialize(**args)
551
- update!(**args)
552
- end
553
-
554
- # Update properties of this object
555
- def update!(**args)
556
- @access_change = args[:access_change] if args.key?(:access_change)
557
- @baseline = args[:baseline] if args.key?(:baseline)
558
- @simulated = args[:simulated] if args.key?(:simulated)
559
- end
560
- end
561
-
562
- # Information about the principal, resource, and permission to check.
563
- class GoogleCloudPolicysimulatorV1alphaAccessTuple
564
- include Google::Apis::Core::Hashable
565
-
566
- # Required. The full resource name that identifies the resource. For example, `//
567
- # compute.googleapis.com/projects/my-project/zones/us-central1-a/instances/my-
568
- # instance`. For examples of full resource names for Google Cloud services, see
569
- # https://cloud.google.com/iam/help/troubleshooter/full-resource-names.
570
- # Corresponds to the JSON property `fullResourceName`
571
- # @return [String]
572
- attr_accessor :full_resource_name
573
-
574
- # Required. The IAM permission to check for the specified principal and resource.
575
- # For a complete list of IAM permissions, see https://cloud.google.com/iam/help/
576
- # permissions/reference. For a complete list of predefined IAM roles and the
577
- # permissions in each role, see https://cloud.google.com/iam/help/roles/
578
- # reference.
579
- # Corresponds to the JSON property `permission`
580
- # @return [String]
581
- attr_accessor :permission
582
-
583
- # Required. The principal whose access you want to check, in the form of the
584
- # email address that represents that principal. For example, `alice@example.com`
585
- # or `my-service-account@my-project.iam.gserviceaccount.com`. The principal must
586
- # be a Google Account or a service account. Other types of principals are not
587
- # supported.
588
- # Corresponds to the JSON property `principal`
589
- # @return [String]
590
- attr_accessor :principal
591
-
592
- def initialize(**args)
593
- update!(**args)
594
- end
595
-
596
- # Update properties of this object
597
- def update!(**args)
598
- @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
599
- @permission = args[:permission] if args.key?(:permission)
600
- @principal = args[:principal] if args.key?(:principal)
601
- end
602
- end
603
-
604
- # Details about how a binding in a policy affects a principal's ability to use a
605
- # permission.
606
- class GoogleCloudPolicysimulatorV1alphaBindingExplanation
607
- include Google::Apis::Core::Hashable
608
-
609
- # Required. Indicates whether _this binding_ provides the specified permission
610
- # to the specified principal for the specified resource. This field does _not_
611
- # indicate whether the principal actually has the permission for the resource.
612
- # There might be another binding that overrides this binding. To determine
613
- # whether the principal actually has the permission, use the `access` field in
614
- # the TroubleshootIamPolicyResponse.
615
- # Corresponds to the JSON property `access`
616
- # @return [String]
617
- attr_accessor :access
618
-
619
- # Represents a textual expression in the Common Expression Language (CEL) syntax.
620
- # CEL is a C-like expression language. The syntax and semantics of CEL are
621
- # documented at https://github.com/google/cel-spec. Example (Comparison): title:
622
- # "Summary size limit" description: "Determines if a summary is less than 100
623
- # chars" expression: "document.summary.size() < 100" Example (Equality): title: "
624
- # Requestor is owner" description: "Determines if requestor is the document
625
- # owner" expression: "document.owner == request.auth.claims.email" Example (
626
- # Logic): title: "Public documents" description: "Determine whether the document
627
- # should be publicly visible" expression: "document.type != 'private' &&
628
- # document.type != 'internal'" Example (Data Manipulation): title: "Notification
629
- # string" description: "Create a notification string with a timestamp."
630
- # expression: "'New message received at ' + string(document.create_time)" The
631
- # exact variables and functions that may be referenced within an expression are
632
- # determined by the service that evaluates it. See the service documentation for
633
- # additional information.
634
- # Corresponds to the JSON property `condition`
635
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleTypeExpr]
636
- attr_accessor :condition
637
-
638
- # Indicates whether each principal in the binding includes the principal
639
- # specified in the request, either directly or indirectly. Each key identifies a
640
- # principal in the binding, and each value indicates whether the principal in
641
- # the binding includes the principal in the request. For example, suppose that a
642
- # binding includes the following principals: * `user:alice@example.com` * `group:
643
- # product-eng@example.com` The principal in the replayed access tuple is `user:
644
- # bob@example.com`. This user is a principal of the group `group:product-eng@
645
- # example.com`. For the first principal in the binding, the key is `user:alice@
646
- # example.com`, and the `membership` field in the value is set to `
647
- # MEMBERSHIP_NOT_INCLUDED`. For the second principal in the binding, the key is `
648
- # group:product-eng@example.com`, and the `membership` field in the value is set
649
- # to `MEMBERSHIP_INCLUDED`.
650
- # Corresponds to the JSON property `memberships`
651
- # @return [Hash<String,Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaBindingExplanationAnnotatedMembership>]
652
- attr_accessor :memberships
653
-
654
- # The relevance of this binding to the overall determination for the entire
655
- # policy.
656
- # Corresponds to the JSON property `relevance`
657
- # @return [String]
658
- attr_accessor :relevance
659
-
660
- # The role that this binding grants. For example, `roles/compute.serviceAgent`.
661
- # For a complete list of predefined IAM roles, as well as the permissions in
662
- # each role, see https://cloud.google.com/iam/help/roles/reference.
663
- # Corresponds to the JSON property `role`
664
- # @return [String]
665
- attr_accessor :role
666
-
667
- # Indicates whether the role granted by this binding contains the specified
668
- # permission.
669
- # Corresponds to the JSON property `rolePermission`
670
- # @return [String]
671
- attr_accessor :role_permission
672
-
673
- # The relevance of the permission's existence, or nonexistence, in the role to
674
- # the overall determination for the entire policy.
675
- # Corresponds to the JSON property `rolePermissionRelevance`
676
- # @return [String]
677
- attr_accessor :role_permission_relevance
678
-
679
- def initialize(**args)
680
- update!(**args)
681
- end
682
-
683
- # Update properties of this object
684
- def update!(**args)
685
- @access = args[:access] if args.key?(:access)
686
- @condition = args[:condition] if args.key?(:condition)
687
- @memberships = args[:memberships] if args.key?(:memberships)
688
- @relevance = args[:relevance] if args.key?(:relevance)
689
- @role = args[:role] if args.key?(:role)
690
- @role_permission = args[:role_permission] if args.key?(:role_permission)
691
- @role_permission_relevance = args[:role_permission_relevance] if args.key?(:role_permission_relevance)
692
- end
693
- end
694
-
695
- # Details about whether the binding includes the principal.
696
- class GoogleCloudPolicysimulatorV1alphaBindingExplanationAnnotatedMembership
697
- include Google::Apis::Core::Hashable
698
-
699
- # Indicates whether the binding includes the principal.
700
- # Corresponds to the JSON property `membership`
701
- # @return [String]
702
- attr_accessor :membership
703
-
704
- # The relevance of the principal's status to the overall determination for the
705
- # binding.
706
- # Corresponds to the JSON property `relevance`
707
- # @return [String]
708
- attr_accessor :relevance
709
-
710
- def initialize(**args)
711
- update!(**args)
712
- end
713
-
714
- # Update properties of this object
715
- def update!(**args)
716
- @membership = args[:membership] if args.key?(:membership)
717
- @relevance = args[:relevance] if args.key?(:relevance)
718
- end
719
- end
720
-
721
- # CreateOrgPolicyViolationsPreviewOperationMetadata is metadata about an
722
- # OrgPolicyViolationsPreview generations operation.
723
- class GoogleCloudPolicysimulatorV1alphaCreateOrgPolicyViolationsPreviewOperationMetadata
724
- include Google::Apis::Core::Hashable
725
-
726
- # Time when the request was received.
727
- # Corresponds to the JSON property `requestTime`
728
- # @return [String]
729
- attr_accessor :request_time
730
-
731
- # Total number of resources that need scanning. Should equal resource_scanned +
732
- # resources_pending
733
- # Corresponds to the JSON property `resourcesFound`
734
- # @return [Fixnum]
735
- attr_accessor :resources_found
736
-
737
- # Number of resources still to scan.
738
- # Corresponds to the JSON property `resourcesPending`
739
- # @return [Fixnum]
740
- attr_accessor :resources_pending
741
-
742
- # Number of resources already scanned.
743
- # Corresponds to the JSON property `resourcesScanned`
744
- # @return [Fixnum]
745
- attr_accessor :resources_scanned
746
-
747
- # Time when the request started processing, i.e., when the state was set to
748
- # RUNNING.
749
- # Corresponds to the JSON property `startTime`
750
- # @return [String]
751
- attr_accessor :start_time
752
-
753
- # Output only. The current state of the operation.
754
- # Corresponds to the JSON property `state`
755
- # @return [String]
756
- attr_accessor :state
757
-
758
- def initialize(**args)
759
- update!(**args)
760
- end
761
-
762
- # Update properties of this object
763
- def update!(**args)
764
- @request_time = args[:request_time] if args.key?(:request_time)
765
- @resources_found = args[:resources_found] if args.key?(:resources_found)
766
- @resources_pending = args[:resources_pending] if args.key?(:resources_pending)
767
- @resources_scanned = args[:resources_scanned] if args.key?(:resources_scanned)
768
- @start_time = args[:start_time] if args.key?(:start_time)
769
- @state = args[:state] if args.key?(:state)
770
- end
771
- end
772
-
773
- # Details about how a set of policies, listed in ExplainedPolicy, resulted in a
774
- # certain AccessState when replaying an access tuple.
775
- class GoogleCloudPolicysimulatorV1alphaExplainedAccess
776
- include Google::Apis::Core::Hashable
777
-
778
- # Whether the principal in the access tuple has permission to access the
779
- # resource in the access tuple under the given policies.
780
- # Corresponds to the JSON property `accessState`
781
- # @return [String]
782
- attr_accessor :access_state
783
-
784
- # If the AccessState is `UNKNOWN`, this field contains a list of errors
785
- # explaining why the result is `UNKNOWN`. If the `AccessState` is `GRANTED` or `
786
- # NOT_GRANTED`, this field is omitted.
787
- # Corresponds to the JSON property `errors`
788
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleRpcStatus>]
789
- attr_accessor :errors
790
-
791
- # If the AccessState is `UNKNOWN`, this field contains the policies that led to
792
- # that result. If the `AccessState` is `GRANTED` or `NOT_GRANTED`, this field is
793
- # omitted.
794
- # Corresponds to the JSON property `policies`
795
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaExplainedPolicy>]
796
- attr_accessor :policies
797
-
798
- def initialize(**args)
799
- update!(**args)
800
- end
801
-
802
- # Update properties of this object
803
- def update!(**args)
804
- @access_state = args[:access_state] if args.key?(:access_state)
805
- @errors = args[:errors] if args.key?(:errors)
806
- @policies = args[:policies] if args.key?(:policies)
807
- end
808
- end
809
-
810
- # Details about how a specific IAM Policy contributed to the access check.
811
- class GoogleCloudPolicysimulatorV1alphaExplainedPolicy
812
- include Google::Apis::Core::Hashable
813
-
814
- # Indicates whether _this policy_ provides the specified permission to the
815
- # specified principal for the specified resource. This field does _not_ indicate
816
- # whether the principal actually has the permission for the resource. There
817
- # might be another policy that overrides this policy. To determine whether the
818
- # principal actually has the permission, use the `access` field in the
819
- # TroubleshootIamPolicyResponse.
820
- # Corresponds to the JSON property `access`
821
- # @return [String]
822
- attr_accessor :access
823
-
824
- # Details about how each binding in the policy affects the principal's ability,
825
- # or inability, to use the permission for the resource. If the user who created
826
- # the Replay does not have access to the policy, this field is omitted.
827
- # Corresponds to the JSON property `bindingExplanations`
828
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaBindingExplanation>]
829
- attr_accessor :binding_explanations
830
-
831
- # The full resource name that identifies the resource. For example, `//compute.
832
- # googleapis.com/projects/my-project/zones/us-central1-a/instances/my-instance`.
833
- # If the user who created the Replay does not have access to the policy, this
834
- # field is omitted. For examples of full resource names for Google Cloud
835
- # services, see https://cloud.google.com/iam/help/troubleshooter/full-resource-
836
- # names.
837
- # Corresponds to the JSON property `fullResourceName`
838
- # @return [String]
839
- attr_accessor :full_resource_name
840
-
841
- # An Identity and Access Management (IAM) policy, which specifies access
842
- # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
843
- # A `binding` binds one or more `members`, or principals, to a single `role`.
844
- # Principals can be user accounts, service accounts, Google groups, and domains (
845
- # such as G Suite). A `role` is a named list of permissions; each `role` can be
846
- # an IAM predefined role or a user-created custom role. For some types of Google
847
- # Cloud resources, a `binding` can also specify a `condition`, which is a
848
- # logical expression that allows access to a resource only if the expression
849
- # evaluates to `true`. A condition can add constraints based on attributes of
850
- # the request, the resource, or both. To learn which resources support
851
- # conditions in their IAM policies, see the [IAM documentation](https://cloud.
852
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
853
- # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
854
- # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
855
- # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
856
- # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
857
- # ], "condition": ` "title": "expirable access", "description": "Does not grant
858
- # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
859
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
860
- # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
861
- # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
862
- # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
863
- # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
864
- # title: expirable access description: Does not grant access after Sep 2020
865
- # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
866
- # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
867
- # [IAM documentation](https://cloud.google.com/iam/docs/).
868
- # Corresponds to the JSON property `policy`
869
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleIamV1Policy]
870
- attr_accessor :policy
871
-
872
- # The relevance of this policy to the overall determination in the
873
- # TroubleshootIamPolicyResponse. If the user who created the Replay does not
874
- # have access to the policy, this field is omitted.
875
- # Corresponds to the JSON property `relevance`
876
- # @return [String]
877
- attr_accessor :relevance
878
-
879
- def initialize(**args)
880
- update!(**args)
881
- end
882
-
883
- # Update properties of this object
884
- def update!(**args)
885
- @access = args[:access] if args.key?(:access)
886
- @binding_explanations = args[:binding_explanations] if args.key?(:binding_explanations)
887
- @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
888
- @policy = args[:policy] if args.key?(:policy)
889
- @relevance = args[:relevance] if args.key?(:relevance)
890
- end
891
- end
892
-
893
- # GenerateOrgPolicyViolationsPreviewOperationMetadata is metadata about an
894
- # OrgPolicyViolationsPreview generations operation.
895
- class GoogleCloudPolicysimulatorV1alphaGenerateOrgPolicyViolationsPreviewOperationMetadata
896
- include Google::Apis::Core::Hashable
897
-
898
- # Time when the request was received.
899
- # Corresponds to the JSON property `requestTime`
900
- # @return [String]
901
- attr_accessor :request_time
902
-
903
- # Total number of resources that need scanning. Should equal resource_scanned +
904
- # resources_pending
905
- # Corresponds to the JSON property `resourcesFound`
906
- # @return [Fixnum]
907
- attr_accessor :resources_found
908
-
909
- # Number of resources still to scan.
910
- # Corresponds to the JSON property `resourcesPending`
911
- # @return [Fixnum]
912
- attr_accessor :resources_pending
913
-
914
- # Number of resources already scanned.
915
- # Corresponds to the JSON property `resourcesScanned`
916
- # @return [Fixnum]
917
- attr_accessor :resources_scanned
918
-
919
- # Time when the request started processing, i.e. when the state was set to
920
- # RUNNING.
921
- # Corresponds to the JSON property `startTime`
922
- # @return [String]
923
- attr_accessor :start_time
924
-
925
- # The current state of the operation.
926
- # Corresponds to the JSON property `state`
927
- # @return [String]
928
- attr_accessor :state
929
-
930
- def initialize(**args)
931
- update!(**args)
932
- end
933
-
934
- # Update properties of this object
935
- def update!(**args)
936
- @request_time = args[:request_time] if args.key?(:request_time)
937
- @resources_found = args[:resources_found] if args.key?(:resources_found)
938
- @resources_pending = args[:resources_pending] if args.key?(:resources_pending)
939
- @resources_scanned = args[:resources_scanned] if args.key?(:resources_scanned)
940
- @start_time = args[:start_time] if args.key?(:start_time)
941
- @state = args[:state] if args.key?(:state)
942
- end
943
- end
944
-
945
- # ListOrgPolicyViolationsPreviewsResponse is the response message for
946
- # OrgPolicyViolationsPreviewService.ListOrgPolicyViolationsPreviews.
947
- class GoogleCloudPolicysimulatorV1alphaListOrgPolicyViolationsPreviewsResponse
948
- include Google::Apis::Core::Hashable
949
-
950
- # A token that you can use to retrieve the next page of results. If this field
951
- # is omitted, there are no subsequent pages.
952
- # Corresponds to the JSON property `nextPageToken`
953
- # @return [String]
954
- attr_accessor :next_page_token
955
-
956
- # The list of OrgPolicyViolationsPreview
957
- # Corresponds to the JSON property `orgPolicyViolationsPreviews`
958
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreview>]
959
- attr_accessor :org_policy_violations_previews
960
-
961
- def initialize(**args)
962
- update!(**args)
963
- end
964
-
965
- # Update properties of this object
966
- def update!(**args)
967
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
968
- @org_policy_violations_previews = args[:org_policy_violations_previews] if args.key?(:org_policy_violations_previews)
969
- end
970
- end
971
-
972
- # ListOrgPolicyViolationsResponse is the response message for
973
- # OrgPolicyViolationsPreviewService.ListOrgPolicyViolations
974
- class GoogleCloudPolicysimulatorV1alphaListOrgPolicyViolationsResponse
975
- include Google::Apis::Core::Hashable
976
-
977
- # A token that you can use to retrieve the next page of results. If this field
978
- # is omitted, there are no subsequent pages.
979
- # Corresponds to the JSON property `nextPageToken`
980
- # @return [String]
981
- attr_accessor :next_page_token
982
-
983
- # The list of OrgPolicyViolations
984
- # Corresponds to the JSON property `orgPolicyViolations`
985
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaOrgPolicyViolation>]
986
- attr_accessor :org_policy_violations
987
-
988
- def initialize(**args)
989
- update!(**args)
990
- end
991
-
992
- # Update properties of this object
993
- def update!(**args)
994
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
995
- @org_policy_violations = args[:org_policy_violations] if args.key?(:org_policy_violations)
996
- end
997
- end
998
-
999
- # Response message for Simulator.ListReplayResults.
1000
- class GoogleCloudPolicysimulatorV1alphaListReplayResultsResponse
1001
- include Google::Apis::Core::Hashable
1002
-
1003
- # A token that you can use to retrieve the next page of ReplayResult objects. If
1004
- # this field is omitted, there are no subsequent pages.
1005
- # Corresponds to the JSON property `nextPageToken`
1006
- # @return [String]
1007
- attr_accessor :next_page_token
1008
-
1009
- # The results of running a Replay.
1010
- # Corresponds to the JSON property `replayResults`
1011
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaReplayResult>]
1012
- attr_accessor :replay_results
1013
-
1014
- def initialize(**args)
1015
- update!(**args)
1016
- end
1017
-
1018
- # Update properties of this object
1019
- def update!(**args)
1020
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1021
- @replay_results = args[:replay_results] if args.key?(:replay_results)
1022
- end
1023
- end
1024
-
1025
- # Response message for Simulator.ListReplays.
1026
- class GoogleCloudPolicysimulatorV1alphaListReplaysResponse
1027
- include Google::Apis::Core::Hashable
1028
-
1029
- # A token that you can use to retrieve the next page of results. If this field
1030
- # is omitted, there are no subsequent pages.
1031
- # Corresponds to the JSON property `nextPageToken`
1032
- # @return [String]
1033
- attr_accessor :next_page_token
1034
-
1035
- # The list of Replay objects.
1036
- # Corresponds to the JSON property `replays`
1037
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaReplay>]
1038
- attr_accessor :replays
1039
-
1040
- def initialize(**args)
1041
- update!(**args)
1042
- end
1043
-
1044
- # Update properties of this object
1045
- def update!(**args)
1046
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1047
- @replays = args[:replays] if args.key?(:replays)
1048
- end
1049
- end
1050
-
1051
- # The proposed changes to OrgPolicy.
1052
- class GoogleCloudPolicysimulatorV1alphaOrgPolicyOverlay
1053
- include Google::Apis::Core::Hashable
1054
-
1055
- # Optional. The OrgPolicy CustomConstraint changes to preview violations for.
1056
- # Any existing CustomConstraints with the same name will be overridden in the
1057
- # simulation. That is, violations will be determined as if all custom
1058
- # constraints in the overlay were instantiated. Only a single custom_constraint
1059
- # is supported in the overlay at a time. For evaluating multiple constraints,
1060
- # multiple `GenerateOrgPolicyViolationsPreview` requests are made, where each
1061
- # request evaluates a single constraint.
1062
- # Corresponds to the JSON property `customConstraints`
1063
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaOrgPolicyOverlayCustomConstraintOverlay>]
1064
- attr_accessor :custom_constraints
1065
-
1066
- # Optional. The OrgPolicy changes to preview violations for. Any existing
1067
- # OrgPolicies with the same name will be overridden in the simulation. That is,
1068
- # violations will be determined as if all policies in the overlay were created
1069
- # or updated.
1070
- # Corresponds to the JSON property `policies`
1071
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaOrgPolicyOverlayPolicyOverlay>]
1072
- attr_accessor :policies
1073
-
1074
- def initialize(**args)
1075
- update!(**args)
1076
- end
1077
-
1078
- # Update properties of this object
1079
- def update!(**args)
1080
- @custom_constraints = args[:custom_constraints] if args.key?(:custom_constraints)
1081
- @policies = args[:policies] if args.key?(:policies)
1082
- end
1083
- end
1084
-
1085
- # A change to an OrgPolicy custom constraint.
1086
- class GoogleCloudPolicysimulatorV1alphaOrgPolicyOverlayCustomConstraintOverlay
1087
- include Google::Apis::Core::Hashable
1088
-
1089
- # A custom constraint defined by customers which can *only* be applied to the
1090
- # given resource types and organization. By creating a custom constraint,
1091
- # customers can apply policies of this custom constraint. *Creating a custom
1092
- # constraint itself does NOT apply any policy enforcement*.
1093
- # Corresponds to the JSON property `customConstraint`
1094
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2CustomConstraint]
1095
- attr_accessor :custom_constraint
1096
-
1097
- # Optional. Resource the constraint is attached to. Example: "organization/
1098
- # 987654"
1099
- # Corresponds to the JSON property `customConstraintParent`
1100
- # @return [String]
1101
- attr_accessor :custom_constraint_parent
1102
-
1103
- def initialize(**args)
1104
- update!(**args)
1105
- end
1106
-
1107
- # Update properties of this object
1108
- def update!(**args)
1109
- @custom_constraint = args[:custom_constraint] if args.key?(:custom_constraint)
1110
- @custom_constraint_parent = args[:custom_constraint_parent] if args.key?(:custom_constraint_parent)
1111
- end
1112
- end
1113
-
1114
- # A change to an OrgPolicy.
1115
- class GoogleCloudPolicysimulatorV1alphaOrgPolicyOverlayPolicyOverlay
1116
- include Google::Apis::Core::Hashable
1117
-
1118
- # Defines an organization policy which is used to specify constraints for
1119
- # configurations of Google Cloud resources.
1120
- # Corresponds to the JSON property `policy`
1121
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2Policy]
1122
- attr_accessor :policy
1123
-
1124
- # Optional. The parent of the policy we are attaching to. Example: "projects/
1125
- # 123456"
1126
- # Corresponds to the JSON property `policyParent`
1127
- # @return [String]
1128
- attr_accessor :policy_parent
1129
-
1130
- def initialize(**args)
1131
- update!(**args)
1132
- end
1133
-
1134
- # Update properties of this object
1135
- def update!(**args)
1136
- @policy = args[:policy] if args.key?(:policy)
1137
- @policy_parent = args[:policy_parent] if args.key?(:policy_parent)
1138
- end
1139
- end
1140
-
1141
- # OrgPolicyViolation is a resource representing a single resource violating a
1142
- # single OrgPolicy constraint.
1143
- class GoogleCloudPolicysimulatorV1alphaOrgPolicyViolation
1144
- include Google::Apis::Core::Hashable
1145
-
1146
- # A custom constraint defined by customers which can *only* be applied to the
1147
- # given resource types and organization. By creating a custom constraint,
1148
- # customers can apply policies of this custom constraint. *Creating a custom
1149
- # constraint itself does NOT apply any policy enforcement*.
1150
- # Corresponds to the JSON property `customConstraint`
1151
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2CustomConstraint]
1152
- attr_accessor :custom_constraint
1153
-
1154
- # The `Status` type defines a logical error model that is suitable for different
1155
- # programming environments, including REST APIs and RPC APIs. It is used by [
1156
- # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
1157
- # data: error code, error message, and error details. You can find out more
1158
- # about this error model and how to work with it in the [API Design Guide](https:
1159
- # //cloud.google.com/apis/design/errors).
1160
- # Corresponds to the JSON property `error`
1161
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleRpcStatus]
1162
- attr_accessor :error
1163
-
1164
- # The name of the `OrgPolicyViolation`. Example: organizations/my-example-org/
1165
- # locations/global/orgPolicyViolationsPreviews/506a5f7f/orgPolicyViolations/38ce`
1166
- # Corresponds to the JSON property `name`
1167
- # @return [String]
1168
- attr_accessor :name
1169
-
1170
- # ResourceContext provides the context we know about a resource. It is similar
1171
- # in concept to google.cloud.asset.v1.Resource, but focuses on the information
1172
- # specifically used by Simulator.
1173
- # Corresponds to the JSON property `resource`
1174
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaResourceContext]
1175
- attr_accessor :resource
1176
-
1177
- def initialize(**args)
1178
- update!(**args)
1179
- end
1180
-
1181
- # Update properties of this object
1182
- def update!(**args)
1183
- @custom_constraint = args[:custom_constraint] if args.key?(:custom_constraint)
1184
- @error = args[:error] if args.key?(:error)
1185
- @name = args[:name] if args.key?(:name)
1186
- @resource = args[:resource] if args.key?(:resource)
1187
- end
1188
- end
1189
-
1190
- # OrgPolicyViolationsPreview is a resource providing a preview of the violations
1191
- # that will exist if an OrgPolicy change is made. The list of violations are
1192
- # modeled as child resources and retrieved via a ListOrgPolicyViolations API
1193
- # call. There are potentially more OrgPolicyViolations than could fit in an
1194
- # embedded field. Thus, the use of a child resource instead of a field.
1195
- class GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreview
1196
- include Google::Apis::Core::Hashable
1197
-
1198
- # Output only. Time when this `OrgPolicyViolationsPreview` was created.
1199
- # Corresponds to the JSON property `createTime`
1200
- # @return [String]
1201
- attr_accessor :create_time
1202
-
1203
- # Output only. The names of the constraints against which all `
1204
- # OrgPolicyViolations` were evaluated. If `OrgPolicyOverlay` only contains `
1205
- # PolicyOverlay` then it contains the name of the configured custom constraint,
1206
- # applicable to the specified policies. Otherwise it contains the name of the
1207
- # constraint specified in `CustomConstraintOverlay`. Format: `organizations/`
1208
- # organization_id`/customConstraints/`custom_constraint_id`` Example: `
1209
- # organizations/123/customConstraints/custom.createOnlyE2TypeVms`
1210
- # Corresponds to the JSON property `customConstraints`
1211
- # @return [Array<String>]
1212
- attr_accessor :custom_constraints
1213
-
1214
- # Output only. The resource name of the `OrgPolicyViolationsPreview`. It has the
1215
- # following format: `organizations/`organization`/locations/`location`/
1216
- # orgPolicyViolationsPreviews/`orgPolicyViolationsPreview`` Example: `
1217
- # organizations/my-example-org/locations/global/orgPolicyViolationsPreviews/
1218
- # 506a5f7f`
1219
- # Corresponds to the JSON property `name`
1220
- # @return [String]
1221
- attr_accessor :name
1222
-
1223
- # The proposed changes to OrgPolicy.
1224
- # Corresponds to the JSON property `overlay`
1225
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaOrgPolicyOverlay]
1226
- attr_accessor :overlay
1227
-
1228
- # A summary of the state of all resources scanned for compliance with the
1229
- # changed OrgPolicy.
1230
- # Corresponds to the JSON property `resourceCounts`
1231
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreviewResourceCounts]
1232
- attr_accessor :resource_counts
1233
-
1234
- # Output only. The state of the `OrgPolicyViolationsPreview`.
1235
- # Corresponds to the JSON property `state`
1236
- # @return [String]
1237
- attr_accessor :state
1238
-
1239
- # Output only. The number of OrgPolicyViolations in this `
1240
- # OrgPolicyViolationsPreview`. This count may differ from `resource_summary.
1241
- # noncompliant_count` because each OrgPolicyViolation is specific to a resource *
1242
- # *and** constraint. If there are multiple constraints being evaluated (i.e.
1243
- # multiple policies in the overlay), a single resource may violate multiple
1244
- # constraints.
1245
- # Corresponds to the JSON property `violationsCount`
1246
- # @return [Fixnum]
1247
- attr_accessor :violations_count
1248
-
1249
- def initialize(**args)
1250
- update!(**args)
1251
- end
1252
-
1253
- # Update properties of this object
1254
- def update!(**args)
1255
- @create_time = args[:create_time] if args.key?(:create_time)
1256
- @custom_constraints = args[:custom_constraints] if args.key?(:custom_constraints)
1257
- @name = args[:name] if args.key?(:name)
1258
- @overlay = args[:overlay] if args.key?(:overlay)
1259
- @resource_counts = args[:resource_counts] if args.key?(:resource_counts)
1260
- @state = args[:state] if args.key?(:state)
1261
- @violations_count = args[:violations_count] if args.key?(:violations_count)
1262
- end
1263
- end
1264
-
1265
- # A summary of the state of all resources scanned for compliance with the
1266
- # changed OrgPolicy.
1267
- class GoogleCloudPolicysimulatorV1alphaOrgPolicyViolationsPreviewResourceCounts
1268
- include Google::Apis::Core::Hashable
1269
-
1270
- # Output only. Number of scanned resources with zero violations.
1271
- # Corresponds to the JSON property `compliant`
1272
- # @return [Fixnum]
1273
- attr_accessor :compliant
1274
-
1275
- # Output only. Number of resources that returned an error when scanned.
1276
- # Corresponds to the JSON property `errors`
1277
- # @return [Fixnum]
1278
- attr_accessor :errors
1279
-
1280
- # Output only. Number of scanned resources with at least one violation.
1281
- # Corresponds to the JSON property `noncompliant`
1282
- # @return [Fixnum]
1283
- attr_accessor :noncompliant
1284
-
1285
- # Output only. Number of resources checked for compliance. Must equal:
1286
- # unenforced + noncompliant + compliant + error
1287
- # Corresponds to the JSON property `scanned`
1288
- # @return [Fixnum]
1289
- attr_accessor :scanned
1290
-
1291
- # Output only. Number of resources where the constraint was not enforced, i.e.
1292
- # the Policy set `enforced: false` for that resource.
1293
- # Corresponds to the JSON property `unenforced`
1294
- # @return [Fixnum]
1295
- attr_accessor :unenforced
1296
-
1297
- def initialize(**args)
1298
- update!(**args)
1299
- end
1300
-
1301
- # Update properties of this object
1302
- def update!(**args)
1303
- @compliant = args[:compliant] if args.key?(:compliant)
1304
- @errors = args[:errors] if args.key?(:errors)
1305
- @noncompliant = args[:noncompliant] if args.key?(:noncompliant)
1306
- @scanned = args[:scanned] if args.key?(:scanned)
1307
- @unenforced = args[:unenforced] if args.key?(:unenforced)
1308
- end
1309
- end
1310
-
1311
- # A resource describing a `Replay`, or simulation.
1312
- class GoogleCloudPolicysimulatorV1alphaReplay
1313
- include Google::Apis::Core::Hashable
1314
-
1315
- # The configuration used for a Replay.
1316
- # Corresponds to the JSON property `config`
1317
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaReplayConfig]
1318
- attr_accessor :config
1319
-
1320
- # Output only. The resource name of the `Replay`, which has the following format:
1321
- # ``projects|folders|organizations`/`resource-id`/locations/global/replays/`
1322
- # replay-id``, where ``resource-id`` is the ID of the project, folder, or
1323
- # organization that owns the Replay. Example: `projects/my-example-project/
1324
- # locations/global/replays/506a5f7f-38ce-4d7d-8e03-479ce1833c36`
1325
- # Corresponds to the JSON property `name`
1326
- # @return [String]
1327
- attr_accessor :name
1328
-
1329
- # Summary statistics about the replayed log entries.
1330
- # Corresponds to the JSON property `resultsSummary`
1331
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaReplayResultsSummary]
1332
- attr_accessor :results_summary
1333
-
1334
- # Output only. The current state of the `Replay`.
1335
- # Corresponds to the JSON property `state`
1336
- # @return [String]
1337
- attr_accessor :state
1338
-
1339
- def initialize(**args)
1340
- update!(**args)
1341
- end
1342
-
1343
- # Update properties of this object
1344
- def update!(**args)
1345
- @config = args[:config] if args.key?(:config)
1346
- @name = args[:name] if args.key?(:name)
1347
- @results_summary = args[:results_summary] if args.key?(:results_summary)
1348
- @state = args[:state] if args.key?(:state)
1349
- end
1350
- end
1351
-
1352
- # The configuration used for a Replay.
1353
- class GoogleCloudPolicysimulatorV1alphaReplayConfig
1354
- include Google::Apis::Core::Hashable
1355
-
1356
- # The logs to use as input for the Replay.
1357
- # Corresponds to the JSON property `logSource`
1358
- # @return [String]
1359
- attr_accessor :log_source
1360
-
1361
- # A mapping of the resources that you want to simulate policies for and the
1362
- # policies that you want to simulate. Keys are the full resource names for the
1363
- # resources. For example, `//cloudresourcemanager.googleapis.com/projects/my-
1364
- # project`. For examples of full resource names for Google Cloud services, see
1365
- # https://cloud.google.com/iam/help/troubleshooter/full-resource-names. Values
1366
- # are Policy objects representing the policies that you want to simulate.
1367
- # Replays automatically take into account any IAM policies inherited through the
1368
- # resource hierarchy, and any policies set on descendant resources. You do not
1369
- # need to include these policies in the policy overlay.
1370
- # Corresponds to the JSON property `policyOverlay`
1371
- # @return [Hash<String,Google::Apis::PolicysimulatorV1alpha::GoogleIamV1Policy>]
1372
- attr_accessor :policy_overlay
1373
-
1374
- def initialize(**args)
1375
- update!(**args)
1376
- end
1377
-
1378
- # Update properties of this object
1379
- def update!(**args)
1380
- @log_source = args[:log_source] if args.key?(:log_source)
1381
- @policy_overlay = args[:policy_overlay] if args.key?(:policy_overlay)
1382
- end
1383
- end
1384
-
1385
- # The difference between the results of evaluating an access tuple under the
1386
- # current (baseline) policies and under the proposed (simulated) policies. This
1387
- # difference explains how a principal's access could change if the proposed
1388
- # policies were applied.
1389
- class GoogleCloudPolicysimulatorV1alphaReplayDiff
1390
- include Google::Apis::Core::Hashable
1391
-
1392
- # A summary and comparison of the principal's access under the current (baseline)
1393
- # policies and the proposed (simulated) policies for a single access tuple.
1394
- # Corresponds to the JSON property `accessDiff`
1395
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaAccessStateDiff]
1396
- attr_accessor :access_diff
1397
-
1398
- def initialize(**args)
1399
- update!(**args)
1400
- end
1401
-
1402
- # Update properties of this object
1403
- def update!(**args)
1404
- @access_diff = args[:access_diff] if args.key?(:access_diff)
1405
- end
1406
- end
1407
-
1408
- # The result of replaying a single access tuple against a simulated state.
1409
- class GoogleCloudPolicysimulatorV1alphaReplayResult
1410
- include Google::Apis::Core::Hashable
1411
-
1412
- # Information about the principal, resource, and permission to check.
1413
- # Corresponds to the JSON property `accessTuple`
1414
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaAccessTuple]
1415
- attr_accessor :access_tuple
1416
-
1417
- # The difference between the results of evaluating an access tuple under the
1418
- # current (baseline) policies and under the proposed (simulated) policies. This
1419
- # difference explains how a principal's access could change if the proposed
1420
- # policies were applied.
1421
- # Corresponds to the JSON property `diff`
1422
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaReplayDiff]
1423
- attr_accessor :diff
1424
-
1425
- # The `Status` type defines a logical error model that is suitable for different
1426
- # programming environments, including REST APIs and RPC APIs. It is used by [
1427
- # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
1428
- # data: error code, error message, and error details. You can find out more
1429
- # about this error model and how to work with it in the [API Design Guide](https:
1430
- # //cloud.google.com/apis/design/errors).
1431
- # Corresponds to the JSON property `error`
1432
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleRpcStatus]
1433
- attr_accessor :error
1434
-
1435
- # Represents a whole or partial calendar date, such as a birthday. The time of
1436
- # day and time zone are either specified elsewhere or are insignificant. The
1437
- # date is relative to the Gregorian Calendar. This can represent one of the
1438
- # following: * A full date, with non-zero year, month, and day values. * A month
1439
- # and day, with a zero year (for example, an anniversary). * A year on its own,
1440
- # with a zero month and a zero day. * A year and month, with a zero day (for
1441
- # example, a credit card expiration date). Related types: * google.type.
1442
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1443
- # Corresponds to the JSON property `lastSeenDate`
1444
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleTypeDate]
1445
- attr_accessor :last_seen_date
1446
-
1447
- # The resource name of the `ReplayResult`, in the following format: ``projects|
1448
- # folders|organizations`/`resource-id`/locations/global/replays/`replay-id`/
1449
- # results/`replay-result-id``, where ``resource-id`` is the ID of the project,
1450
- # folder, or organization that owns the Replay. Example: `projects/my-example-
1451
- # project/locations/global/replays/506a5f7f-38ce-4d7d-8e03-479ce1833c36/results/
1452
- # 1234`
1453
- # Corresponds to the JSON property `name`
1454
- # @return [String]
1455
- attr_accessor :name
1456
-
1457
- # The Replay that the access tuple was included in.
1458
- # Corresponds to the JSON property `parent`
1459
- # @return [String]
1460
- attr_accessor :parent
1461
-
1462
- def initialize(**args)
1463
- update!(**args)
1464
- end
1465
-
1466
- # Update properties of this object
1467
- def update!(**args)
1468
- @access_tuple = args[:access_tuple] if args.key?(:access_tuple)
1469
- @diff = args[:diff] if args.key?(:diff)
1470
- @error = args[:error] if args.key?(:error)
1471
- @last_seen_date = args[:last_seen_date] if args.key?(:last_seen_date)
1472
- @name = args[:name] if args.key?(:name)
1473
- @parent = args[:parent] if args.key?(:parent)
1474
- end
1475
- end
1476
-
1477
- # Summary statistics about the replayed log entries.
1478
- class GoogleCloudPolicysimulatorV1alphaReplayResultsSummary
1479
- include Google::Apis::Core::Hashable
1480
-
1481
- # The number of replayed log entries with a difference between baseline and
1482
- # simulated policies.
1483
- # Corresponds to the JSON property `differenceCount`
1484
- # @return [Fixnum]
1485
- attr_accessor :difference_count
1486
-
1487
- # The number of log entries that could not be replayed.
1488
- # Corresponds to the JSON property `errorCount`
1489
- # @return [Fixnum]
1490
- attr_accessor :error_count
1491
-
1492
- # The total number of log entries replayed.
1493
- # Corresponds to the JSON property `logCount`
1494
- # @return [Fixnum]
1495
- attr_accessor :log_count
1496
-
1497
- # Represents a whole or partial calendar date, such as a birthday. The time of
1498
- # day and time zone are either specified elsewhere or are insignificant. The
1499
- # date is relative to the Gregorian Calendar. This can represent one of the
1500
- # following: * A full date, with non-zero year, month, and day values. * A month
1501
- # and day, with a zero year (for example, an anniversary). * A year on its own,
1502
- # with a zero month and a zero day. * A year and month, with a zero day (for
1503
- # example, a credit card expiration date). Related types: * google.type.
1504
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1505
- # Corresponds to the JSON property `newestDate`
1506
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleTypeDate]
1507
- attr_accessor :newest_date
1508
-
1509
- # Represents a whole or partial calendar date, such as a birthday. The time of
1510
- # day and time zone are either specified elsewhere or are insignificant. The
1511
- # date is relative to the Gregorian Calendar. This can represent one of the
1512
- # following: * A full date, with non-zero year, month, and day values. * A month
1513
- # and day, with a zero year (for example, an anniversary). * A year on its own,
1514
- # with a zero month and a zero day. * A year and month, with a zero day (for
1515
- # example, a credit card expiration date). Related types: * google.type.
1516
- # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1517
- # Corresponds to the JSON property `oldestDate`
1518
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleTypeDate]
1519
- attr_accessor :oldest_date
1520
-
1521
- # The number of replayed log entries with no difference between baseline and
1522
- # simulated policies.
1523
- # Corresponds to the JSON property `unchangedCount`
1524
- # @return [Fixnum]
1525
- attr_accessor :unchanged_count
1526
-
1527
- def initialize(**args)
1528
- update!(**args)
1529
- end
1530
-
1531
- # Update properties of this object
1532
- def update!(**args)
1533
- @difference_count = args[:difference_count] if args.key?(:difference_count)
1534
- @error_count = args[:error_count] if args.key?(:error_count)
1535
- @log_count = args[:log_count] if args.key?(:log_count)
1536
- @newest_date = args[:newest_date] if args.key?(:newest_date)
1537
- @oldest_date = args[:oldest_date] if args.key?(:oldest_date)
1538
- @unchanged_count = args[:unchanged_count] if args.key?(:unchanged_count)
1539
- end
1540
- end
1541
-
1542
- # ResourceContext provides the context we know about a resource. It is similar
1543
- # in concept to google.cloud.asset.v1.Resource, but focuses on the information
1544
- # specifically used by Simulator.
1545
- class GoogleCloudPolicysimulatorV1alphaResourceContext
1546
- include Google::Apis::Core::Hashable
1547
-
1548
- # The ancestry path of the resource in Google Cloud [resource hierarchy](https://
1549
- # cloud.google.com/resource-manager/docs/cloud-platform-resource-hierarchy),
1550
- # represented as a list of relative resource names. An ancestry path starts with
1551
- # the closest ancestor in the hierarchy and ends at root. If the resource is a
1552
- # project, folder, or organization, the ancestry path starts from the resource
1553
- # itself. Example: `["projects/123456789", "folders/5432", "organizations/1234"]`
1554
- # Corresponds to the JSON property `ancestors`
1555
- # @return [Array<String>]
1556
- attr_accessor :ancestors
1557
-
1558
- # The asset type of the resource as defined by CAIS. Example: `compute.
1559
- # googleapis.com/Firewall` See [Supported asset types](https://cloud.google.com/
1560
- # asset-inventory/docs/supported-asset-types) for more information.
1561
- # Corresponds to the JSON property `assetType`
1562
- # @return [String]
1563
- attr_accessor :asset_type
1564
-
1565
- # The full name of the resource. Example: `//compute.googleapis.com/projects/
1566
- # my_project_123/zones/zone1/instances/instance1` See [Resource names](https://
1567
- # cloud.google.com/apis/design/resource_names#full_resource_name) for more
1568
- # information.
1569
- # Corresponds to the JSON property `resource`
1570
- # @return [String]
1571
- attr_accessor :resource
1572
-
1573
- def initialize(**args)
1574
- update!(**args)
1575
- end
1576
-
1577
- # Update properties of this object
1578
- def update!(**args)
1579
- @ancestors = args[:ancestors] if args.key?(:ancestors)
1580
- @asset_type = args[:asset_type] if args.key?(:asset_type)
1581
- @resource = args[:resource] if args.key?(:resource)
1582
- end
1583
- end
1584
-
1585
- # CreateOrgPolicyViolationsPreviewOperationMetadata is metadata about an
1586
- # OrgPolicyViolationsPreview generations operation.
1587
- class GoogleCloudPolicysimulatorV1betaCreateOrgPolicyViolationsPreviewOperationMetadata
1588
- include Google::Apis::Core::Hashable
1589
-
1590
- # Time when the request was received.
1591
- # Corresponds to the JSON property `requestTime`
1592
- # @return [String]
1593
- attr_accessor :request_time
1594
-
1595
- # Total number of resources that need scanning. Should equal resource_scanned +
1596
- # resources_pending
1597
- # Corresponds to the JSON property `resourcesFound`
1598
- # @return [Fixnum]
1599
- attr_accessor :resources_found
1600
-
1601
- # Number of resources still to scan.
1602
- # Corresponds to the JSON property `resourcesPending`
1603
- # @return [Fixnum]
1604
- attr_accessor :resources_pending
1605
-
1606
- # Number of resources already scanned.
1607
- # Corresponds to the JSON property `resourcesScanned`
1608
- # @return [Fixnum]
1609
- attr_accessor :resources_scanned
1610
-
1611
- # Time when the request started processing, i.e., when the state was set to
1612
- # RUNNING.
1613
- # Corresponds to the JSON property `startTime`
1614
- # @return [String]
1615
- attr_accessor :start_time
1616
-
1617
- # Output only. The current state of the operation.
1618
- # Corresponds to the JSON property `state`
1619
- # @return [String]
1620
- attr_accessor :state
1621
-
1622
- def initialize(**args)
1623
- update!(**args)
1624
- end
1625
-
1626
- # Update properties of this object
1627
- def update!(**args)
1628
- @request_time = args[:request_time] if args.key?(:request_time)
1629
- @resources_found = args[:resources_found] if args.key?(:resources_found)
1630
- @resources_pending = args[:resources_pending] if args.key?(:resources_pending)
1631
- @resources_scanned = args[:resources_scanned] if args.key?(:resources_scanned)
1632
- @start_time = args[:start_time] if args.key?(:start_time)
1633
- @state = args[:state] if args.key?(:state)
1634
- end
1635
- end
1636
-
1637
- # GenerateOrgPolicyViolationsPreviewOperationMetadata is metadata about an
1638
- # OrgPolicyViolationsPreview generations operation.
1639
- class GoogleCloudPolicysimulatorV1betaGenerateOrgPolicyViolationsPreviewOperationMetadata
1640
- include Google::Apis::Core::Hashable
1641
-
1642
- # Time when the request was received.
1643
- # Corresponds to the JSON property `requestTime`
1644
- # @return [String]
1645
- attr_accessor :request_time
1646
-
1647
- # Total number of resources that need scanning. Should equal resource_scanned +
1648
- # resources_pending
1649
- # Corresponds to the JSON property `resourcesFound`
1650
- # @return [Fixnum]
1651
- attr_accessor :resources_found
1652
-
1653
- # Number of resources still to scan.
1654
- # Corresponds to the JSON property `resourcesPending`
1655
- # @return [Fixnum]
1656
- attr_accessor :resources_pending
1657
-
1658
- # Number of resources already scanned.
1659
- # Corresponds to the JSON property `resourcesScanned`
1660
- # @return [Fixnum]
1661
- attr_accessor :resources_scanned
1662
-
1663
- # Time when the request started processing, i.e. when the state was set to
1664
- # RUNNING.
1665
- # Corresponds to the JSON property `startTime`
1666
- # @return [String]
1667
- attr_accessor :start_time
1668
-
1669
- # The current state of the operation.
1670
- # Corresponds to the JSON property `state`
1671
- # @return [String]
1672
- attr_accessor :state
1673
-
1674
- def initialize(**args)
1675
- update!(**args)
1676
- end
1677
-
1678
- # Update properties of this object
1679
- def update!(**args)
1680
- @request_time = args[:request_time] if args.key?(:request_time)
1681
- @resources_found = args[:resources_found] if args.key?(:resources_found)
1682
- @resources_pending = args[:resources_pending] if args.key?(:resources_pending)
1683
- @resources_scanned = args[:resources_scanned] if args.key?(:resources_scanned)
1684
- @start_time = args[:start_time] if args.key?(:start_time)
1685
- @state = args[:state] if args.key?(:state)
1686
- end
1687
- end
1688
-
1689
- # The proposed changes to OrgPolicy.
1690
- class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlay
1691
- include Google::Apis::Core::Hashable
1692
-
1693
- # Optional. The OrgPolicy CustomConstraint changes to preview violations for.
1694
- # Any existing CustomConstraints with the same name will be overridden in the
1695
- # simulation. That is, violations will be determined as if all custom
1696
- # constraints in the overlay were instantiated. Only a single custom_constraint
1697
- # is supported in the overlay at a time. For evaluating multiple constraints,
1698
- # multiple `GenerateOrgPolicyViolationsPreview` requests are made, where each
1699
- # request evaluates a single constraint.
1700
- # Corresponds to the JSON property `customConstraints`
1701
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayCustomConstraintOverlay>]
1702
- attr_accessor :custom_constraints
1703
-
1704
- # Optional. The OrgPolicy changes to preview violations for. Any existing
1705
- # OrgPolicies with the same name will be overridden in the simulation. That is,
1706
- # violations will be determined as if all policies in the overlay were created
1707
- # or updated.
1708
- # Corresponds to the JSON property `policies`
1709
- # @return [Array<Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayPolicyOverlay>]
1710
- attr_accessor :policies
1711
-
1712
- def initialize(**args)
1713
- update!(**args)
1714
- end
1715
-
1716
- # Update properties of this object
1717
- def update!(**args)
1718
- @custom_constraints = args[:custom_constraints] if args.key?(:custom_constraints)
1719
- @policies = args[:policies] if args.key?(:policies)
1720
- end
1721
- end
1722
-
1723
- # A change to an OrgPolicy custom constraint.
1724
- class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayCustomConstraintOverlay
1725
- include Google::Apis::Core::Hashable
1726
-
1727
- # A custom constraint defined by customers which can *only* be applied to the
1728
- # given resource types and organization. By creating a custom constraint,
1729
- # customers can apply policies of this custom constraint. *Creating a custom
1730
- # constraint itself does NOT apply any policy enforcement*.
1731
- # Corresponds to the JSON property `customConstraint`
1732
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2CustomConstraint]
1733
- attr_accessor :custom_constraint
1734
-
1735
- # Optional. Resource the constraint is attached to. Example: "organization/
1736
- # 987654"
1737
- # Corresponds to the JSON property `customConstraintParent`
1738
- # @return [String]
1739
- attr_accessor :custom_constraint_parent
1740
-
1741
- def initialize(**args)
1742
- update!(**args)
1743
- end
1744
-
1745
- # Update properties of this object
1746
- def update!(**args)
1747
- @custom_constraint = args[:custom_constraint] if args.key?(:custom_constraint)
1748
- @custom_constraint_parent = args[:custom_constraint_parent] if args.key?(:custom_constraint_parent)
1749
- end
1750
- end
1751
-
1752
- # A change to an OrgPolicy.
1753
- class GoogleCloudPolicysimulatorV1betaOrgPolicyOverlayPolicyOverlay
1754
- include Google::Apis::Core::Hashable
1755
-
1756
- # Defines an organization policy which is used to specify constraints for
1757
- # configurations of Google Cloud resources.
1758
- # Corresponds to the JSON property `policy`
1759
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2Policy]
1760
- attr_accessor :policy
1761
-
1762
- # Optional. The parent of the policy we are attaching to. Example: "projects/
1763
- # 123456"
1764
- # Corresponds to the JSON property `policyParent`
1765
- # @return [String]
1766
- attr_accessor :policy_parent
1767
-
1768
- def initialize(**args)
1769
- update!(**args)
1770
- end
1771
-
1772
- # Update properties of this object
1773
- def update!(**args)
1774
- @policy = args[:policy] if args.key?(:policy)
1775
- @policy_parent = args[:policy_parent] if args.key?(:policy_parent)
1776
- end
1777
- end
1778
-
1779
- # OrgPolicyViolationsPreview is a resource providing a preview of the violations
1780
- # that will exist if an OrgPolicy change is made. The list of violations are
1781
- # modeled as child resources and retrieved via a ListOrgPolicyViolations API
1782
- # call. There are potentially more OrgPolicyViolations than could fit in an
1783
- # embedded field. Thus, the use of a child resource instead of a field.
1784
- class GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreview
1785
- include Google::Apis::Core::Hashable
1786
-
1787
- # Output only. Time when this `OrgPolicyViolationsPreview` was created.
1788
- # Corresponds to the JSON property `createTime`
1789
- # @return [String]
1790
- attr_accessor :create_time
1791
-
1792
- # Output only. The names of the constraints against which all `
1793
- # OrgPolicyViolations` were evaluated. If `OrgPolicyOverlay` only contains `
1794
- # PolicyOverlay` then it contains the name of the configured custom constraint,
1795
- # applicable to the specified policies. Otherwise it contains the name of the
1796
- # constraint specified in `CustomConstraintOverlay`. Format: `organizations/`
1797
- # organization_id`/customConstraints/`custom_constraint_id`` Example: `
1798
- # organizations/123/customConstraints/custom.createOnlyE2TypeVms`
1799
- # Corresponds to the JSON property `customConstraints`
1800
- # @return [Array<String>]
1801
- attr_accessor :custom_constraints
1802
-
1803
- # Output only. The resource name of the `OrgPolicyViolationsPreview`. It has the
1804
- # following format: `organizations/`organization`/locations/`location`/
1805
- # orgPolicyViolationsPreviews/`orgPolicyViolationsPreview`` Example: `
1806
- # organizations/my-example-org/locations/global/orgPolicyViolationsPreviews/
1807
- # 506a5f7f`
1808
- # Corresponds to the JSON property `name`
1809
- # @return [String]
1810
- attr_accessor :name
1811
-
1812
- # The proposed changes to OrgPolicy.
1813
- # Corresponds to the JSON property `overlay`
1814
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyOverlay]
1815
- attr_accessor :overlay
1816
-
1817
- # A summary of the state of all resources scanned for compliance with the
1818
- # changed OrgPolicy.
1819
- # Corresponds to the JSON property `resourceCounts`
1820
- # @return [Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreviewResourceCounts]
1821
- attr_accessor :resource_counts
1822
-
1823
- # Output only. The state of the `OrgPolicyViolationsPreview`.
1824
- # Corresponds to the JSON property `state`
1825
- # @return [String]
1826
- attr_accessor :state
1827
-
1828
- # Output only. The number of OrgPolicyViolations in this `
1829
- # OrgPolicyViolationsPreview`. This count may differ from `resource_summary.
1830
- # noncompliant_count` because each OrgPolicyViolation is specific to a resource *
1831
- # *and** constraint. If there are multiple constraints being evaluated (i.e.
1832
- # multiple policies in the overlay), a single resource may violate multiple
1833
- # constraints.
1834
- # Corresponds to the JSON property `violationsCount`
1835
- # @return [Fixnum]
1836
- attr_accessor :violations_count
1837
-
1838
- def initialize(**args)
1839
- update!(**args)
1840
- end
1841
-
1842
- # Update properties of this object
1843
- def update!(**args)
1844
- @create_time = args[:create_time] if args.key?(:create_time)
1845
- @custom_constraints = args[:custom_constraints] if args.key?(:custom_constraints)
1846
- @name = args[:name] if args.key?(:name)
1847
- @overlay = args[:overlay] if args.key?(:overlay)
1848
- @resource_counts = args[:resource_counts] if args.key?(:resource_counts)
1849
- @state = args[:state] if args.key?(:state)
1850
- @violations_count = args[:violations_count] if args.key?(:violations_count)
1851
- end
1852
- end
1853
-
1854
- # A summary of the state of all resources scanned for compliance with the
1855
- # changed OrgPolicy.
1856
- class GoogleCloudPolicysimulatorV1betaOrgPolicyViolationsPreviewResourceCounts
1857
- include Google::Apis::Core::Hashable
1858
-
1859
- # Output only. Number of scanned resources with zero violations.
1860
- # Corresponds to the JSON property `compliant`
1861
- # @return [Fixnum]
1862
- attr_accessor :compliant
1863
-
1864
- # Output only. Number of resources that returned an error when scanned.
1865
- # Corresponds to the JSON property `errors`
1866
- # @return [Fixnum]
1867
- attr_accessor :errors
1868
-
1869
- # Output only. Number of scanned resources with at least one violation.
1870
- # Corresponds to the JSON property `noncompliant`
1871
- # @return [Fixnum]
1872
- attr_accessor :noncompliant
1873
-
1874
- # Output only. Number of resources checked for compliance. Must equal:
1875
- # unenforced + noncompliant + compliant + error
1876
- # Corresponds to the JSON property `scanned`
1877
- # @return [Fixnum]
1878
- attr_accessor :scanned
1879
-
1880
- # Output only. Number of resources where the constraint was not enforced, i.e.
1881
- # the Policy set `enforced: false` for that resource.
1882
- # Corresponds to the JSON property `unenforced`
1883
- # @return [Fixnum]
1884
- attr_accessor :unenforced
1885
-
1886
- def initialize(**args)
1887
- update!(**args)
1888
- end
1889
-
1890
- # Update properties of this object
1891
- def update!(**args)
1892
- @compliant = args[:compliant] if args.key?(:compliant)
1893
- @errors = args[:errors] if args.key?(:errors)
1894
- @noncompliant = args[:noncompliant] if args.key?(:noncompliant)
1895
- @scanned = args[:scanned] if args.key?(:scanned)
1896
- @unenforced = args[:unenforced] if args.key?(:unenforced)
1897
- end
1898
- end
1899
-
1900
183
  # Specifies the audit configuration for a service. The configuration determines
1901
184
  # which permission types are logged, and what identities, if any, are exempted
1902
185
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there