google-cloud-dataproc-v1beta2 0.4.0 → 0.6.2

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.
@@ -58,65 +58,44 @@ module Google
58
58
  parent_config = while namespace.any?
59
59
  parent_name = namespace.join "::"
60
60
  parent_const = const_get parent_name
61
- break parent_const.configure if parent_const&.respond_to? :configure
61
+ break parent_const.configure if parent_const.respond_to? :configure
62
62
  namespace.pop
63
63
  end
64
64
  default_config = Client::Configuration.new parent_config
65
65
 
66
66
  default_config.rpcs.submit_job.timeout = 900.0
67
67
  default_config.rpcs.submit_job.retry_policy = {
68
- initial_delay: 0.1,
69
- max_delay: 60.0,
70
- multiplier: 1.3,
71
- retry_codes: [14]
68
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
72
69
  }
73
70
 
74
71
  default_config.rpcs.submit_job_as_operation.timeout = 900.0
75
72
  default_config.rpcs.submit_job_as_operation.retry_policy = {
76
- initial_delay: 0.1,
77
- max_delay: 60.0,
78
- multiplier: 1.3,
79
- retry_codes: [14]
73
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
80
74
  }
81
75
 
82
76
  default_config.rpcs.get_job.timeout = 900.0
83
77
  default_config.rpcs.get_job.retry_policy = {
84
- initial_delay: 0.1,
85
- max_delay: 60.0,
86
- multiplier: 1.3,
87
- retry_codes: [4, 13, 14]
78
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 13, 14]
88
79
  }
89
80
 
90
81
  default_config.rpcs.list_jobs.timeout = 900.0
91
82
  default_config.rpcs.list_jobs.retry_policy = {
92
- initial_delay: 0.1,
93
- max_delay: 60.0,
94
- multiplier: 1.3,
95
- retry_codes: [4, 13, 14]
83
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 13, 14]
96
84
  }
97
85
 
98
86
  default_config.rpcs.update_job.timeout = 900.0
99
87
  default_config.rpcs.update_job.retry_policy = {
100
- initial_delay: 0.1,
101
- max_delay: 60.0,
102
- multiplier: 1.3,
103
- retry_codes: [14]
88
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
104
89
  }
105
90
 
106
91
  default_config.rpcs.cancel_job.timeout = 900.0
107
92
  default_config.rpcs.cancel_job.retry_policy = {
108
- initial_delay: 0.1,
109
- max_delay: 60.0,
110
- multiplier: 1.3,
111
- retry_codes: [4, 13, 14]
93
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 13, 14]
112
94
  }
113
95
 
114
96
  default_config.rpcs.delete_job.timeout = 900.0
115
97
  default_config.rpcs.delete_job.retry_policy = {
116
- initial_delay: 0.1,
117
- max_delay: 60.0,
118
- multiplier: 1.3,
119
- retry_codes: [14]
98
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
120
99
  }
121
100
 
122
101
  default_config
@@ -180,8 +159,14 @@ module Google
180
159
 
181
160
  # Create credentials
182
161
  credentials = @config.credentials
183
- credentials ||= Credentials.default scope: @config.scope
184
- if credentials.is_a?(String) || credentials.is_a?(Hash)
162
+ # Use self-signed JWT if the scope and endpoint are unchanged from default,
163
+ # but only if the default endpoint does not have a region prefix.
164
+ enable_self_signed_jwt = @config.scope == Client.configure.scope &&
165
+ @config.endpoint == Client.configure.endpoint &&
166
+ !@config.endpoint.split(".").first.include?("-")
167
+ credentials ||= Credentials.default scope: @config.scope,
168
+ enable_self_signed_jwt: enable_self_signed_jwt
169
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
185
170
  credentials = Credentials.new credentials, scope: @config.scope
186
171
  end
187
172
  @quota_project_id = @config.quota_project
@@ -275,7 +260,7 @@ module Google
275
260
 
276
261
  header_params = {
277
262
  "project_id" => request.project_id,
278
- "region" => request.region
263
+ "region" => request.region
279
264
  }
280
265
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
281
266
  metadata[:"x-goog-request-params"] ||= request_params_header
@@ -359,7 +344,7 @@ module Google
359
344
 
360
345
  header_params = {
361
346
  "project_id" => request.project_id,
362
- "region" => request.region
347
+ "region" => request.region
363
348
  }
364
349
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
365
350
  metadata[:"x-goog-request-params"] ||= request_params_header
