google-cloud-gaming-v1 0.4.0 → 0.4.1

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.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/gaming/v1/common_pb.rb +2 -2
  3. data/lib/google/cloud/gaming/v1/game_server_clusters_pb.rb +2 -2
  4. data/lib/google/cloud/gaming/v1/game_server_clusters_service/client.rb +187 -24
  5. data/lib/google/cloud/gaming/v1/game_server_clusters_service/operations.rb +115 -12
  6. data/lib/google/cloud/gaming/v1/game_server_clusters_service_pb.rb +2 -2
  7. data/lib/google/cloud/gaming/v1/game_server_clusters_service_services_pb.rb +1 -1
  8. data/lib/google/cloud/gaming/v1/game_server_configs_pb.rb +2 -2
  9. data/lib/google/cloud/gaming/v1/game_server_configs_service/client.rb +100 -12
  10. data/lib/google/cloud/gaming/v1/game_server_configs_service/operations.rb +115 -12
  11. data/lib/google/cloud/gaming/v1/game_server_configs_service_pb.rb +2 -2
  12. data/lib/google/cloud/gaming/v1/game_server_configs_service_services_pb.rb +1 -1
  13. data/lib/google/cloud/gaming/v1/game_server_deployments_pb.rb +2 -2
  14. data/lib/google/cloud/gaming/v1/game_server_deployments_service/client.rb +214 -27
  15. data/lib/google/cloud/gaming/v1/game_server_deployments_service/operations.rb +115 -12
  16. data/lib/google/cloud/gaming/v1/game_server_deployments_service_pb.rb +2 -2
  17. data/lib/google/cloud/gaming/v1/game_server_deployments_service_services_pb.rb +1 -1
  18. data/lib/google/cloud/gaming/v1/realms_pb.rb +2 -2
  19. data/lib/google/cloud/gaming/v1/realms_service/client.rb +147 -18
  20. data/lib/google/cloud/gaming/v1/realms_service/operations.rb +115 -12
  21. data/lib/google/cloud/gaming/v1/realms_service_pb.rb +2 -2
  22. data/lib/google/cloud/gaming/v1/realms_service_services_pb.rb +1 -1
  23. data/lib/google/cloud/gaming/v1/version.rb +1 -1
  24. metadata +2 -2
@@ -222,6 +222,27 @@ module Google
222
222
  #
223
223
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
224
224
  #
225
+ # @example Basic example
226
+ # require "google/cloud/gaming/v1"
227
+ #
228
+ # # Create a client object. The client can be reused for multiple calls.
229
+ # client = Google::Cloud::Gaming::V1::RealmsService::Client.new
230
+ #
231
+ # # Create a request. To set request fields, pass in keyword arguments.
232
+ # request = Google::Cloud::Gaming::V1::ListRealmsRequest.new
233
+ #
234
+ # # Call the list_realms method.
235
+ # result = client.list_realms request
236
+ #
237
+ # # The returned object is of type Gapic::PagedEnumerable. You can
238
+ # # iterate over all elements by calling #each, and the enumerable
239
+ # # will lazily make API calls to fetch subsequent pages. Other
240
+ # # methods are also available for managing paging directly.
241
+ # result.each do |response|
242
+ # # Each element is of type ::Google::Cloud::Gaming::V1::Realm.
243
+ # p response
244
+ # end
245
+ #
225
246
  def list_realms request, options = nil
226
247
  raise ::ArgumentError, "request must be provided" if request.nil?
227
248
 
@@ -239,9 +260,11 @@ module Google
239
260
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
240
261
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
241
262
 
242
- header_params = {
243
- "parent" => request.parent
244
- }
263
+ header_params = {}
264
+ if request.parent
265
+ header_params["parent"] = request.parent
266
+ end
267
+
245
268
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
246
269
  metadata[:"x-goog-request-params"] ||= request_params_header
247
270
 
@@ -292,6 +315,21 @@ module Google
292
315
  #
293
316
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
294
317
  #
