google-cloud-assured_workloads-v1beta1 0.7.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 543b1ec5976569d2f60a6ded2af2e1f07a7bd9413cc28f0ec8512b9f1638ebd9
4
- data.tar.gz: 2740abeb139903f288246b87be069b46d4e5bc64a3d58203e5794a15eccdd82e
3
+ metadata.gz: 5b4db4bac7eca108bedc87f89ea7af55287894ad86791aea37705a0f26212f10
4
+ data.tar.gz: b18e8abfebe2ed59ba49e4b938af839f5e52cc2bbb762b0d511c32a6a01a298d
5
5
  SHA512:
6
- metadata.gz: 570185445778e03350e7c9b62c8ec174dd23a89329c2db40b55980d7ff369cf8b33e06bed8d8addcd8542bfb30147a513c522cbc68b93ebfe41e0038d8c28554
7
- data.tar.gz: 871035585d9d48c9b2f96416aed4496232cc754e87c725ab8067c28e2a1eefe236a739d2bfc88d7b48db027babb56b5fcc165b757bbac265bbbd3dd0ee7ead9f
6
+ metadata.gz: c2e337ba2c062dd1d7dc3aeb3a55ad16250c5d5f0f8dbc487d7cf86da02a2e7e50b6f39ea2e8388e825bfe191c0d5c5b1b4810ff2375531a53100d9362750cb0
7
+ data.tar.gz: 3dee983a8bce0bd141abd0c7a2bb39800fe377d9e9bbdd399c180562302c684385d3020e94470a55518b10edb6cb84c51caa3bc0e64042cb51d0a7b97246d02d
@@ -41,13 +41,12 @@ module Google
41
41
  # See {::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client::Configuration}
42
42
  # for a description of the configuration fields.
43
43
  #
44
- # ## Example
44
+ # @example
45
45
  #
46
- # To modify the configuration for all AssuredWorkloadsService clients:
47
- #
48
- # ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.configure do |config|
49
- # config.timeout = 10.0
50
- # end
46
+ # # Modify the configuration for all AssuredWorkloadsService clients
47
+ # ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.configure do |config|
48
+ # config.timeout = 10.0
49
+ # end
51
50
  #
52
51
  # @yield [config] Configure the Client client.
53
52
  # @yieldparam config [Client::Configuration]
@@ -113,19 +112,15 @@ module Google
113
112
  ##
114
113
  # Create a new AssuredWorkloadsService client object.
115
114
  #
116
- # ## Examples
117
- #
118
- # To create a new AssuredWorkloadsService client with the default
119
- # configuration:
120
- #
121
- # client = ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new
115
+ # @example
122
116
  #
123
- # To create a new AssuredWorkloadsService client with a custom
124
- # configuration:
117
+ # # Create a client using the default configuration
118
+ # client = ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new
125
119
  #
126
- # client = ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new do |config|
127
- # config.timeout = 10.0
128
- # end
120
+ # # Create a client using a custom configuration
121
+ # client = ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new do |config|
122
+ # config.timeout = 10.0
123
+ # end
129
124
  #
130
125
  # @yield [config] Configure the AssuredWorkloadsService client.
131
126
  # @yieldparam config [Client::Configuration]
@@ -145,10 +140,9 @@ module Google
145
140
 
146
141
  # Create credentials
147
142
  credentials = @config.credentials
148
- # Use self-signed JWT if the scope and endpoint are unchanged from default,
143
+ # Use self-signed JWT if the endpoint is unchanged from default,
149
144
  # but only if the default endpoint does not have a region prefix.
150
- enable_self_signed_jwt = @config.scope == Client.configure.scope &&
151
- @config.endpoint == Client.configure.endpoint &&
145
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
152
146
  !@config.endpoint.split(".").first.include?("-")
153
147
  credentials ||= Credentials.default scope: @config.scope,
154
148
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -205,8 +199,8 @@ module Google
205
199
  # @param workload [::Google::Cloud::AssuredWorkloads::V1beta1::Workload, ::Hash]
206
200
  # Required. Assured Workload to create
207
201
  # @param external_id [::String]
208
- # Optional. A identifier associated with the workload and underlying projects which
209
- # allows for the break down of billing costs for a workload. The value
202
+ # Optional. A identifier associated with the workload and underlying projects
203
+ # which allows for the break down of billing costs for a workload. The value
210
204
  # provided for the identifier will add a label to the workload and contained
211
205
  # projects with the identifier as the value.
212
206
  #
@@ -218,6 +212,28 @@ module Google
218
212
  #
219
213
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
220
214
  #
215
+ # @example Basic example
216
+ # require "google/cloud/assured_workloads/v1beta1"
217
+ #
218
+ # # Create a client object. The client can be reused for multiple calls.
219
+ # client = Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new
220
+ #
221
+ # # Create a request. To set request fields, pass in keyword arguments.
222
+ # request = Google::Cloud::AssuredWorkloads::V1beta1::CreateWorkloadRequest.new
223
+ #
224
+ # # Call the create_workload method.
225
+ # result = client.create_workload request
226
+ #
227
+ # # The returned object is of type Gapic::Operation. You can use this
228
+ # # object to check the status of an operation, cancel it, or wait
229
+ # # for results. Here is how to block until completion:
230
+ # result.wait_until_done! timeout: 60
231
+ # if result.response?
232
+ # p result.response
233
+ # else
234
+ # puts "Error!"
235
+ # end
236
+ #
221
237
  def create_workload request, options = nil
222
238
  raise ::ArgumentError, "request must be provided" if request.nil?
223
239
 
@@ -235,16 +251,20 @@ module Google
235
251
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
236
252
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
237
253
 
238
- header_params = {
239
- "parent" => request.parent
240
- }
254
+ header_params = {}
255
+ if request.parent
256
+ header_params["parent"] = request.parent
257
+ end
258
+
241
259
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
242
260
  metadata[:"x-goog-request-params"] ||= request_params_header