@@ -432,8 +417,8 @@ module Google
432
417
 
433
418
  header_params = {
434
419
  "project_id" => request.project_id,
435
- "region" => request.region,
436
- "job_id" => request.job_id
420
+ "region" => request.region,
421
+ "job_id" => request.job_id
437
422
  }
438
423
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
439
424
  metadata[:"x-goog-request-params"] ||= request_params_header
@@ -531,7 +516,7 @@ module Google
531
516
 
532
517
  header_params = {
533
518
  "project_id" => request.project_id,
534
- "region" => request.region
519
+ "region" => request.region
535
520
  }
536
521
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
537
522
  metadata[:"x-goog-request-params"] ||= request_params_header
@@ -613,8 +598,8 @@ module Google
613
598
 
614
599
  header_params = {
615
600
  "project_id" => request.project_id,
616
- "region" => request.region,
617
- "job_id" => request.job_id
601
+ "region" => request.region,
602
+ "job_id" => request.job_id
618
603
  }
619
604
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
620
605
  metadata[:"x-goog-request-params"] ||= request_params_header
@@ -690,8 +675,8 @@ module Google
690
675
 
691
676
  header_params = {
692
677
  "project_id" => request.project_id,
693
- "region" => request.region,
694
- "job_id" => request.job_id
678
+ "region" => request.region,
679
+ "job_id" => request.job_id
695
680
  }
696
681
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
697
682
  metadata[:"x-goog-request-params"] ||= request_params_header
@@ -764,8 +749,8 @@ module Google
764
749
 
765
750
  header_params = {
766
751
  "project_id" => request.project_id,
767
- "region" => request.region,
768
- "job_id" => request.job_id
752
+ "region" => request.region,
753
+ "job_id" => request.job_id
769
754
  }
770
755
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
771
756
  metadata[:"x-goog-request-params"] ||= request_params_header
@@ -876,7 +861,7 @@ module Google
876
861
  config_attr :scope, nil, ::String, ::Array, nil
877
862
  config_attr :lib_name, nil, ::String, nil
878
863
  config_attr :lib_version, nil, ::String, nil
879
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
864
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
880
865
  config_attr :interceptors, nil, ::Array, nil
881
866
  config_attr :timeout, nil, ::Numeric, nil
882
867
  config_attr :metadata, nil, ::Hash, nil
@@ -897,7 +882,7 @@ module Google
897
882
  def rpcs
898
883
  @rpcs ||= begin
899
884
  parent_rpcs = nil
900
- parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
885
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
901
886
  Rpcs.new parent_rpcs
902
887
  end
903
888
  end
@@ -909,7 +894,7 @@ module Google
909
894
  # Each configuration object is of type `Gapic::Config::Method` and includes
910
895
  # the following configuration fields:
911
896
  #
912
- # * `timeout` (*type:* `Numeric`) - The call timeout in milliseconds
897
+ # * `timeout` (*type:* `Numeric`) - The call timeout in seconds
913
898
  # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
914
899
  # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
915
900
  # include the following keys:
@@ -958,19 +943,19 @@ module Google
958
943
 
959
944
  # @private
960
945
  def initialize parent_rpcs = nil
961
- submit_job_config = parent_rpcs&.submit_job if parent_rpcs&.respond_to? :submit_job
946
+ submit_job_config = parent_rpcs.submit_job if parent_rpcs.respond_to? :submit_job
962
947
  @submit_job = ::Gapic::Config::Method.new submit_job_config
963
- submit_job_as_operation_config = parent_rpcs&.submit_job_as_operation if parent_rpcs&.respond_to? :submit_job_as_operation
948
+ submit_job_as_operation_config = parent_rpcs.submit_job_as_operation if parent_rpcs.respond_to? :submit_job_as_operation
964
949
  @submit_job_as_operation = ::Gapic::Config::Method.new submit_job_as_operation_config
965
- get_job_config = parent_rpcs&.get_job if parent_rpcs&.respond_to? :get_job
950
+ get_job_config = parent_rpcs.get_job if parent_rpcs.respond_to? :get_job
966
951
  @get_job = ::Gapic::Config::Method.new get_job_config
967
- list_jobs_config = parent_rpcs&.list_jobs if parent_rpcs&.respond_to? :list_jobs
952
+ list_jobs_config = parent_rpcs.list_jobs if parent_rpcs.respond_to? :list_jobs
968
953
  @list_jobs = ::Gapic::Config::Method.new list_jobs_config