318
+ # @example Basic example
319
+ # require "google/cloud/gaming/v1"
320
+ #
321
+ # # Create a client object. The client can be reused for multiple calls.
322
+ # client = Google::Cloud::Gaming::V1::RealmsService::Client.new
323
+ #
324
+ # # Create a request. To set request fields, pass in keyword arguments.
325
+ # request = Google::Cloud::Gaming::V1::GetRealmRequest.new
326
+ #
327
+ # # Call the get_realm method.
328
+ # result = client.get_realm request
329
+ #
330
+ # # The returned object is of type Google::Cloud::Gaming::V1::Realm.
331
+ # p result
332
+ #
295
333
  def get_realm request, options = nil
296
334
  raise ::ArgumentError, "request must be provided" if request.nil?
297
335
 
@@ -309,9 +347,11 @@ module Google
309
347
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
310
348
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
311
349
 
312
- header_params = {
313
- "name" => request.name
314
- }
350
+ header_params = {}
351
+ if request.name
352
+ header_params["name"] = request.name
353
+ end
354
+
315
355
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
316
356
  metadata[:"x-goog-request-params"] ||= request_params_header
317
357
 
@@ -365,6 +405,28 @@ module Google
365
405
  #
366
406
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
367
407
  #
408
+ # @example Basic example
409
+ # require "google/cloud/gaming/v1"
410
+ #
411
+ # # Create a client object. The client can be reused for multiple calls.
412
+ # client = Google::Cloud::Gaming::V1::RealmsService::Client.new
413
+ #
414
+ # # Create a request. To set request fields, pass in keyword arguments.
415
+ # request = Google::Cloud::Gaming::V1::CreateRealmRequest.new
416
+ #
417
+ # # Call the create_realm method.
418
+ # result = client.create_realm request
419
+ #
420
+ # # The returned object is of type Gapic::Operation. You can use this
421
+ # # object to check the status of an operation, cancel it, or wait
422
+ # # for results. Here is how to block until completion:
423
+ # result.wait_until_done! timeout: 60
424
+ # if result.response?
425
+ # p result.response
426
+ # else
427
+ # puts "Error!"
428
+ # end
429
+ #
368
430
  def create_realm request, options = nil
369
431
  raise ::ArgumentError, "request must be provided" if request.nil?
370
432
 
@@ -382,9 +444,11 @@ module Google
382
444
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
383
445
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
384
446
 
385
- header_params = {
386
- "parent" => request.parent
387
- }
447
+ header_params = {}
448
+ if request.parent
449
+ header_params["parent"] = request.parent
450
+ end
451
+
388
452
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
389
453
  metadata[:"x-goog-request-params"] ||= request_params_header
390
454
 
@@ -435,6 +499,28 @@ module Google
435
499
  #
436
500
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
437
501
  #
502
+ # @example Basic example
503
+ # require "google/cloud/gaming/v1"
504
+ #
505
+ # # Create a client object. The client can be reused for multiple calls.
506
+ # client = Google::Cloud::Gaming::V1::RealmsService::Client.new
507
+ #
508
+ # # Create a request. To set request fields, pass in keyword arguments.
509
+ # request = Google::Cloud::Gaming::V1::DeleteRealmRequest.new
510
+ #
511
+ # # Call the delete_realm method.
512
+ # result = client.delete_realm request
513
+ #
514
+ # # The returned object is of type Gapic::Operation. You can use this
515
+ # # object to check the status of an operation, cancel it, or wait
516
+ # # for results. Here is how to block until completion:
517
+ # result.wait_until_done! timeout: 60
518
+ # if result.response?
519
+ # p result.response
520
+ # else
521
+ # puts "Error!"
522
+ # end
523
+ #
438
524
  def delete_realm request, options = nil
439
525
  raise ::ArgumentError, "request must be provided" if request.nil?
440
526
 
@@ -452,9 +538,11 @@ module Google
452
538
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
453
539
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
454
540
 
455
- header_params = {
456
- "name" => request.name
457
- }
541
+ header_params = {}
542
+ if request.name
543
+ header_params["name"] = request.name
544
+ end
545
+
458
546
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
459
547
  metadata[:"x-goog-request-params"] ||= request_params_header