243
261
 
244
262
  options.apply_defaults timeout: @config.rpcs.create_workload.timeout,
245
263
  metadata: metadata,
246
264
  retry_policy: @config.rpcs.create_workload.retry_policy
247
- options.apply_defaults metadata: @config.metadata,
265
+
266
+ options.apply_defaults timeout: @config.timeout,
267
+ metadata: @config.metadata,
248
268
  retry_policy: @config.retry_policy
249
269
 
250
270
  @assured_workloads_service_stub.call_rpc :create_workload, request, options: options do |response, operation|
@@ -293,6 +313,21 @@ module Google
293
313
  #
294
314
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
295
315
  #
316
+ # @example Basic example
317
+ # require "google/cloud/assured_workloads/v1beta1"
318
+ #
319
+ # # Create a client object. The client can be reused for multiple calls.
320
+ # client = Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new
321
+ #
322
+ # # Create a request. To set request fields, pass in keyword arguments.
323
+ # request = Google::Cloud::AssuredWorkloads::V1beta1::UpdateWorkloadRequest.new
324
+ #
325
+ # # Call the update_workload method.
326
+ # result = client.update_workload request
327
+ #
328
+ # # The returned object is of type Google::Cloud::AssuredWorkloads::V1beta1::Workload.
329
+ # p result
330
+ #
296
331
  def update_workload request, options = nil
297
332
  raise ::ArgumentError, "request must be provided" if request.nil?
298
333
 
@@ -310,16 +345,20 @@ module Google
310
345
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
311
346
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
312
347
 
313
- header_params = {
314
- "workload.name" => request.workload.name
315
- }
348
+ header_params = {}
349
+ if request.workload&.name
350
+ header_params["workload.name"] = request.workload.name
351
+ end
352
+
316
353
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
317
354
  metadata[:"x-goog-request-params"] ||= request_params_header
318
355
 
319
356
  options.apply_defaults timeout: @config.rpcs.update_workload.timeout,
320
357
  metadata: metadata,
321
358
  retry_policy: @config.rpcs.update_workload.retry_policy
322
- options.apply_defaults metadata: @config.metadata,
359
+
360
+ options.apply_defaults timeout: @config.timeout,
361
+ metadata: @config.metadata,
323
362
  retry_policy: @config.retry_policy
324
363
 
325
364
  @assured_workloads_service_stub.call_rpc :update_workload, request, options: options do |response, operation|
@@ -366,6 +405,21 @@ module Google
366
405
  #
367
406
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
368
407
  #
408
+ # @example Basic example
409
+ # require "google/cloud/assured_workloads/v1beta1"
410
+ #
411
+ # # Create a client object. The client can be reused for multiple calls.
412
+ # client = Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new
413
+ #
414
+ # # Create a request. To set request fields, pass in keyword arguments.
415
+ # request = Google::Cloud::AssuredWorkloads::V1beta1::DeleteWorkloadRequest.new
416
+ #
417
+ # # Call the delete_workload method.
418
+ # result = client.delete_workload request
419
+ #
420
+ # # The returned object is of type Google::Protobuf::Empty.
421
+ # p result
422
+ #
369
423
  def delete_workload request, options = nil
370
424
  raise ::ArgumentError, "request must be provided" if request.nil?
371
425
 
@@ -383,16 +437,20 @@ module Google
383
437
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
384
438
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
385
439
 
386
- header_params = {
387
- "name" => request.name
388
- }
440
+ header_params = {}
441
+ if request.name
442
+ header_params["name"] = request.name
443
+ end
444
+
389
445
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
390
446
  metadata[:"x-goog-request-params"] ||= request_params_header
391
447
 
392
448
  options.apply_defaults timeout: @config.rpcs.delete_workload.timeout,
393
449
  metadata: metadata,
394
450
  retry_policy: @config.rpcs.delete_workload.retry_policy
395
- options.apply_defaults metadata: @config.metadata,
451
+
452
+ options.apply_defaults timeout: @config.timeout,
453
+ metadata: @config.metadata,
396
454
  retry_policy: @config.retry_policy
397
455
 
398
456
  @assured_workloads_service_stub.call_rpc :delete_workload, request, options: options do |response, operation|
@@ -422,8 +480,8 @@ module Google
422
480
  # the default parameter values, pass an empty Hash as a request object (see above).
423
481
  #
424
482
  # @param name [::String]
425
- # Required. The resource name of the Workload to fetch. This is the workloads's
426
- # relative path in the API, formatted as
483
+ # Required. The resource name of the Workload to fetch. This is the
484
+ # workloads's relative path in the API, formatted as
427
485
  # "organizations/\\{organization_id}/locations/\\{location_id}/workloads/\\{workload_id}".
428
486
  # For example,
429
487
  # "organizations/123/locations/us-east1/workloads/assured-workload-1".
@@ -436,6 +494,21 @@ module Google
436
494
  #
437
495
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
438
496
  #
497
+ # @example Basic example
498
+ # require "google/cloud/assured_workloads/v1beta1"
499
+ #
500
+ # # Create a client object. The client can be reused for multiple calls.
501
+ # client = Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new
502
+ #
503
+ # # Create a request. To set request fields, pass in keyword arguments.
504
+ # request = Google::Cloud::AssuredWorkloads::V1beta1::GetWorkloadRequest.new
505
+ #
506
+ # # Call the get_workload method.
507
+ # result = client.get_workload request
508
+ #
509
+ # # The returned object is of type Google::Cloud::AssuredWorkloads::V1beta1::Workload.
510
+ # p result
511
+ #
439
512
  def get_workload request, options = nil
440
513
  raise ::ArgumentError, "request must be provided" if request.nil?
441
514
 
@@ -453,16 +526,20 @@ module Google
453
526
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
454
527
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
455
528
 