969
- update_job_config = parent_rpcs&.update_job if parent_rpcs&.respond_to? :update_job
954
+ update_job_config = parent_rpcs.update_job if parent_rpcs.respond_to? :update_job
970
955
  @update_job = ::Gapic::Config::Method.new update_job_config
971
- cancel_job_config = parent_rpcs&.cancel_job if parent_rpcs&.respond_to? :cancel_job
956
+ cancel_job_config = parent_rpcs.cancel_job if parent_rpcs.respond_to? :cancel_job
972
957
  @cancel_job = ::Gapic::Config::Method.new cancel_job_config
973
- delete_job_config = parent_rpcs&.delete_job if parent_rpcs&.respond_to? :delete_job
958
+ delete_job_config = parent_rpcs.delete_job if parent_rpcs.respond_to? :delete_job
974
959
  @delete_job = ::Gapic::Config::Method.new delete_job_config
975
960
 
976
961
  yield self if block_given?
@@ -82,7 +82,7 @@ module Google
82
82
  # Create credentials
83
83
  credentials = @config.credentials
84
84
  credentials ||= Credentials.default scope: @config.scope
85
- if credentials.is_a?(String) || credentials.is_a?(Hash)
85
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
86
86
  credentials = Credentials.new credentials, scope: @config.scope
87
87
  end
88
88
  @quota_project_id = @config.quota_project
@@ -103,8 +103,13 @@ module Google
103
103
  # Lists operations that match the specified filter in the request. If the
104
104
  # server doesn't support this method, it returns `UNIMPLEMENTED`.
105
105
  #
106
- # NOTE: the `name` binding below allows API services to override the binding
107
- # to use different resource name schemes, such as `users/*/operations`.
106
+ # NOTE: the `name` binding allows API services to override the binding
107
+ # to use different resource name schemes, such as `users/*/operations`. To
108
+ # override the binding, API services can add a binding such as
109
+ # `"/v1/{name=users/*}/operations"` to their service configuration.
110
+ # For backwards compatibility, the default name includes the operations
111
+ # collection id, however overriding users must ensure the name binding
112
+ # is the parent resource, without the operations collection id.
108
113
  #
109
114
  # @overload list_operations(request, options = nil)
110
115
  # Pass arguments to `list_operations` via a request object, either of type
@@ -122,7 +127,7 @@ module Google
122
127
  # the default parameter values, pass an empty Hash as a request object (see above).
123
128
  #
124
129
  # @param name [::String]
125
- # The name of the operation collection.
130
+ # The name of the operation's parent resource.
126
131
  # @param filter [::String]
127
132
  # The standard list filter.
128
133
  # @param page_size [::Integer]
@@ -390,6 +395,79 @@ module Google
390
395
  raise ::Google::Cloud::Error.from_error(e)
391
396
  end
392
397
 
