google-cloud-gaming-v1 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -214,6 +214,27 @@ module Google
214
214
  #
215
215
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
216
216
  #
217
+ # @example Basic example
218
+ # require "google/cloud/gaming/v1"
219
+ #
220
+ # # Create a client object. The client can be reused for multiple calls.
221
+ # client = Google::Cloud::Gaming::V1::GameServerConfigsService::Client.new
222
+ #
223
+ # # Create a request. To set request fields, pass in keyword arguments.
224
+ # request = Google::Cloud::Gaming::V1::ListGameServerConfigsRequest.new
225
+ #
226
+ # # Call the list_game_server_configs method.
227
+ # result = client.list_game_server_configs request
228
+ #
229
+ # # The returned object is of type Gapic::PagedEnumerable. You can
230
+ # # iterate over all elements by calling #each, and the enumerable
231
+ # # will lazily make API calls to fetch subsequent pages. Other
232
+ # # methods are also available for managing paging directly.
233
+ # result.each do |response|
234
+ # # Each element is of type ::Google::Cloud::Gaming::V1::GameServerConfig.
235
+ # p response
236
+ # end
237
+ #
217
238
  def list_game_server_configs request, options = nil
218
239
  raise ::ArgumentError, "request must be provided" if request.nil?
219
240
 
@@ -231,9 +252,11 @@ module Google
231
252
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
232
253
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
233
254
 
234
- header_params = {
235
- "parent" => request.parent
236
- }
255
+ header_params = {}
256
+ if request.parent
257
+ header_params["parent"] = request.parent
258
+ end
259
+
237
260
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
238
261
  metadata[:"x-goog-request-params"] ||= request_params_header
239
262
 
@@ -284,6 +307,21 @@ module Google
284
307
  #
285
308
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
286
309
  #
310
+ # @example Basic example
311
+ # require "google/cloud/gaming/v1"
312
+ #
313
+ # # Create a client object. The client can be reused for multiple calls.
314
+ # client = Google::Cloud::Gaming::V1::GameServerConfigsService::Client.new
315
+ #
316
+ # # Create a request. To set request fields, pass in keyword arguments.
317
+ # request = Google::Cloud::Gaming::V1::GetGameServerConfigRequest.new
318
+ #
319
+ # # Call the get_game_server_config method.
320
+ # result = client.get_game_server_config request
321
+ #
322
+ # # The returned object is of type Google::Cloud::Gaming::V1::GameServerConfig.
323
+ # p result
324
+ #
287
325
  def get_game_server_config request, options = nil
288
326
  raise ::ArgumentError, "request must be provided" if request.nil?
289
327
 
@@ -301,9 +339,11 @@ module Google
301
339
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
302
340
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
303
341
 
304
- header_params = {
305
- "name" => request.name
306
- }
342
+ header_params = {}
343
+ if request.name
344
+ header_params["name"] = request.name
345
+ end
346
+
307
347
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
308
348
  metadata[:"x-goog-request-params"] ||= request_params_header
309
349
 
@@ -359,6 +399,28 @@ module Google
359
399
  #
360
400
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
361
401
  #
402
+ # @example Basic example
403
+ # require "google/cloud/gaming/v1"
404
+ #
405
+ # # Create a client object. The client can be reused for multiple calls.
406
+ # client = Google::Cloud::Gaming::V1::GameServerConfigsService::Client.new
407
+ #
408
+ # # Create a request. To set request fields, pass in keyword arguments.
409
+ # request = Google::Cloud::Gaming::V1::CreateGameServerConfigRequest.new
410
+ #
411
+ # # Call the create_game_server_config method.
412
+ # result = client.create_game_server_config request
413
+ #
414
+ # # The returned object is of type Gapic::Operation. You can use this
415
+ # # object to check the status of an operation, cancel it, or wait
416
+ # # for results. Here is how to block until completion:
417
+ # result.wait_until_done! timeout: 60
418
+ # if result.response?
419
+ # p result.response
420
+ # else
421
+ # puts "Error!"
422
+ # end
423
+ #
362
424
  def create_game_server_config request, options = nil
363
425
  raise ::ArgumentError, "request must be provided" if request.nil?
364
426
 
@@ -376,9 +438,11 @@ module Google
376
438
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
377
439
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
378
440
 
379
- header_params = {
380
- "parent" => request.parent
381
- }
441
+ header_params = {}
442
+ if request.parent
443
+ header_params["parent"] = request.parent
444
+ end
445
+
382
446
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
383
447
  metadata[:"x-goog-request-params"] ||= request_params_header
384
448
 
@@ -430,6 +494,28 @@ module Google
430
494
  #
431
495
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
432
496
  #
497
+ # @example Basic example
498
+ # require "google/cloud/gaming/v1"
499
+ #
500
+ # # Create a client object. The client can be reused for multiple calls.
501
+ # client = Google::Cloud::Gaming::V1::GameServerConfigsService::Client.new
502
+ #
503
+ # # Create a request. To set request fields, pass in keyword arguments.
504
+ # request = Google::Cloud::Gaming::V1::DeleteGameServerConfigRequest.new
505
+ #
506
+ # # Call the delete_game_server_config method.
507
+ # result = client.delete_game_server_config request
508
+ #
509
+ # # The returned object is of type Gapic::Operation. You can use this
510
+ # # object to check the status of an operation, cancel it, or wait
511
+ # # for results. Here is how to block until completion:
512
+ # result.wait_until_done! timeout: 60
513
+ # if result.response?
514
+ # p result.response
515
+ # else
516
+ # puts "Error!"
517
+ # end
518
+ #
433
519
  def delete_game_server_config request, options = nil
434
520
  raise ::ArgumentError, "request must be provided" if request.nil?
435
521
 
@@ -447,9 +533,11 @@ module Google
447
533
  gapic_version: ::Google::Cloud::Gaming::V1::VERSION
448
534
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
449
535
 
450
- header_params = {
451
- "name" => request.name
452
- }
536
+ header_params = {}
537
+ if request.name
538
+ header_params["name"] = request.name
539
+ end
540
+
453
541
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
454
542
  metadata[:"x-goog-request-params"] ||= request_params_header
455
543
 
@@ -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/game_server_configs_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/game_server_configs_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/game_server_configs_service.proto", :syntax => :proto3) do
12
12
  end
@@ -27,7 +27,7 @@ module Google
27
27
  # The game server config configures the game servers in an Agones fleet.
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
@@ -1,14 +1,14 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/gaming/v1/game_server_deployments.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/field_behavior_pb'
7
5
  require 'google/api/resource_pb'
8
6
  require 'google/cloud/gaming/v1/common_pb'
9
7
  require 'google/protobuf/field_mask_pb'
10
8
  require 'google/protobuf/timestamp_pb'
11
9
  require 'google/api/annotations_pb'
10
+ require 'google/protobuf'
11
+
12
12
  Google::Protobuf::DescriptorPool.generated_pool.build do
13
13
  add_file("google/cloud/gaming/v1/game_server_deployments.proto", :syntax => :proto3) do
14
14
  add_message "google.cloud.gaming.v1.ListGameServerDeploymentsRequest" do