456
- header_params = {
457
- "name" => request.name
458
- }
529
+ header_params = {}
530
+ if request.name
531
+ header_params["name"] = request.name
532
+ end
533
+
459
534
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
460
535
  metadata[:"x-goog-request-params"] ||= request_params_header
461
536
 
462
537
  options.apply_defaults timeout: @config.rpcs.get_workload.timeout,
463
538
  metadata: metadata,
464
539
  retry_policy: @config.rpcs.get_workload.retry_policy
465
- options.apply_defaults metadata: @config.metadata,
540
+
541
+ options.apply_defaults timeout: @config.timeout,
542
+ metadata: @config.metadata,
466
543
  retry_policy: @config.retry_policy
467
544
 
468
545
  @assured_workloads_service_stub.call_rpc :get_workload, request, options: options do |response, operation|
@@ -512,6 +589,27 @@ module Google
512
589
  #
513
590
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
514
591
  #
592
+ # @example Basic example
593
+ # require "google/cloud/assured_workloads/v1beta1"
594
+ #
595
+ # # Create a client object. The client can be reused for multiple calls.
596
+ # client = Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new
597
+ #
598
+ # # Create a request. To set request fields, pass in keyword arguments.
599
+ # request = Google::Cloud::AssuredWorkloads::V1beta1::ListWorkloadsRequest.new
600
+ #
601
+ # # Call the list_workloads method.
602
+ # result = client.list_workloads request
603
+ #
604
+ # # The returned object is of type Gapic::PagedEnumerable. You can
605
+ # # iterate over all elements by calling #each, and the enumerable
606
+ # # will lazily make API calls to fetch subsequent pages. Other
607
+ # # methods are also available for managing paging directly.
608
+ # result.each do |response|
609
+ # # Each element is of type ::Google::Cloud::AssuredWorkloads::V1beta1::Workload.
610
+ # p response
611
+ # end
612
+ #
515
613
  def list_workloads request, options = nil
516
614
  raise ::ArgumentError, "request must be provided" if request.nil?
517
615
 
@@ -529,16 +627,20 @@ module Google
529
627
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
530
628
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
531
629
 
532
- header_params = {
533
- "parent" => request.parent
534
- }
630
+ header_params = {}
631
+ if request.parent
632
+ header_params["parent"] = request.parent
633
+ end
634
+
535
635
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
536
636
  metadata[:"x-goog-request-params"] ||= request_params_header
537
637
 
538
638
  options.apply_defaults timeout: @config.rpcs.list_workloads.timeout,
539
639
  metadata: metadata,
540
640
  retry_policy: @config.rpcs.list_workloads.retry_policy
541
- options.apply_defaults metadata: @config.metadata,
641
+
642
+ options.apply_defaults timeout: @config.timeout,
643
+ metadata: @config.metadata,
542
644
  retry_policy: @config.retry_policy
543
645
 
544
646
  @assured_workloads_service_stub.call_rpc :list_workloads, request, options: options do |response, operation|
@@ -563,22 +665,21 @@ module Google
563
665
  # Configuration can be applied globally to all clients, or to a single client
564
666
  # on construction.
565
667
  #
566
- # # Examples
567
- #
568
- # To modify the global config, setting the timeout for create_workload
569
- # to 20 seconds, and all remaining timeouts to 10 seconds:
570
- #
571
- # ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.configure do |config|
572
- # config.timeout = 10.0
573
- # config.rpcs.create_workload.timeout = 20.0
574
- # end
575
- #
576
- # To apply the above configuration only to a new client:
577
- #
578
- # client = ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new do |config|
579
- # config.timeout = 10.0
580
- # config.rpcs.create_workload.timeout = 20.0
581
- # end
668
+ # @example
669
+ #
670
+ # # Modify the global config, setting the timeout for
671
+ # # create_workload to 20 seconds,
672
+ # # and all remaining timeouts to 10 seconds.
673
+ # ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.configure do |config|
674
+ # config.timeout = 10.0
675
+ # config.rpcs.create_workload.timeout = 20.0
676
+ # end
677
+ #
678
+ # # Apply the above configuration only to a new client.
679
+ # client = ::Google::Cloud::AssuredWorkloads::V1beta1::AssuredWorkloadsService::Client.new do |config|
680
+ # config.timeout = 10.0
681
+ # config.rpcs.create_workload.timeout = 20.0
682
+ # end
582
683
  #
583
684
  # @!attribute [rw] endpoint
584
685
  # The hostname or hostname:port of the service endpoint.
@@ -143,6 +143,27 @@ module Google
143
143
  #
144
144
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
145
145
  #
146
+ # @example Basic example
147
+ # require "google/longrunning"
148
+ #
149
+ # # Create a client object. The client can be reused for multiple calls.
150
+ # client = Google::Longrunning::Operations::Client.new
151
+ #
152
+ # # Create a request. To set request fields, pass in keyword arguments.
153
+ # request = Google::Longrunning::ListOperationsRequest.new
154
+ #
155
+ # # Call the list_operations method.
156
+ # result = client.list_operations request
157
+ #
158
+ # # The returned object is of type Gapic::PagedEnumerable. You can
159
+ # # iterate over all elements by calling #each, and the enumerable
160
+ # # will lazily make API calls to fetch subsequent pages. Other
161
+ # # methods are also available for managing paging directly.
162
+ # result.each do |response|
163
+ # # Each element is of type ::Google::Longrunning::Operation.
164
+ # p response
165
+ # end
166
+ #
146
167
  def list_operations request, options = nil
147
168
  raise ::ArgumentError, "request must be provided" if request.nil?
148
169
 
@@ -160,16 +181,20 @@ module Google
160
181
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
161
182
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
162
183
 
163
- header_params = {
164
- "name" => request.name
165
- }
184
+ header_params = {}
185
+ if request.name
186
+ header_params["name"] = request.name
187
+ end
188
+
166
189
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
167
190
  metadata[:"x-goog-request-params"] ||= request_params_header