398
+ ##
399
+ # Waits until the specified long-running operation is done or reaches at most
400
+ # a specified timeout, returning the latest state. If the operation is
401
+ # already done, the latest state is immediately returned. If the timeout
402
+ # specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
403
+ # timeout is used. If the server does not support this method, it returns
404
+ # `google.rpc.Code.UNIMPLEMENTED`.
405
+ # Note that this method is on a best-effort basis. It may return the latest
406
+ # state before the specified timeout (including immediately), meaning even an
407
+ # immediate response is no guarantee that the operation is done.
408
+ #
409
+ # @overload wait_operation(request, options = nil)
410
+ # Pass arguments to `wait_operation` via a request object, either of type
411
+ # {::Google::Longrunning::WaitOperationRequest} or an equivalent Hash.
412
+ #
413
+ # @param request [::Google::Longrunning::WaitOperationRequest, ::Hash]
414
+ # A request object representing the call parameters. Required. To specify no
415
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
416
+ # @param options [::Gapic::CallOptions, ::Hash]
417
+ # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
418
+ #
419
+ # @overload wait_operation(name: nil, timeout: nil)
420
+ # Pass arguments to `wait_operation` via keyword arguments. Note that at
421
+ # least one keyword argument is required. To specify no parameters, or to keep all
422
+ # the default parameter values, pass an empty Hash as a request object (see above).
423
+ #
424
+ # @param name [::String]
425
+ # The name of the operation resource to wait on.
426
+ # @param timeout [::Google::Protobuf::Duration, ::Hash]
427
+ # The maximum duration to wait before timing out. If left blank, the wait
428
+ # will be at most the time permitted by the underlying HTTP/RPC protocol.
429
+ # If RPC context deadline is also specified, the shorter one will be used.
430
+ #
431
+ # @yield [response, operation] Access the result along with the RPC operation
432
+ # @yieldparam response [::Gapic::Operation]
433
+ # @yieldparam operation [::GRPC::ActiveCall::Operation]
434
+ #
435
+ # @return [::Gapic::Operation]
436
+ #
437
+ # @raise [::Google::Cloud::Error] if the RPC is aborted.
438
+ #
439
+ def wait_operation request, options = nil
440
+ raise ::ArgumentError, "request must be provided" if request.nil?
441
+
442
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Longrunning::WaitOperationRequest
443
+
444
+ # Converts hash and nil to an options object
445
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
446
+
447
+ # Customize the options with defaults
448
+ metadata = @config.rpcs.wait_operation.metadata.to_h
449
+
450
+ # Set x-goog-api-client and x-goog-user-project headers
451
+ metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
452
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
453
+ gapic_version: ::Google::Cloud::Dataproc::V1beta2::VERSION
454
+ metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
455
+
456
+ options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
457
+ metadata: metadata,
458
+ retry_policy: @config.rpcs.wait_operation.retry_policy
459
+ options.apply_defaults metadata: @config.metadata,
460
+ retry_policy: @config.retry_policy
461
+
462
+ @operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
463
+ response = ::Gapic::Operation.new response, @operations_client, options: options
464
+ yield response, operation if block_given?
465
+ return response
466
+ end
467
+ rescue ::GRPC::BadStatus => e
468
+ raise ::Google::Cloud::Error.from_error(e)
469
+ end
470
+
393
471
  ##
394
472
  # Configuration class for the Operations API.
395
473
  #
@@ -482,7 +560,7 @@ module Google
482
560
  config_attr :scope, nil, ::String, ::Array, nil
483
561
  config_attr :lib_name, nil, ::String, nil
484
562
  config_attr :lib_version, nil, ::String, nil
485
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
563
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
486
564
  config_attr :interceptors, nil, ::Array, nil
487
565
  config_attr :timeout, nil, ::Numeric, nil
488
566
  config_attr :metadata, nil, ::Hash, nil
@@ -503,7 +581,7 @@ module Google
503
581
  def rpcs
504
582
  @rpcs ||= begin
505
583
  parent_rpcs = nil
506
- parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
584
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
507
585
  Rpcs.new parent_rpcs
508
586
  end
509
587
  end
@@ -515,7 +593,7 @@ module Google
515
593
  # Each configuration object is of type `Gapic::Config::Method` and includes
516
594
  # the following configuration fields:
517
595
  #
518
- # * `timeout` (*type:* `Numeric`) - The call timeout in milliseconds
596
+ # * `timeout` (*type:* `Numeric`) - The call timeout in seconds
519
597
  # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
520
598
  # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
521
599
  # include the following keys:
@@ -546,17 +624,24 @@ module Google
546
624
  # @return [::Gapic::Config::Method]
547
625
  #
548
626
  attr_reader :cancel_operation
627
+ ##
628
+ # RPC-specific configuration for `wait_operation`
629
+ # @return [::Gapic::Config::Method]
630
+ #
631
+ attr_reader :wait_operation
549
632
 
550
633
  # @private
551
634
  def initialize parent_rpcs = nil
552
- list_operations_config = parent_rpcs&.list_operations if parent_rpcs&.respond_to? :list_operations
635
+ list_operations_config = parent_rpcs.list_operations if parent_rpcs.respond_to? :list_operations
553
636
  @list_operations = ::Gapic::Config::Method.new list_operations_config
554
- get_operation_config = parent_rpcs&.get_operation if parent_rpcs&.respond_to? :get_operation
637
+ get_operation_config = parent_rpcs.get_operation if parent_rpcs.respond_to? :get_operation
555
638
  @get_operation = ::Gapic::Config::Method.new get_operation_config
556
- delete_operation_config = parent_rpcs&.delete_operation if parent_rpcs&.respond_to? :delete_operation
639
+ delete_operation_config = parent_rpcs.delete_operation if parent_rpcs.respond_to? :delete_operation
557
640
  @delete_operation = ::Gapic::Config::Method.new delete_operation_config
