google-apis-assuredworkloads_v1 0.13.0 → 0.14.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: 817dc71ee5a64c9cbcb40ee2b0c7f8fd732b6e0b84a2983dd186e2543de174dd
4
- data.tar.gz: 3cf53bebb76d5ef9b8bab7db3c5461b5bbc0ce7a28cef058129dfef469739af8
3
+ metadata.gz: f6d49265f685099a28c02113c2a067ac59eb66c042a028574eabc0ed1831af84
4
+ data.tar.gz: bef51e9b755da929448167f54fa541d6e4dbf17baddc17b8ea5002174f034077
5
5
  SHA512:
6
- metadata.gz: 748efa48e9e978b57c8d6aaca92e478e0942073ba7ac4c105410a7a9326a408b725777b165655f7ab7868804db1240b03df656a8099fcc644ab0b82f765b3cf2
7
- data.tar.gz: 32514c31161fd8bdf780f9c64f72f668f5c0436b7ecf5b00f94a043258235211d370b873e0e1d2593de74d582734656ad3af0606535df22ac2b2492a02df2969
6
+ metadata.gz: d251ed227dcb9daec1c88b3471f4810ea82d824145ae4f508147c7907c5566286cf8218e5d51ce44391487ffdb4fe7418e87f7060ad546181105774612d1a3f5
7
+ data.tar.gz: e0b8b6dd8c2f3838d66d3c1127a92fd0ddcdc40041b3e559036504b683447c970504529f57891dce2c0ccea58464b5288214d0bd2e413d3f573d8eb1310b7824
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-assuredworkloads_v1
2
2
 
3
+ ### v0.14.0 (2021-12-07)
4
+
5
+ * Regenerated from discovery document revision 20211202
6
+
3
7
  ### v0.13.0 (2021-11-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20211111
@@ -116,12 +116,24 @@ module Google
116
116
  # @return [String]
117
117
  attr_accessor :display_name
118
118
 
119
+ # Optional. Indicates the sovereignty status of the given workload. Currently
120
+ # meant to be used by Europe/Canada customers.
121
+ # Corresponds to the JSON property `enableSovereignControls`
122
+ # @return [Boolean]
123
+ attr_accessor :enable_sovereign_controls
124
+ alias_method :enable_sovereign_controls?, :enable_sovereign_controls
125
+
119
126
  # Optional. ETag of the workload, it is calculated on the basis of the Workload
120
127
  # contents. It will be used in Update & Delete operations.
121
128
  # Corresponds to the JSON property `etag`
122
129
  # @return [String]
123
130
  attr_accessor :etag
124
131
 
132
+ # Output only. Represents the KAJ enrollment state of the given workload.
133
+ # Corresponds to the JSON property `kajEnrollmentState`
134
+ # @return [String]
135
+ attr_accessor :kaj_enrollment_state
136
+
125
137
  # Settings specific to the Key Management Service.
126
138
  # Corresponds to the JSON property `kmsSettings`
127
139
  # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadKmsSettings]
@@ -160,6 +172,11 @@ module Google
160
172
  # @return [Array<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadResourceInfo>]
161
173
  attr_accessor :resources
162
174
 
175
+ # Signed Access Approvals (SAA) enrollment response.
176
+ # Corresponds to the JSON property `saaEnrollmentResponse`
177
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse]
178
+ attr_accessor :saa_enrollment_response
179
+
163
180
  def initialize(**args)
164
181
  update!(**args)
165
182
  end
@@ -170,13 +187,16 @@ module Google
170
187
  @compliance_regime = args[:compliance_regime] if args.key?(:compliance_regime)
171
188
  @create_time = args[:create_time] if args.key?(:create_time)
172
189
  @display_name = args[:display_name] if args.key?(:display_name)
190
+ @enable_sovereign_controls = args[:enable_sovereign_controls] if args.key?(:enable_sovereign_controls)
173
191
  @etag = args[:etag] if args.key?(:etag)
192
+ @kaj_enrollment_state = args[:kaj_enrollment_state] if args.key?(:kaj_enrollment_state)
174
193
  @kms_settings = args[:kms_settings] if args.key?(:kms_settings)
175
194
  @labels = args[:labels] if args.key?(:labels)
176
195
  @name = args[:name] if args.key?(:name)