168
191
 
169
192
  options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
170
193
  metadata: metadata,
171
194
  retry_policy: @config.rpcs.list_operations.retry_policy
172
- options.apply_defaults metadata: @config.metadata,
195
+
196
+ options.apply_defaults timeout: @config.timeout,
197
+ metadata: @config.metadata,
173
198
  retry_policy: @config.retry_policy
174
199
 
175
200
  @operations_stub.call_rpc :list_operations, request, options: options do |response, operation|
@@ -213,6 +238,28 @@ module Google
213
238
  #
214
239
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
215
240
  #
241
+ # @example Basic example
242
+ # require "google/longrunning"
243
+ #
244
+ # # Create a client object. The client can be reused for multiple calls.
245
+ # client = Google::Longrunning::Operations::Client.new
246
+ #
247
+ # # Create a request. To set request fields, pass in keyword arguments.
248
+ # request = Google::Longrunning::GetOperationRequest.new
249
+ #
250
+ # # Call the get_operation method.
251
+ # result = client.get_operation request
252
+ #
253
+ # # The returned object is of type Gapic::Operation. You can use this
254
+ # # object to check the status of an operation, cancel it, or wait
255
+ # # for results. Here is how to block until completion:
256
+ # result.wait_until_done! timeout: 60
257
+ # if result.response?
258
+ # p result.response
259
+ # else
260
+ # puts "Error!"
261
+ # end
262
+ #
216
263
  def get_operation request, options = nil
217
264
  raise ::ArgumentError, "request must be provided" if request.nil?
218
265
 
@@ -230,16 +277,20 @@ module Google
230
277
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
231
278
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
232
279
 
233
- header_params = {
234
- "name" => request.name
235
- }
280
+ header_params = {}
281
+ if request.name
282
+ header_params["name"] = request.name
283
+ end
284
+
236
285
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
237
286
  metadata[:"x-goog-request-params"] ||= request_params_header
238
287
 
239
288
  options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
240
289
  metadata: metadata,
241
290
  retry_policy: @config.rpcs.get_operation.retry_policy
242
- options.apply_defaults metadata: @config.metadata,
291
+
292
+ options.apply_defaults timeout: @config.timeout,
293
+ metadata: @config.metadata,
243
294
  retry_policy: @config.retry_policy
244
295
 
245
296
  @operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
@@ -283,6 +334,21 @@ module Google
283
334
  #
284
335
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
285
336
  #
337
+ # @example Basic example
338
+ # require "google/longrunning"
339
+ #
340
+ # # Create a client object. The client can be reused for multiple calls.
341
+ # client = Google::Longrunning::Operations::Client.new
342
+ #
343
+ # # Create a request. To set request fields, pass in keyword arguments.
344
+ # request = Google::Longrunning::DeleteOperationRequest.new
345
+ #
346
+ # # Call the delete_operation method.
347
+ # result = client.delete_operation request
348
+ #
349
+ # # The returned object is of type Google::Protobuf::Empty.
350
+ # p result
351
+ #
286
352
  def delete_operation request, options = nil
287
353
  raise ::ArgumentError, "request must be provided" if request.nil?
288
354
 
@@ -300,16 +366,20 @@ module Google
300
366
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
301
367
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
302
368
 
303
- header_params = {
304
- "name" => request.name
305
- }
369
+ header_params = {}
370
+ if request.name
371
+ header_params["name"] = request.name
372
+ end
373
+
306
374
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
307
375
  metadata[:"x-goog-request-params"] ||= request_params_header
308
376
 
309
377
  options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
310
378
  metadata: metadata,
311
379
  retry_policy: @config.rpcs.delete_operation.retry_policy
312
- options.apply_defaults metadata: @config.metadata,
380
+
381
+ options.apply_defaults timeout: @config.timeout,
382
+ metadata: @config.metadata,
313
383
  retry_policy: @config.retry_policy
314
384
 
315
385
  @operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
@@ -358,6 +428,21 @@ module Google
358
428
  #
359
429
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
360
430
  #
431
+ # @example Basic example
432
+ # require "google/longrunning"
433
+ #
434
+ # # Create a client object. The client can be reused for multiple calls.
435
+ # client = Google::Longrunning::Operations::Client.new
436
+ #
437
+ # # Create a request. To set request fields, pass in keyword arguments.
438
+ # request = Google::Longrunning::CancelOperationRequest.new
439
+ #
440
+ # # Call the cancel_operation method.
441
+ # result = client.cancel_operation request
442
+ #
443
+ # # The returned object is of type Google::Protobuf::Empty.
444
+ # p result
445
+ #
361
446
  def cancel_operation request, options = nil
362
447
  raise ::ArgumentError, "request must be provided" if request.nil?
363
448
 
@@ -375,16 +460,20 @@ module Google
375
460
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
376
461
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
377
462
 
378
- header_params = {
379
- "name" => request.name
380
- }
463
+ header_params = {}
464
+ if request.name
465
+ header_params["name"] = request.name
466
+ end
467
+
381
468
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
382
469
  metadata[:"x-goog-request-params"] ||= request_params_header
383
470
 
384
471
  options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
385
472
  metadata: metadata,
386
473
  retry_policy: @config.rpcs.cancel_operation.retry_policy
387
- options.apply_defaults metadata: @config.metadata,
474
+
475
+ options.apply_defaults timeout: @config.timeout,
476
+ metadata: @config.metadata,
388
477
  retry_policy: @config.retry_policy
389
478
 
390
479
  @operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
@@ -436,6 +525,28 @@ module Google
436
525
  #
437
526
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
438
527
  #