558
- cancel_operation_config = parent_rpcs&.cancel_operation if parent_rpcs&.respond_to? :cancel_operation
641
+ cancel_operation_config = parent_rpcs.cancel_operation if parent_rpcs.respond_to? :cancel_operation
559
642
  @cancel_operation = ::Gapic::Config::Method.new cancel_operation_config
643
+ wait_operation_config = parent_rpcs.wait_operation if parent_rpcs.respond_to? :wait_operation
644
+ @wait_operation = ::Gapic::Config::Method.new wait_operation_config
560
645
 
561
646
  yield self if block_given?
562
647
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Dataproc
23
23
  module V1beta2
24
- VERSION = "0.4.0"
24
+ VERSION = "0.6.2"
25
25
  end
26
26
  end
27
27
  end
@@ -61,65 +61,44 @@ module Google
61
61
  parent_config = while namespace.any?
62
62
  parent_name = namespace.join "::"
63
63
  parent_const = const_get parent_name
64
- break parent_const.configure if parent_const&.respond_to? :configure
64
+ break parent_const.configure if parent_const.respond_to? :configure
65
65
  namespace.pop
66
66
  end
67
67
  default_config = Client::Configuration.new parent_config
68
68
 
69
69
  default_config.rpcs.create_workflow_template.timeout = 600.0
70
70
  default_config.rpcs.create_workflow_template.retry_policy = {
71
- initial_delay: 0.1,
72
- max_delay: 60.0,
73
- multiplier: 1.3,
74
- retry_codes: [14]
71
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
75
72
  }
76
73
 
77
74
  default_config.rpcs.get_workflow_template.timeout = 600.0
78
75
  default_config.rpcs.get_workflow_template.retry_policy = {
79
- initial_delay: 0.1,
80
- max_delay: 60.0,
81
- multiplier: 1.3,
82
- retry_codes: [4, 13, 14]
76
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 13, 14]
83
77
  }
84
78
 
85
79
  default_config.rpcs.instantiate_workflow_template.timeout = 600.0
86
80
  default_config.rpcs.instantiate_workflow_template.retry_policy = {
87
- initial_delay: 0.1,
88
- max_delay: 60.0,
89
- multiplier: 1.3,
90
- retry_codes: [14]
81
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
91
82
  }
92
83
 
93
84
  default_config.rpcs.instantiate_inline_workflow_template.timeout = 600.0
94
85
  default_config.rpcs.instantiate_inline_workflow_template.retry_policy = {
95
- initial_delay: 0.1,
96
- max_delay: 60.0,
97
- multiplier: 1.3,
98
- retry_codes: [14]
86
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
99
87
  }
100
88
 
101
89
  default_config.rpcs.update_workflow_template.timeout = 600.0
102
90
  default_config.rpcs.update_workflow_template.retry_policy = {
103
- initial_delay: 0.1,
104
- max_delay: 60.0,
105
- multiplier: 1.3,
106
- retry_codes: [14]
91
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
107
92
  }
108
93
 
109
94
  default_config.rpcs.list_workflow_templates.timeout = 600.0
110
95
  default_config.rpcs.list_workflow_templates.retry_policy = {
111
- initial_delay: 0.1,
112
- max_delay: 60.0,
113
- multiplier: 1.3,
114
- retry_codes: [4, 13, 14]
96
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 13, 14]
115
97
  }
116
98
 
117
99
  default_config.rpcs.delete_workflow_template.timeout = 600.0
118
100
  default_config.rpcs.delete_workflow_template.retry_policy = {
119
- initial_delay: 0.1,
120
- max_delay: 60.0,
121
- multiplier: 1.3,
122
- retry_codes: [14]
101
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
123
102
  }
124
103
 
125
104
  default_config
@@ -183,8 +162,14 @@ module Google
183
162
 
184
163
  # Create credentials
185
164
  credentials = @config.credentials
186
- credentials ||= Credentials.default scope: @config.scope
187
- if credentials.is_a?(String) || credentials.is_a?(Hash)
165
+ # Use self-signed JWT if the scope and endpoint are unchanged from default,
166
+ # but only if the default endpoint does not have a region prefix.
167
+ enable_self_signed_jwt = @config.scope == Client.configure.scope &&
168
+ @config.endpoint == Client.configure.endpoint &&
169
+ !@config.endpoint.split(".").first.include?("-")
170
+ credentials ||= Credentials.default scope: @config.scope,
171
+ enable_self_signed_jwt: enable_self_signed_jwt
172
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
188
173
  credentials = Credentials.new credentials, scope: @config.scope