177
196
  @provisioned_resources_parent = args[:provisioned_resources_parent] if args.key?(:provisioned_resources_parent)
178
197
  @resource_settings = args[:resource_settings] if args.key?(:resource_settings)
179
198
  @resources = args[:resources] if args.key?(:resources)
199
+ @saa_enrollment_response = args[:saa_enrollment_response] if args.key?(:saa_enrollment_response)
180
200
  end
181
201
  end
182
202
 
@@ -268,6 +288,31 @@ module Google
268
288
  end
269
289
  end
270
290
 
291
+ # Signed Access Approvals (SAA) enrollment response.
292
+ class GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse
293
+ include Google::Apis::Core::Hashable
294
+
295
+ # Indicates SAA enrollment setup error if any.
296
+ # Corresponds to the JSON property `setupErrors`
297
+ # @return [Array<String>]
298
+ attr_accessor :setup_errors
299
+
300
+ # Indicates SAA enrollment status of a given workload.
301
+ # Corresponds to the JSON property `setupStatus`
302
+ # @return [String]
303
+ attr_accessor :setup_status
304
+
305
+ def initialize(**args)
306
+ update!(**args)
307
+ end
308
+
309
+ # Update properties of this object
310
+ def update!(**args)
311
+ @setup_errors = args[:setup_errors] if args.key?(:setup_errors)
312
+ @setup_status = args[:setup_status] if args.key?(:setup_status)
313
+ end
314
+ end
315
+
271
316
  # Operation metadata to give request details of CreateWorkload.
272
317
  class GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
273
318
  include Google::Apis::Core::Hashable
@@ -349,6 +394,13 @@ module Google
349
394
  # @return [String]
350
395
  attr_accessor :display_name
351
396
 
397
+ # Optional. Indicates the sovereignty status of the given workload. Currently
398
+ # meant to be used by Europe/Canada customers.
399
+ # Corresponds to the JSON property `enableSovereignControls`
400
+ # @return [Boolean]
401
+ attr_accessor :enable_sovereign_controls
402
+ alias_method :enable_sovereign_controls?, :enable_sovereign_controls
403
+
352
404
  # Optional. ETag of the workload, it is calculated on the basis of the Workload
353
405
  # contents. It will be used in Update & Delete operations.
354
406
  # Corresponds to the JSON property `etag`
@@ -370,6 +422,11 @@ module Google
370
422
  # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadIl4Settings]
371
423
  attr_accessor :il4_settings
372
424
 
425
+ # Output only. Represents the KAJ enrollment state of the given workload.
426
+ # Corresponds to the JSON property `kajEnrollmentState`
427
+ # @return [String]
428
+ attr_accessor :kaj_enrollment_state
429
+
373
430
  # Settings specific to the Key Management Service.
374
431
  # Corresponds to the JSON property `kmsSettings`
375
432
  # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadKmsSettings]
@@ -408,6 +465,11 @@ module Google
408
465
  # @return [Array<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadResourceInfo>]
409
466
  attr_accessor :resources
410
467
 
468
+ # Signed Access Approvals (SAA) enrollment response.
469
+ # Corresponds to the JSON property `saaEnrollmentResponse`
470
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadSaaEnrollmentResponse]
471
+ attr_accessor :saa_enrollment_response
472
+
411
473
  def initialize(**args)
412
474
  update!(**args)
413
475
  end
@@ -419,16 +481,19 @@ module Google
419
481
  @compliance_regime = args[:compliance_regime] if args.key?(:compliance_regime)
420
482
  @create_time = args[:create_time] if args.key?(:create_time)
421
483
  @display_name = args[:display_name] if args.key?(:display_name)
484
+ @enable_sovereign_controls = args[:enable_sovereign_controls] if args.key?(:enable_sovereign_controls)
422
485
  @etag = args[:etag] if args.key?(:etag)
423
486
  @fedramp_high_settings = args[:fedramp_high_settings] if args.key?(:fedramp_high_settings)
424
487
  @fedramp_moderate_settings = args[:fedramp_moderate_settings] if args.key?(:fedramp_moderate_settings)
425
488
  @il4_settings = args[:il4_settings] if args.key?(:il4_settings)
489
+ @kaj_enrollment_state = args[:kaj_enrollment_state] if args.key?(:kaj_enrollment_state)
426
490
  @kms_settings = args[:kms_settings] if args.key?(:kms_settings)