528
+ # @example Basic example
529
+ # require "google/longrunning"
530
+ #
531
+ # # Create a client object. The client can be reused for multiple calls.
532
+ # client = Google::Longrunning::Operations::Client.new
533
+ #
534
+ # # Create a request. To set request fields, pass in keyword arguments.
535
+ # request = Google::Longrunning::WaitOperationRequest.new
536
+ #
537
+ # # Call the wait_operation method.
538
+ # result = client.wait_operation request
539
+ #
540
+ # # The returned object is of type Gapic::Operation. You can use this
541
+ # # object to check the status of an operation, cancel it, or wait
542
+ # # for results. Here is how to block until completion:
543
+ # result.wait_until_done! timeout: 60
544
+ # if result.response?
545
+ # p result.response
546
+ # else
547
+ # puts "Error!"
548
+ # end
549
+ #
439
550
  def wait_operation request, options = nil
440
551
  raise ::ArgumentError, "request must be provided" if request.nil?
441
552
 
@@ -456,7 +567,9 @@ module Google
456
567
  options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
457
568
  metadata: metadata,
458
569
  retry_policy: @config.rpcs.wait_operation.retry_policy
459
- options.apply_defaults metadata: @config.metadata,
570
+
571
+ options.apply_defaults timeout: @config.timeout,
572
+ metadata: @config.metadata,
460
573
  retry_policy: @config.retry_policy
461
574
 
462
575
  @operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
@@ -481,22 +594,21 @@ module Google
481
594
  # Configuration can be applied globally to all clients, or to a single client
482
595
  # on construction.
483
596
  #
484
- # # Examples
485
- #
486
- # To modify the global config, setting the timeout for list_operations
487
- # to 20 seconds, and all remaining timeouts to 10 seconds:
488
- #
489
- # ::Google::Longrunning::Operations::Client.configure do |config|
490
- # config.timeout = 10.0
491
- # config.rpcs.list_operations.timeout = 20.0
492
- # end
493
- #
494
- # To apply the above configuration only to a new client:
495
- #
496
- # client = ::Google::Longrunning::Operations::Client.new do |config|
497
- # config.timeout = 10.0
498
- # config.rpcs.list_operations.timeout = 20.0
499
- # end
597
+ # @example
598
+ #
599
+ # # Modify the global config, setting the timeout for
600
+ # # list_operations to 20 seconds,
601
+ # # and all remaining timeouts to 10 seconds.
602
+ # ::Google::Longrunning::Operations::Client.configure do |config|
603
+ # config.timeout = 10.0
604
+ # config.rpcs.list_operations.timeout = 20.0
605
+ # end
606
+ #
607
+ # # Apply the above configuration only to a new client.
608
+ # client = ::Google::Longrunning::Operations::Client.new do |config|
609
+ # config.timeout = 10.0
610
+ # config.rpcs.list_operations.timeout = 20.0
611
+ # end
500
612
  #
501
613
  # @!attribute [rw] endpoint
502
614
  # The hostname or hostname:port of the service endpoint.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module AssuredWorkloads
23
23
  module V1beta1
24
- VERSION = "0.7.0"
24
+ VERSION = "0.9.0"
25
25
  end
26
26
  end
27
27
  end
@@ -1,8 +1,6 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/assuredworkloads/v1beta1/assuredworkloads_v1beta1.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/annotations_pb'
7
5
  require 'google/api/client_pb'
8
6
  require 'google/api/field_behavior_pb'
@@ -12,6 +10,8 @@ require 'google/protobuf/duration_pb'
12
10
  require 'google/protobuf/empty_pb'
13
11
  require 'google/protobuf/field_mask_pb'
14
12
  require 'google/protobuf/timestamp_pb'
13
+ require 'google/protobuf'
14
+
15
15
  Google::Protobuf::DescriptorPool.generated_pool.build do
16
16
  add_file("google/cloud/assuredworkloads/v1beta1/assuredworkloads_v1beta1.proto", :syntax => :proto3) do
17
17
  add_message "google.cloud.assuredworkloads.v1beta1.CreateWorkloadRequest" do
@@ -52,6 +52,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
52
52
  optional :provisioned_resources_parent, :string, 13
53
53
  optional :kms_settings, :message, 14, "google.cloud.assuredworkloads.v1beta1.Workload.KMSSettings"
54
54
  repeated :resource_settings, :message, 15, "google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings"
55
+ optional :kaj_enrollment_state, :enum, 17, "google.cloud.assuredworkloads.v1beta1.Workload.KajEnrollmentState"
56
+ optional :enable_sovereign_controls, :bool, 18
57
+ optional :saa_enrollment_response, :message, 20, "google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse"
55
58
  oneof :compliance_regime_settings do
56
59
  optional :il4_settings, :message, 7, "google.cloud.assuredworkloads.v1beta1.Workload.IL4Settings"
57
60
  optional :cjis_settings, :message, 8, "google.cloud.assuredworkloads.v1beta1.Workload.CJISSettings"
@@ -66,7 +69,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
66
69
  add_enum "google.cloud.assuredworkloads.v1beta1.Workload.ResourceInfo.ResourceType" do
67
70
  value :RESOURCE_TYPE_UNSPECIFIED, 0
68
71
  value :CONSUMER_PROJECT, 1
72
+ value :CONSUMER_FOLDER, 4
69
73
  value :ENCRYPTION_KEYS_PROJECT, 2
74
+ value :KEYRING, 3
70
75
  end
71
76
  add_message "google.cloud.assuredworkloads.v1beta1.Workload.KMSSettings" do
72
77
  optional :next_rotation_time, :message, 1, "google.protobuf.Timestamp"
@@ -87,6 +92,23 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
87
92
  add_message "google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings" do
88
93
  optional :resource_id, :string, 1
89
94
  optional :resource_type, :enum, 2, "google.cloud.assuredworkloads.v1beta1.Workload.ResourceInfo.ResourceType"