460
548
 
@@ -509,6 +597,28 @@ module Google
509
597
  #
510
598
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
511
599
  #
600
+ # @example Basic example
601
+ # require "google/cloud/gaming/v1"
602
+ #
603
+ # # Create a client object. The client can be reused for multiple calls.
604
+ # client = Google::Cloud::Gaming::V1::RealmsService::Client.new
605
+ #
606
+ # # Create a request. To set request fields, pass in keyword arguments.
607
+ # request = Google::Cloud::Gaming::V1::UpdateRealmRequest.new
608
+ #
609
+ # # Call the update_realm method.
610
+ # result = client.update_realm request
611
+ #
612
+ # # The returned object is of type Gapic::Operation. You can use this
613
+ # # object to check the status of an operation, cancel it, or wait
614
+ # # for results. Here is how to block until completion:
615
+ # result.wait_until_done! timeout: 60
616
+ # if result.response?
617
+ # p result.response
618
+ # else
619
+ # puts "Error!"
620
+ # end
621
+ #
512
622
  def update_realm request, options = nil
513
623
  raise ::ArgumentError, "request must be provided" if request.nil?
514
624
 
@@ -526,9 +636,11 @@ module Google
526
636
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
527
637
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
528
638
 
529
- header_params = {
530
- "realm.name" => request.realm.name
531
- }
639
+ header_params = {}
640
+ if request.realm&.name
641
+ header_params["realm.name"] = request.realm.name
642
+ end
643
+
532
644
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
533
645
  metadata[:"x-goog-request-params"] ||= request_params_header
534
646
 
@@ -585,6 +697,21 @@ module Google
585
697
  #
586
698
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
587
699
  #
700
+ # @example Basic example
701
+ # require "google/cloud/gaming/v1"
702
+ #
703
+ # # Create a client object. The client can be reused for multiple calls.
704
+ # client = Google::Cloud::Gaming::V1::RealmsService::Client.new
705
+ #
706
+ # # Create a request. To set request fields, pass in keyword arguments.
707
+ # request = Google::Cloud::Gaming::V1::PreviewRealmUpdateRequest.new
708
+ #
709
+ # # Call the preview_realm_update method.
710
+ # result = client.preview_realm_update request
711
+ #
712
+ # # The returned object is of type Google::Cloud::Gaming::V1::PreviewRealmUpdateResponse.
713
+ # p result
714
+ #
588
715
  def preview_realm_update request, options = nil
589
716
  raise ::ArgumentError, "request must be provided" if request.nil?
590
717
 
@@ -602,9 +729,11 @@ module Google
602
729
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
603
730
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
604
731
 
605
- header_params = {
606
- "realm.name" => request.realm.name
607
- }
732
+ header_params = {}
733
+ if request.realm&.name
734
+ header_params["realm.name"] = request.realm.name
735
+ end
736
+
608
737
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
609
738
  metadata[:"x-goog-request-params"] ||= request_params_header
610
739
 
@@ -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::Gaming::V1::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::Gaming::V1::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::Gaming::V1::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::Gaming::V1::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
 
@@ -1,12 +1,12 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/gaming/v1/realms_service.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/cloud/gaming/v1/realms_pb'
9
7
  require 'google/longrunning/operations_pb'
8
+ require 'google/protobuf'
9
+
10
10
  Google::Protobuf::DescriptorPool.generated_pool.build do
11
11
  add_file("google/cloud/gaming/v1/realms_service.proto", :syntax => :proto3) do
12
12
  end
@@ -28,7 +28,7 @@ module Google
28
28
  # interchangeable.
29
29
  class Service
30
30
 
31
- include GRPC::GenericService
31
+ include ::GRPC::GenericService
32
32
 
33
33
  self.marshal_class_method = :encode
34
34
  self.unmarshal_class_method = :decode
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Gaming
23
23
  module V1
24
- VERSION = "0.4.0"
24
+ VERSION = "0.4.1"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-gaming-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.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