427
491
  @labels = args[:labels] if args.key?(:labels)
428
492
  @name = args[:name] if args.key?(:name)
429
493
  @provisioned_resources_parent = args[:provisioned_resources_parent] if args.key?(:provisioned_resources_parent)
430
494
  @resource_settings = args[:resource_settings] if args.key?(:resource_settings)
431
495
  @resources = args[:resources] if args.key?(:resources)
496
+ @saa_enrollment_response = args[:saa_enrollment_response] if args.key?(:saa_enrollment_response)
432
497
  end
433
498
  end
434
499
 
@@ -596,6 +661,31 @@ module Google
596
661
  end
597
662
  end
598
663
 
664
+ # Signed Access Approvals (SAA) enrollment response.
665
+ class GoogleCloudAssuredworkloadsV1beta1WorkloadSaaEnrollmentResponse
666
+ include Google::Apis::Core::Hashable
667
+
668
+ # Indicates SAA enrollment setup error if any.
669
+ # Corresponds to the JSON property `setupErrors`
670
+ # @return [Array<String>]
671
+ attr_accessor :setup_errors
672
+
673
+ # Indicates SAA enrollment status of a given workload.
674
+ # Corresponds to the JSON property `setupStatus`
675
+ # @return [String]
676
+ attr_accessor :setup_status
677
+
678
+ def initialize(**args)
679
+ update!(**args)
680
+ end
681
+
682
+ # Update properties of this object
683
+ def update!(**args)
684
+ @setup_errors = args[:setup_errors] if args.key?(:setup_errors)
685
+ @setup_status = args[:setup_status] if args.key?(:setup_status)
686
+ end
687
+ end
688
+
599
689
  # Operation metadata to give request details of CreateWorkload.
600
690
  class GoogleCloudAssuredworkloadsVersioningV1mainCreateWorkloadOperationMetadata
601
691
  include Google::Apis::Core::Hashable
@@ -677,6 +767,13 @@ module Google
677
767
  # @return [String]
678
768
  attr_accessor :display_name
679
769
 
770
+ # Optional. Indicates the sovereignty status of the given workload. Currently
771
+ # meant to be used by Europe/Canada customers.
772
+ # Corresponds to the JSON property `enableSovereignControls`
773
+ # @return [Boolean]
774
+ attr_accessor :enable_sovereign_controls
775
+ alias_method :enable_sovereign_controls?, :enable_sovereign_controls
776
+
680
777
  # Optional. ETag of the workload, it is calculated on the basis of the Workload
681
778
  # contents. It will be used in Update & Delete operations.
682
779
  # Corresponds to the JSON property `etag`
@@ -698,6 +795,11 @@ module Google
698
795
  # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings]
699
796
  attr_accessor :il4_settings
700
797
 
798
+ # Output only. Represents the KAJ enrollment state of the given workload.
799
+ # Corresponds to the JSON property `kajEnrollmentState`
800
+ # @return [String]
801
+ attr_accessor :kaj_enrollment_state
802
+
701
803
  # Settings specific to the Key Management Service.
702
804
  # Corresponds to the JSON property `kmsSettings`
703
805
  # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings]
@@ -736,6 +838,11 @@ module Google
736
838
  # @return [Array<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo>]
737
839
  attr_accessor :resources
738
840
 
841
+ # Signed Access Approvals (SAA) enrollment response.
842
+ # Corresponds to the JSON property `saaEnrollmentResponse`
843
+ # @return [Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadSaaEnrollmentResponse]
844
+ attr_accessor :saa_enrollment_response
845
+
739
846
  def initialize(**args)
740
847
  update!(**args)
741
848
  end
@@ -747,16 +854,19 @@ module Google
747
854
  @compliance_regime = args[:compliance_regime] if args.key?(:compliance_regime)
748
855
  @create_time = args[:create_time] if args.key?(:create_time)
749
856
  @display_name = args[:display_name] if args.key?(:display_name)
857
+ @enable_sovereign_controls = args[:enable_sovereign_controls] if args.key?(:enable_sovereign_controls)
750
858
  @etag = args[:etag] if args.key?(:etag)
751
859
  @fedramp_high_settings = args[:fedramp_high_settings] if args.key?(:fedramp_high_settings)