95
+ optional :display_name, :string, 3
96
+ end
97
+ add_message "google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse" do
98
+ proto3_optional :setup_status, :enum, 1, "google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse.SetupState"
99
+ repeated :setup_errors, :enum, 2, "google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse.SetupError"
100
+ end
101
+ add_enum "google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse.SetupState" do
102
+ value :SETUP_STATE_UNSPECIFIED, 0
103
+ value :STATUS_PENDING, 1
104
+ value :STATUS_COMPLETE, 2
105
+ end
106
+ add_enum "google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse.SetupError" do
107
+ value :SETUP_ERROR_UNSPECIFIED, 0
108
+ value :ERROR_INVALID_BASE_SETUP, 1
109
+ value :ERROR_MISSING_EXTERNAL_SIGNING_KEY, 2
110
+ value :ERROR_NOT_ALL_SERVICES_ENROLLED, 3
111
+ value :ERROR_SETUP_CHECK_FAILED, 4
90
112
  end
91
113
  add_enum "google.cloud.assuredworkloads.v1beta1.Workload.ComplianceRegime" do
92
114
  value :COMPLIANCE_REGIME_UNSPECIFIED, 0
@@ -98,12 +120,19 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
98
120
  value :HIPAA, 6
99
121
  value :HITRUST, 7
100
122
  value :EU_REGIONS_AND_SUPPORT, 8
123
+ value :CA_REGIONS_AND_SUPPORT, 9
124
+ end
125
+ add_enum "google.cloud.assuredworkloads.v1beta1.Workload.KajEnrollmentState" do
126
+ value :KAJ_ENROLLMENT_STATE_UNSPECIFIED, 0
127
+ value :KAJ_ENROLLMENT_STATE_PENDING, 1
128
+ value :KAJ_ENROLLMENT_STATE_COMPLETE, 2
101
129
  end
102
130
  add_message "google.cloud.assuredworkloads.v1beta1.CreateWorkloadOperationMetadata" do
103
131
  optional :create_time, :message, 1, "google.protobuf.Timestamp"
104
132
  optional :display_name, :string, 2
105
133
  optional :parent, :string, 3
106
134
  optional :compliance_regime, :enum, 4, "google.cloud.assuredworkloads.v1beta1.Workload.ComplianceRegime"
135
+ repeated :resource_settings, :message, 5, "google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings"
107
136
  end
108
137
  end
109
138
  end
@@ -127,7 +156,11 @@ module Google
127
156
  Workload::FedrampHighSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.FedrampHighSettings").msgclass
128
157
  Workload::FedrampModerateSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.FedrampModerateSettings").msgclass
129
158
  Workload::ResourceSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.ResourceSettings").msgclass
159
+ Workload::SaaEnrollmentResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse").msgclass
160
+ Workload::SaaEnrollmentResponse::SetupState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse.SetupState").enummodule
161
+ Workload::SaaEnrollmentResponse::SetupError = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.SaaEnrollmentResponse.SetupError").enummodule
130
162
  Workload::ComplianceRegime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.ComplianceRegime").enummodule
163
+ Workload::KajEnrollmentState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.Workload.KajEnrollmentState").enummodule
131
164
  CreateWorkloadOperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.assuredworkloads.v1beta1.CreateWorkloadOperationMetadata").msgclass
132
165
  end
133
166
  end
@@ -27,7 +27,7 @@ module Google
27
27
  # Service to manage AssuredWorkloads.
28
28
  class Service
29
29
 
30
- include GRPC::GenericService
30
+ include ::GRPC::GenericService
31
31
 
32
32
  self.marshal_class_method = :encode
33
33
  self.unmarshal_class_method = :decode
@@ -31,8 +31,8 @@ module Google
31
31
  # Required. Assured Workload to create
32
32
  # @!attribute [rw] external_id
33
33
  # @return [::String]
34
- # Optional. A identifier associated with the workload and underlying projects which
35
- # allows for the break down of billing costs for a workload. The value
34
+ # Optional. A identifier associated with the workload and underlying projects
35
+ # which allows for the break down of billing costs for a workload. The value
36
36
  # provided for the identifier will add a label to the workload and contained
37
37
  # projects with the identifier as the value.
38
38
  class CreateWorkloadRequest
@@ -73,8 +73,8 @@ module Google
73
73
  # Request for fetching a workload.
74
74
  # @!attribute [rw] name
75
75
  # @return [::String]
76
- # Required. The resource name of the Workload to fetch. This is the workloads's
77
- # relative path in the API, formatted as
76
+ # Required. The resource name of the Workload to fetch. This is the
77
+ # workloads's relative path in the API, formatted as
78
78
  # "organizations/\\{organization_id}/locations/\\{location_id}/workloads/\\{workload_id}".
79
79
  # For example,
80
80
  # "organizations/123/locations/us-east1/workloads/assured-workload-1".
@@ -148,7 +148,7 @@ module Google
148
148
  # Output only. Immutable. The Workload creation timestamp.
149
149
  # @!attribute [rw] billing_account
150
150
  # @return [::String]
151
- # Required. Input only. The billing account used for the resources which are
151
+ # Input only. The billing account used for the resources which are
152
152
  # direct children of workload. This billing account is initially associated
153
153
  # with the resources created as part of Workload creation.
154
154
  # After the initial creation of these resources, the customer can change
@@ -158,16 +158,20 @@ module Google
158
158
  # `billingAccounts/012345-567890-ABCDEF`.
159
159
  # @!attribute [rw] il4_settings
160
160
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::IL4Settings]
161
- # Required. Input only. Immutable. Settings specific to resources needed for IL4.
161
+ # Required. Input only. Immutable. Settings specific to resources needed
162
+ # for IL4.
162
163
  # @!attribute [rw] cjis_settings
163
164
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::CJISSettings]
164
- # Required. Input only. Immutable. Settings specific to resources needed for CJIS.
165
+ # Required. Input only. Immutable. Settings specific to resources needed
166
+ # for CJIS.
165
167
  # @!attribute [rw] fedramp_high_settings
