google-apis-assuredworkloads_v1 0.37.0 → 0.38.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e8993edac26ee1aab782a7607b6fe63ceae7c85f0afaf9e28082c181598ce42
|
4
|
+
data.tar.gz: 94417ef6d21dff572889892e992adc66cdfd00b1a6516304f278d6c50f9dbcf1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16ebd0990ead4c5ff6ba4c806833461f7d713ec7ae21549af759ccf6a4066474db3c9ab3118447951b64b9ded05253a227c94ba19df65b0af0d037428697ffab
|
7
|
+
data.tar.gz: 3313e239d8a909a55b7032d51d2354f788a7959c9165aed217c1c1263b4df4d36d15d1ae9af4edaa37ef6fd9b9959b54c89e16fd17cbbbb30006b0e400412caa
|
data/CHANGELOG.md
CHANGED
@@ -219,7 +219,7 @@ module Google
|
|
219
219
|
end
|
220
220
|
end
|
221
221
|
|
222
|
-
# Workload monitoring Violation. Next Id:
|
222
|
+
# Workload monitoring Violation. Next Id: 27
|
223
223
|
class GoogleCloudAssuredworkloadsV1Violation
|
224
224
|
include Google::Apis::Core::Hashable
|
225
225
|
|
@@ -269,11 +269,6 @@ module Google
|
|
269
269
|
# @return [String]
|
270
270
|
attr_accessor :exception_audit_log_link
|
271
271
|
|
272
|
-
# Output only. List of all the exception detail added for the violation.
|
273
|
-
# Corresponds to the JSON property `exceptionContexts`
|
274
|
-
# @return [Array<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1ViolationExceptionContext>]
|
275
|
-
attr_accessor :exception_contexts
|
276
|
-
|
277
272
|
# Output only. Immutable. Name of the Violation. Format: organizations/`
|
278
273
|
# organization`/locations/`location`/workloads/`workload_id`/violations/`
|
279
274
|
# violations_id`
|
@@ -330,7 +325,6 @@ module Google
|
|
330
325
|
@category = args[:category] if args.key?(:category)
|
331
326
|
@description = args[:description] if args.key?(:description)
|
332
327
|
@exception_audit_log_link = args[:exception_audit_log_link] if args.key?(:exception_audit_log_link)
|
333
|
-
@exception_contexts = args[:exception_contexts] if args.key?(:exception_contexts)
|
334
328
|
@name = args[:name] if args.key?(:name)
|
335
329
|
@non_compliant_org_policy = args[:non_compliant_org_policy] if args.key?(:non_compliant_org_policy)
|
336
330
|
@org_policy_constraint = args[:org_policy_constraint] if args.key?(:org_policy_constraint)
|
@@ -341,37 +335,6 @@ module Google
|
|
341
335
|
end
|
342
336
|
end
|
343
337
|
|
344
|
-
# Violation exception detail. Next Id: 5
|
345
|
-
class GoogleCloudAssuredworkloadsV1ViolationExceptionContext
|
346
|
-
include Google::Apis::Core::Hashable
|
347
|
-
|
348
|
-
# Timestamp when the violation was acknowledged.
|
349
|
-
# Corresponds to the JSON property `acknowledgementTime`
|
350
|
-
# @return [String]
|
351
|
-
attr_accessor :acknowledgement_time
|
352
|
-
|
353
|
-
# Business justification provided towards the acknowledgement of the violation.
|
354
|
-
# Corresponds to the JSON property `comment`
|
355
|
-
# @return [String]
|
356
|
-
attr_accessor :comment
|
357
|
-
|
358
|
-
# Email address of the user (or service account) who acknowledged the violation.
|
359
|
-
# Corresponds to the JSON property `principalEmail`
|
360
|
-
# @return [String]
|
361
|
-
attr_accessor :principal_email
|
362
|
-
|
363
|
-
def initialize(**args)
|
364
|
-
update!(**args)
|
365
|
-
end
|
366
|
-
|
367
|
-
# Update properties of this object
|
368
|
-
def update!(**args)
|
369
|
-
@acknowledgement_time = args[:acknowledgement_time] if args.key?(:acknowledgement_time)
|
370
|
-
@comment = args[:comment] if args.key?(:comment)
|
371
|
-
@principal_email = args[:principal_email] if args.key?(:principal_email)
|
372
|
-
end
|
373
|
-
end
|
374
|
-
|
375
338
|
# Represents remediation guidance to resolve compliance violation for
|
376
339
|
# AssuredWorkload
|
377
340
|
class GoogleCloudAssuredworkloadsV1ViolationRemediation
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AssuredworkloadsV1
|
18
18
|
# Version of the google-apis-assuredworkloads_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.38.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230420"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,12 +76,6 @@ module Google
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
-
class GoogleCloudAssuredworkloadsV1ViolationExceptionContext
|
80
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
-
|
82
|
-
include Google::Apis::Core::JsonObjectSupport
|
83
|
-
end
|
84
|
-
|
85
79
|
class GoogleCloudAssuredworkloadsV1ViolationRemediation
|
86
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
81
|
|
@@ -253,8 +247,6 @@ module Google
|
|
253
247
|
property :category, as: 'category'
|
254
248
|
property :description, as: 'description'
|
255
249
|
property :exception_audit_log_link, as: 'exceptionAuditLogLink'
|
256
|
-
collection :exception_contexts, as: 'exceptionContexts', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1ViolationExceptionContext, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1ViolationExceptionContext::Representation
|
257
|
-
|
258
250
|
property :name, as: 'name'
|
259
251
|
property :non_compliant_org_policy, as: 'nonCompliantOrgPolicy'
|
260
252
|
property :org_policy_constraint, as: 'orgPolicyConstraint'
|
@@ -266,15 +258,6 @@ module Google
|
|
266
258
|
end
|
267
259
|
end
|
268
260
|
|
269
|
-
class GoogleCloudAssuredworkloadsV1ViolationExceptionContext
|
270
|
-
# @private
|
271
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
272
|
-
property :acknowledgement_time, as: 'acknowledgementTime'
|
273
|
-
property :comment, as: 'comment'
|
274
|
-
property :principal_email, as: 'principalEmail'
|
275
|
-
end
|
276
|
-
end
|
277
|
-
|
278
261
|
class GoogleCloudAssuredworkloadsV1ViolationRemediation
|
279
262
|
# @private
|
280
263
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-assuredworkloads_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.38.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-assuredworkloads_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|