google-cloud-assured_workloads-v1beta1 0.8.0 → 0.8.1

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: ddd2e2c405653a02a4852a2dda985b370c3a9ad92c97e4c4fde36cd3066b20c3
4
- data.tar.gz: 763705e05dc28c3b9904593c5f58e91b3270f033c6e382c975a824e975759d20
3
+ metadata.gz: 1e0a780eeabce7bf7b855b58fe63620614d2e3ee9b574a99e86d67dda315b48a
4
+ data.tar.gz: 3b761ae99c0777b309153122e844814ad64816e61f7903f1d8a0ba052474b6bf
5
5
  SHA512:
6
- metadata.gz: 12f0c94ebfaa8fdc98afda4e5247c3f73c67b3daf754961794663f5ff12e6ae8f73e2aca8654bb5b39c2f12031426f9bdf5b6f23683a9a957e0e34c22b17facd
7
- data.tar.gz: e2af00469999791739794651a9f3b0a616f4e2f46db74363a27b2d270748667f1b6babd5986ffe86eff7ef45828df1edafbde0ec7f60f8ba0f385399e3f8ce48
6
+ metadata.gz: 3e63d558c2cc7c51f1d20be20296930e92bbe9a6d5bb5cd4615ef1ea3161eb30b711f69a4fa40e5aa0e649d1aa72e96b9003bed0b5bf1d02ad0cbf24ea527d9f
7
+ data.tar.gz: 2e7df0739af6f15a1417f8f69145c2e131a4e4f3e93822dd37445e794de58b8d648959ed986f01c3454f67e3f2db5e2c4fc43ef888edfe2495ed8baf0eca1eb8
@@ -212,6 +212,28 @@ module Google
212
212
  #
213
213
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
214
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
+ #
215
237
  def create_workload request, options = nil
216
238
  raise ::ArgumentError, "request must be provided" if request.nil?
217
239
 
@@ -229,9 +251,11 @@ module Google
229
251
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
230
252
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
231
253
 
232
- header_params = {
233
- "parent" => request.parent
234
- }
254
+ header_params = {}
255
+ if request.parent
256
+ header_params["parent"] = request.parent
257
+ end
258
+
235
259
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
236
260
  metadata[:"x-goog-request-params"] ||= request_params_header
237
261
 
@@ -289,6 +313,21 @@ module Google
289
313
  #
290
314
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
291
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
+ #
292
331
  def update_workload request, options = nil
293
332
  raise ::ArgumentError, "request must be provided" if request.nil?
294
333
 
@@ -306,9 +345,11 @@ module Google
306
345
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
307
346
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
308
347
 
309
- header_params = {
310
- "workload.name" => request.workload.name
311
- }
348
+ header_params = {}
349
+ if request.workload&.name
350
+ header_params["workload.name"] = request.workload.name
351
+ end
352
+
312
353
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
313
354
  metadata[:"x-goog-request-params"] ||= request_params_header
314
355
 
@@ -364,6 +405,21 @@ module Google
364
405
  #
365
406
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
366
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
+ #
367
423
  def delete_workload request, options = nil
368
424
  raise ::ArgumentError, "request must be provided" if request.nil?
369
425
 
@@ -381,9 +437,11 @@ module Google
381
437
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
382
438
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
383
439
 
384
- header_params = {
385
- "name" => request.name
386
- }
440
+ header_params = {}
441
+ if request.name
442
+ header_params["name"] = request.name
443
+ end
444
+
387
445
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
388
446
  metadata[:"x-goog-request-params"] ||= request_params_header
389
447
 
@@ -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,9 +526,11 @@ 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
 
@@ -514,6 +589,27 @@ module Google
514
589
  #
515
590
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
516
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
+ #
517
613
  def list_workloads request, options = nil
518
614
  raise ::ArgumentError, "request must be provided" if request.nil?
519
615
 
@@ -531,9 +627,11 @@ module Google
531
627
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
532
628
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
533
629
 
534
- header_params = {
535
- "parent" => request.parent
536
- }
630
+ header_params = {}
631
+ if request.parent
632
+ header_params["parent"] = request.parent
633
+ end
634
+
537
635
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
538
636
  metadata[:"x-goog-request-params"] ||= request_params_header
539
637
 
@@ -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,9 +181,11 @@ 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
 
@@ -215,6 +238,28 @@ module Google
215
238
  #
216
239
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
217
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
+ #
218
263
  def get_operation request, options = nil
219
264
  raise ::ArgumentError, "request must be provided" if request.nil?
220
265
 
@@ -232,9 +277,11 @@ module Google
232
277
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
233
278
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
234
279
 
235
- header_params = {
236
- "name" => request.name
237
- }
280
+ header_params = {}
281
+ if request.name
282
+ header_params["name"] = request.name
283
+ end
284
+
238
285
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
239
286
  metadata[:"x-goog-request-params"] ||= request_params_header
240
287
 
@@ -287,6 +334,21 @@ module Google
287
334
  #
288
335
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
289
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
+ #
290
352
  def delete_operation request, options = nil
291
353
  raise ::ArgumentError, "request must be provided" if request.nil?
292
354
 
@@ -304,9 +366,11 @@ module Google
304
366
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
305
367
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
306
368
 
307
- header_params = {
308
- "name" => request.name
309
- }
369
+ header_params = {}
370
+ if request.name
371
+ header_params["name"] = request.name
372
+ end
373
+
310
374
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
311
375
  metadata[:"x-goog-request-params"] ||= request_params_header
312
376
 
@@ -364,6 +428,21 @@ module Google
364
428
  #
365
429
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
366
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
+ #
367
446
  def cancel_operation request, options = nil
368
447
  raise ::ArgumentError, "request must be provided" if request.nil?
369
448
 
@@ -381,9 +460,11 @@ module Google
381
460
  gapic_version: ::Google::Cloud::AssuredWorkloads::V1beta1::VERSION
382
461
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
383
462
 
384
- header_params = {
385
- "name" => request.name
386
- }
463
+ header_params = {}
464
+ if request.name
465
+ header_params["name"] = request.name
466
+ end
467
+
387
468
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
388
469
  metadata[:"x-goog-request-params"] ||= request_params_header
389
470
 
@@ -444,6 +525,28 @@ module Google
444
525
  #
445
526
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
446
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
+ #
447
550
  def wait_operation request, options = nil
448
551
  raise ::ArgumentError, "request must be provided" if request.nil?
449
552
 
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module AssuredWorkloads
23
23
  module V1beta1
24
- VERSION = "0.8.0"
24
+ VERSION = "0.8.1"
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
@@ -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
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.8.0
4
+ version: 0.8.1
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-08-30 00:00:00.000000000 Z
11
+ date: 2021-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common