166
168
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::FedrampHighSettings]
167
- # Required. Input only. Immutable. Settings specific to resources needed for FedRAMP High.
169
+ # Required. Input only. Immutable. Settings specific to resources needed
170
+ # for FedRAMP High.
168
171
  # @!attribute [rw] fedramp_moderate_settings
169
172
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::FedrampModerateSettings]
170
- # Required. Input only. Immutable. Settings specific to resources needed for FedRAMP Moderate.
173
+ # Required. Input only. Immutable. Settings specific to resources needed
174
+ # for FedRAMP Moderate.
171
175
  # @!attribute [rw] etag
172
176
  # @return [::String]
173
177
  # Optional. ETag of the workload, it is calculated on the basis
@@ -177,23 +181,34 @@ module Google
177
181
  # Optional. Labels applied to the workload.
178
182
  # @!attribute [rw] provisioned_resources_parent
179
183
  # @return [::String]
180
- # Input only. The parent resource for the resources managed by this Assured Workload. May
181
- # be either an organization or a folder. Must be the same or a child of the
184
+ # Input only. The parent resource for the resources managed by this Assured
185
+ # Workload. May be either empty or a folder resource which is a child of the
182
186
  # Workload parent. If not specified all resources are created under the
183
- # Workload parent.
184
- # Formats:
187
+ # parent organization.
188
+ # Format:
185
189
  # folders/\\{folder_id}
186
- # organizations/\\{organization_id}
187
190
  # @!attribute [rw] kms_settings
188
191
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::KMSSettings]
189
- # Input only. Settings used to create a CMEK crypto key. When set a project with a KMS
190
- # CMEK key is provisioned. This field is mandatory for a subset of Compliance
191
- # Regimes.
192
+ # Input only. Settings used to create a CMEK crypto key. When set a project
193
+ # with a KMS CMEK key is provisioned. This field is mandatory for a subset of
194
+ # Compliance Regimes.
192
195
  # @!attribute [rw] resource_settings
193
196
  # @return [::Array<::Google::Cloud::AssuredWorkloads::V1beta1::Workload::ResourceSettings>]
194
- # Input only. Resource properties that are used to customize workload resources.
195
- # These properties (such as custom project id) will be used to create
196
- # workload resources if possible. This field is optional.
197
+ # Input only. Resource properties that are used to customize workload
198
+ # resources. These properties (such as custom project id) will be used to
199
+ # create workload resources if possible. This field is optional.
200
+ # @!attribute [r] kaj_enrollment_state
201
+ # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::KajEnrollmentState]
202
+ # Output only. Represents the KAJ enrollment state of the given workload.
203
+ # @!attribute [rw] enable_sovereign_controls
204
+ # @return [::Boolean]
205
+ # Optional. Indicates the sovereignty status of the given workload.
206
+ # Currently meant to be used by Europe/Canada customers.
207
+ # @!attribute [r] saa_enrollment_response
208
+ # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::SaaEnrollmentResponse]
209
+ # Output only. Represents the SAA enrollment response of the given workload.
210
+ # SAA enrollment response is queried during GetWorkload call.
211
+ # In failure cases, user friendly error message is shown in SAA details page.
197
212
  class Workload
198
213
  include ::Google::Protobuf::MessageExts
199
214
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -215,24 +230,32 @@ module Google
215
230
  # Unknown resource type.
216
231
  RESOURCE_TYPE_UNSPECIFIED = 0
217
232
 
218
- # Consumer project.
233
+ # Deprecated. Existing workloads will continue to support this, but new
234
+ # CreateWorkloadRequests should not specify this as an input value.
219
235
  CONSUMER_PROJECT = 1
220
236
 
237
+ # Consumer Folder.
238
+ CONSUMER_FOLDER = 4
239
+
221
240
  # Consumer project containing encryption keys.
222
241
  ENCRYPTION_KEYS_PROJECT = 2
242
+
243
+ # Keyring resource that hosts encryption keys.
244
+ KEYRING = 3
223
245
  end
224
246
  end
225
247
 
226
248
  # Settings specific to the Key Management Service.
227
249
  # @!attribute [rw] next_rotation_time
228
250
  # @return [::Google::Protobuf::Timestamp]
229
- # Required. Input only. Immutable. The time at which the Key Management Service will automatically create a
230
- # new version of the crypto key and mark it as the primary.
251
+ # Required. Input only. Immutable. The time at which the Key Management
252
+ # Service will automatically create a new version of the crypto key and
253
+ # mark it as the primary.
231
254
  # @!attribute [rw] rotation_period
232
255
  # @return [::Google::Protobuf::Duration]
233
- # Required. Input only. Immutable. [next_rotation_time] will be advanced by this period when the Key
234
- # Management Service automatically rotates a key. Must be at least 24 hours
235
- # and at most 876,000 hours.
256
+ # Required. Input only. Immutable. [next_rotation_time] will be advanced by
257
+ # this period when the Key Management Service automatically rotates a key.
258
+ # Must be at least 24 hours and at most 876,000 hours.
236
259
  class KMSSettings
237
260
  include ::Google::Protobuf::MessageExts
238
261
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -241,7 +264,8 @@ module Google
241
264
  # Settings specific to resources needed for IL4.
242
265
  # @!attribute [rw] kms_settings
243
266
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::KMSSettings]
244
- # Required. Input only. Immutable. Settings used to create a CMEK crypto key.
267
+ # Required. Input only. Immutable. Settings used to create a CMEK crypto
268
+ # key.
245
269
  class IL4Settings
246
270
  include ::Google::Protobuf::MessageExts
247
271
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -250,7 +274,8 @@ module Google
250
274
  # Settings specific to resources needed for CJIS.
251
275
  # @!attribute [rw] kms_settings