752
860
  @fedramp_moderate_settings = args[:fedramp_moderate_settings] if args.key?(:fedramp_moderate_settings)
753
861
  @il4_settings = args[:il4_settings] if args.key?(:il4_settings)
862
+ @kaj_enrollment_state = args[:kaj_enrollment_state] if args.key?(:kaj_enrollment_state)
754
863
  @kms_settings = args[:kms_settings] if args.key?(:kms_settings)
755
864
  @labels = args[:labels] if args.key?(:labels)
756
865
  @name = args[:name] if args.key?(:name)
757
866
  @provisioned_resources_parent = args[:provisioned_resources_parent] if args.key?(:provisioned_resources_parent)
758
867
  @resource_settings = args[:resource_settings] if args.key?(:resource_settings)
759
868
  @resources = args[:resources] if args.key?(:resources)
869
+ @saa_enrollment_response = args[:saa_enrollment_response] if args.key?(:saa_enrollment_response)
760
870
  end
761
871
  end
762
872
 
@@ -924,6 +1034,31 @@ module Google
924
1034
  end
925
1035
  end
926
1036
 
1037
+ # Signed Access Approvals (SAA) enrollment response.
1038
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadSaaEnrollmentResponse
1039
+ include Google::Apis::Core::Hashable
1040
+
1041
+ # Indicates SAA enrollment setup error if any.
1042
+ # Corresponds to the JSON property `setupErrors`
1043
+ # @return [Array<String>]
1044
+ attr_accessor :setup_errors
1045
+
1046
+ # Indicates SAA enrollment status of a given workload.
1047
+ # Corresponds to the JSON property `setupStatus`
1048
+ # @return [String]
1049
+ attr_accessor :setup_status
1050
+
1051
+ def initialize(**args)
1052
+ update!(**args)
1053
+ end
1054
+
1055
+ # Update properties of this object
1056
+ def update!(**args)
1057
+ @setup_errors = args[:setup_errors] if args.key?(:setup_errors)
1058
+ @setup_status = args[:setup_status] if args.key?(:setup_status)
1059
+ end
1060
+ end
1061
+
927
1062
  # The response message for Operations.ListOperations.
928
1063
  class GoogleLongrunningListOperationsResponse
929
1064
  include Google::Apis::Core::Hashable
@@ -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.13.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211111"
25
+ REVISION = "20211202"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -112,6 +118,12 @@ module Google
112
118
  include Google::Apis::Core::JsonObjectSupport
113
119
  end
114
120
 
121
+ class GoogleCloudAssuredworkloadsV1beta1WorkloadSaaEnrollmentResponse
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
115
127
  class GoogleCloudAssuredworkloadsVersioningV1mainCreateWorkloadOperationMetadata
116
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
129
 
@@ -166,6 +178,12 @@ module Google
166
178
  include Google::Apis::Core::JsonObjectSupport
167
179
  end
168
180
 
181
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadSaaEnrollmentResponse
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
169
187
  class GoogleLongrunningListOperationsResponse
170
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
189
 
@@ -216,7 +234,9 @@ module Google
216
234
  property :compliance_regime, as: 'complianceRegime'
217
235
  property :create_time, as: 'createTime'
218
236
  property :display_name, as: 'displayName'
237
+ property :enable_sovereign_controls, as: 'enableSovereignControls'
219
238
  property :etag, as: 'etag'
239
+ property :kaj_enrollment_state, as: 'kajEnrollmentState'
220
240
  property :kms_settings, as: 'kmsSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadKmsSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadKmsSettings::Representation
221
241
 
222
242
  hash :labels, as: 'labels'
@@ -226,6 +246,8 @@ module Google
226
246
 
227
247
  collection :resources, as: 'resources', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadResourceInfo, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadResourceInfo::Representation
228
248
 
249
+ property :saa_enrollment_response, as: 'saaEnrollmentResponse', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse::Representation
250
+
229
251
  end
230
252
  end
231
253
 
@@ -254,6 +276,14 @@ module Google
254
276
  end
255
277
  end
256
278
 