189
174
  end
190
175
  @quota_project_id = @config.quota_project
@@ -925,7 +910,7 @@ module Google
925
910
  config_attr :scope, nil, ::String, ::Array, nil
926
911
  config_attr :lib_name, nil, ::String, nil
927
912
  config_attr :lib_version, nil, ::String, nil
928
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
913
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
929
914
  config_attr :interceptors, nil, ::Array, nil
930
915
  config_attr :timeout, nil, ::Numeric, nil
931
916
  config_attr :metadata, nil, ::Hash, nil
@@ -946,7 +931,7 @@ module Google
946
931
  def rpcs
947
932
  @rpcs ||= begin
948
933
  parent_rpcs = nil
949
- parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
934
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
950
935
  Rpcs.new parent_rpcs
951
936
  end
952
937
  end
@@ -958,7 +943,7 @@ module Google
958
943
  # Each configuration object is of type `Gapic::Config::Method` and includes
959
944
  # the following configuration fields:
960
945
  #
961
- # * `timeout` (*type:* `Numeric`) - The call timeout in milliseconds
946
+ # * `timeout` (*type:* `Numeric`) - The call timeout in seconds
962
947
  # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
963
948
  # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
964
949
  # include the following keys:
@@ -1007,19 +992,19 @@ module Google
1007
992
 
1008
993
  # @private
1009
994
  def initialize parent_rpcs = nil
1010
- create_workflow_template_config = parent_rpcs&.create_workflow_template if parent_rpcs&.respond_to? :create_workflow_template
995
+ create_workflow_template_config = parent_rpcs.create_workflow_template if parent_rpcs.respond_to? :create_workflow_template
1011
996
  @create_workflow_template = ::Gapic::Config::Method.new create_workflow_template_config
1012
- get_workflow_template_config = parent_rpcs&.get_workflow_template if parent_rpcs&.respond_to? :get_workflow_template
997
+ get_workflow_template_config = parent_rpcs.get_workflow_template if parent_rpcs.respond_to? :get_workflow_template
1013
998
  @get_workflow_template = ::Gapic::Config::Method.new get_workflow_template_config
1014
- instantiate_workflow_template_config = parent_rpcs&.instantiate_workflow_template if parent_rpcs&.respond_to? :instantiate_workflow_template
999
+ instantiate_workflow_template_config = parent_rpcs.instantiate_workflow_template if parent_rpcs.respond_to? :instantiate_workflow_template
1015
1000
  @instantiate_workflow_template = ::Gapic::Config::Method.new instantiate_workflow_template_config
1016
- instantiate_inline_workflow_template_config = parent_rpcs&.instantiate_inline_workflow_template if parent_rpcs&.respond_to? :instantiate_inline_workflow_template
1001
+ instantiate_inline_workflow_template_config = parent_rpcs.instantiate_inline_workflow_template if parent_rpcs.respond_to? :instantiate_inline_workflow_template
1017
1002
  @instantiate_inline_workflow_template = ::Gapic::Config::Method.new instantiate_inline_workflow_template_config
1018
- update_workflow_template_config = parent_rpcs&.update_workflow_template if parent_rpcs&.respond_to? :update_workflow_template
1003
+ update_workflow_template_config = parent_rpcs.update_workflow_template if parent_rpcs.respond_to? :update_workflow_template
1019
1004
  @update_workflow_template = ::Gapic::Config::Method.new update_workflow_template_config
1020
- list_workflow_templates_config = parent_rpcs&.list_workflow_templates if parent_rpcs&.respond_to? :list_workflow_templates
1005
+ list_workflow_templates_config = parent_rpcs.list_workflow_templates if parent_rpcs.respond_to? :list_workflow_templates
1021
1006
  @list_workflow_templates = ::Gapic::Config::Method.new list_workflow_templates_config
1022
- delete_workflow_template_config = parent_rpcs&.delete_workflow_template if parent_rpcs&.respond_to? :delete_workflow_template
1007
+ delete_workflow_template_config = parent_rpcs.delete_workflow_template if parent_rpcs.respond_to? :delete_workflow_template
1023
1008
  @delete_workflow_template = ::Gapic::Config::Method.new delete_workflow_template_config
1024
1009
 
1025
1010
  yield self if block_given?