252
276
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::KMSSettings]
253
- # Required. Input only. Immutable. Settings used to create a CMEK crypto key.
277
+ # Required. Input only. Immutable. Settings used to create a CMEK crypto
278
+ # key.
254
279
  class CJISSettings
255
280
  include ::Google::Protobuf::MessageExts
256
281
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -259,7 +284,8 @@ module Google
259
284
  # Settings specific to resources needed for FedRAMP High.
260
285
  # @!attribute [rw] kms_settings
261
286
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::KMSSettings]
262
- # Required. Input only. Immutable. Settings used to create a CMEK crypto key.
287
+ # Required. Input only. Immutable. Settings used to create a CMEK crypto
288
+ # key.
263
289
  class FedrampHighSettings
264
290
  include ::Google::Protobuf::MessageExts
265
291
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -268,7 +294,8 @@ module Google
268
294
  # Settings specific to resources needed for FedRAMP Moderate.
269
295
  # @!attribute [rw] kms_settings
270
296
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::KMSSettings]
271
- # Required. Input only. Immutable. Settings used to create a CMEK crypto key.
297
+ # Required. Input only. Immutable. Settings used to create a CMEK crypto
298
+ # key.
272
299
  class FedrampModerateSettings
273
300
  include ::Google::Protobuf::MessageExts
274
301
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -285,11 +312,61 @@ module Google
285
312
  # Indicates the type of resource. This field should be specified to
286
313
  # correspond the id to the right project type (CONSUMER_PROJECT or
287
314
  # ENCRYPTION_KEYS_PROJECT)
315
+ # @!attribute [rw] display_name
316
+ # @return [::String]
317
+ # User-assigned resource display name.
318
+ # If not empty it will be used to create a resource with the specified
319
+ # name.
288
320
  class ResourceSettings
289
321
  include ::Google::Protobuf::MessageExts
290
322
  extend ::Google::Protobuf::MessageExts::ClassMethods
291
323
  end
292
324
 
325
+ # Signed Access Approvals (SAA) enrollment response.
326
+ # @!attribute [rw] setup_status
327
+ # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::SaaEnrollmentResponse::SetupState]
328
+ # Indicates SAA enrollment status of a given workload.
329
+ # @!attribute [rw] setup_errors
330
+ # @return [::Array<::Google::Cloud::AssuredWorkloads::V1beta1::Workload::SaaEnrollmentResponse::SetupError>]
331
+ # Indicates SAA enrollment setup error if any.
332
+ class SaaEnrollmentResponse
333
+ include ::Google::Protobuf::MessageExts
334
+ extend ::Google::Protobuf::MessageExts::ClassMethods
335
+
336
+ # Setup state of SAA enrollment.
337
+ module SetupState
338
+ # Unspecified.
339
+ SETUP_STATE_UNSPECIFIED = 0
340
+
341
+ # SAA enrollment pending.
342
+ STATUS_PENDING = 1
343
+
344
+ # SAA enrollment comopleted.
345
+ STATUS_COMPLETE = 2
346
+ end
347
+
348
+ # Setup error of SAA enrollment.
349
+ module SetupError
350
+ # Unspecified.
351
+ SETUP_ERROR_UNSPECIFIED = 0
352
+
353
+ # Invalid states for all customers, to be redirected to AA UI for
354
+ # additional details.
355
+ ERROR_INVALID_BASE_SETUP = 1
356
+
357
+ # Returned when there is not an EKM key configured.
358
+ ERROR_MISSING_EXTERNAL_SIGNING_KEY = 2
359
+
360
+ # Returned when there are no enrolled services or the customer is
361
+ # enrolled in CAA only for a subset of services.
362
+ ERROR_NOT_ALL_SERVICES_ENROLLED = 3
363
+
364
+ # Returned when exception was encountered during evaluation of other
365
+ # criteria.
366
+ ERROR_SETUP_CHECK_FAILED = 4
367
+ end
368
+ end
369
+
293
370
  # @!attribute [rw] key
294
371
  # @return [::String]
295
372
  # @!attribute [rw] value
@@ -327,6 +404,21 @@ module Google
327
404
 
328
405
  # Assured Workloads For EU Regions and Support controls
329
406
  EU_REGIONS_AND_SUPPORT = 8
407
+
408
+ # Assured Workloads For Canada Regions and Support controls
409
+ CA_REGIONS_AND_SUPPORT = 9
410
+ end
411
+
412
+ # Key Access Justifications(KAJ) Enrollment State.
413
+ module KajEnrollmentState
414
+ # Default State for KAJ Enrollment.
415
+ KAJ_ENROLLMENT_STATE_UNSPECIFIED = 0
416
+
417
+ # Pending State for KAJ Enrollment.
418
+ KAJ_ENROLLMENT_STATE_PENDING = 1
419
+
420
+ # Complete State for KAJ Enrollment.
421
+ KAJ_ENROLLMENT_STATE_COMPLETE = 2
330
422
  end
331
423
  end
332
424
 
@@ -342,8 +434,12 @@ module Google
342
434
  # Optional. The parent of the workload.
343
435
  # @!attribute [rw] compliance_regime
344
436
  # @return [::Google::Cloud::AssuredWorkloads::V1beta1::Workload::ComplianceRegime]
345
- # Optional. Compliance controls that should be applied to the resources managed by
346
- # the workload.
437
+ # Optional. Compliance controls that should be applied to the resources
438
+ # managed by the workload.
439
+ # @!attribute [rw] resource_settings
440
+ # @return [::Array<::Google::Cloud::AssuredWorkloads::V1beta1::Workload::ResourceSettings>]
441
+ # Optional. Resource properties in the input that are used for
442
+ # creating/customizing workload resources.
347
443
  class CreateWorkloadOperationMetadata
348
444
  include ::Google::Protobuf::MessageExts
349
445
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-assured_workloads-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.9.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-07-29 00:00:00.000000000 Z
11
+ date: 2021-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.5'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.5'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a