279
+ class GoogleCloudAssuredworkloadsV1WorkloadSaaEnrollmentResponse
280
+ # @private
281
+ class Representation < Google::Apis::Core::JsonRepresentation
282
+ collection :setup_errors, as: 'setupErrors'
283
+ property :setup_status, as: 'setupStatus'
284
+ end
285
+ end
286
+
257
287
  class GoogleCloudAssuredworkloadsV1beta1CreateWorkloadOperationMetadata
258
288
  # @private
259
289
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -275,6 +305,7 @@ module Google
275
305
  property :compliance_regime, as: 'complianceRegime'
276
306
  property :create_time, as: 'createTime'
277
307
  property :display_name, as: 'displayName'
308
+ property :enable_sovereign_controls, as: 'enableSovereignControls'
278
309
  property :etag, as: 'etag'
279
310
  property :fedramp_high_settings, as: 'fedrampHighSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadFedrampHighSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadFedrampHighSettings::Representation
280
311
 
@@ -282,6 +313,7 @@ module Google
282
313
 
283
314
  property :il4_settings, as: 'il4Settings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadIl4Settings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadIl4Settings::Representation
284
315
 
316
+ property :kaj_enrollment_state, as: 'kajEnrollmentState'
285
317
  property :kms_settings, as: 'kmsSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadKmsSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadKmsSettings::Representation
286
318
 
287
319
  hash :labels, as: 'labels'
@@ -291,6 +323,8 @@ module Google
291
323
 
292
324
  collection :resources, as: 'resources', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadResourceInfo, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadResourceInfo::Representation
293
325
 
326
+ property :saa_enrollment_response, as: 'saaEnrollmentResponse', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadSaaEnrollmentResponse, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1beta1WorkloadSaaEnrollmentResponse::Representation
327
+
294
328
  end
295
329
  end
296
330
 
@@ -351,6 +385,14 @@ module Google
351
385
  end
352
386
  end
353
387
 
388
+ class GoogleCloudAssuredworkloadsV1beta1WorkloadSaaEnrollmentResponse
389
+ # @private
390
+ class Representation < Google::Apis::Core::JsonRepresentation
391
+ collection :setup_errors, as: 'setupErrors'
392
+ property :setup_status, as: 'setupStatus'
393
+ end
394
+ end
395
+
354
396
  class GoogleCloudAssuredworkloadsVersioningV1mainCreateWorkloadOperationMetadata
355
397
  # @private
356
398
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -372,6 +414,7 @@ module Google
372
414
  property :compliance_regime, as: 'complianceRegime'
373
415
  property :create_time, as: 'createTime'
374
416
  property :display_name, as: 'displayName'
417
+ property :enable_sovereign_controls, as: 'enableSovereignControls'
375
418
  property :etag, as: 'etag'
376
419
  property :fedramp_high_settings, as: 'fedrampHighSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadFedrampHighSettings::Representation
377
420
 
@@ -379,6 +422,7 @@ module Google
379
422
 
380
423
  property :il4_settings, as: 'il4Settings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadIl4Settings::Representation
381
424
 
425
+ property :kaj_enrollment_state, as: 'kajEnrollmentState'
382
426
  property :kms_settings, as: 'kmsSettings', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadKmsSettings::Representation
383
427
 
384
428
  hash :labels, as: 'labels'
@@ -388,6 +432,8 @@ module Google
388
432
 
389
433
  collection :resources, as: 'resources', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadResourceInfo::Representation
390
434
 
435
+ property :saa_enrollment_response, as: 'saaEnrollmentResponse', class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadSaaEnrollmentResponse, decorator: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsVersioningV1mainWorkloadSaaEnrollmentResponse::Representation
436
+
391
437
  end
392
438
  end
393
439
 
@@ -448,6 +494,14 @@ module Google
448
494
  end
449
495
  end
450
496
 
497
+ class GoogleCloudAssuredworkloadsVersioningV1mainWorkloadSaaEnrollmentResponse
498
+ # @private
499
+ class Representation < Google::Apis::Core::JsonRepresentation
500
+ collection :setup_errors, as: 'setupErrors'
501
+ property :setup_status, as: 'setupStatus'
502
+ end
503
+ end
504
+
451
505
  class GoogleLongrunningListOperationsResponse
452
506
  # @private
453
507
  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.13.0
4
+ version: 0.14.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: 2021-12-06 00:00:00.000000000 Z
11
+ date: 2021-12-13 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.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-assuredworkloads_v1/v0.14.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: []