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