google-cloud-dataproc-v1 0.22.0 → 0.23.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +72 -101
  3. data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/client.rb +38 -14
  4. data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/rest/client.rb +36 -9
  5. data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/rest/service_stub.rb +23 -2
  6. data/lib/google/cloud/dataproc/v1/batch_controller/client.rb +39 -14
  7. data/lib/google/cloud/dataproc/v1/batch_controller/operations.rb +28 -6
  8. data/lib/google/cloud/dataproc/v1/batch_controller/rest/client.rb +37 -9
  9. data/lib/google/cloud/dataproc/v1/batch_controller/rest/operations.rb +33 -8
  10. data/lib/google/cloud/dataproc/v1/batch_controller/rest/service_stub.rb +23 -2
  11. data/lib/google/cloud/dataproc/v1/cluster_controller/client.rb +39 -14
  12. data/lib/google/cloud/dataproc/v1/cluster_controller/operations.rb +28 -6
  13. data/lib/google/cloud/dataproc/v1/cluster_controller/rest/client.rb +37 -9
  14. data/lib/google/cloud/dataproc/v1/cluster_controller/rest/operations.rb +33 -8
  15. data/lib/google/cloud/dataproc/v1/cluster_controller/rest/service_stub.rb +23 -2
  16. data/lib/google/cloud/dataproc/v1/job_controller/client.rb +39 -14
  17. data/lib/google/cloud/dataproc/v1/job_controller/operations.rb +28 -6
  18. data/lib/google/cloud/dataproc/v1/job_controller/rest/client.rb +37 -9
  19. data/lib/google/cloud/dataproc/v1/job_controller/rest/operations.rb +33 -8
  20. data/lib/google/cloud/dataproc/v1/job_controller/rest/service_stub.rb +23 -2
  21. data/lib/google/cloud/dataproc/v1/node_group_controller/client.rb +39 -14
  22. data/lib/google/cloud/dataproc/v1/node_group_controller/operations.rb +28 -6
  23. data/lib/google/cloud/dataproc/v1/node_group_controller/rest/client.rb +37 -9
  24. data/lib/google/cloud/dataproc/v1/node_group_controller/rest/operations.rb +33 -8
  25. data/lib/google/cloud/dataproc/v1/node_group_controller/rest/service_stub.rb +23 -2
  26. data/lib/google/cloud/dataproc/v1/version.rb +1 -1
  27. data/lib/google/cloud/dataproc/v1/workflow_template_service/client.rb +39 -14
  28. data/lib/google/cloud/dataproc/v1/workflow_template_service/operations.rb +28 -6
  29. data/lib/google/cloud/dataproc/v1/workflow_template_service/rest/client.rb +37 -9
  30. data/lib/google/cloud/dataproc/v1/workflow_template_service/rest/operations.rb +33 -8
  31. data/lib/google/cloud/dataproc/v1/workflow_template_service/rest/service_stub.rb +23 -2
  32. data/proto_docs/google/api/client.rb +14 -0
  33. metadata +7 -7
@@ -26,6 +26,9 @@ module Google
26
26
  module Rest
27
27
  # Service that implements Longrunning Operations API.
28
28
  class Operations
29
+ # @private
30
+ DEFAULT_ENDPOINT_TEMPLATE = "dataproc.$UNIVERSE_DOMAIN$"
31
+
29
32
  # @private
30
33
  attr_reader :operations_stub
31
34
 
@@ -60,6 +63,15 @@ module Google
60
63
  @config
61
64
  end
62
65
 
66
+ ##
67
+ # The effective universe domain
68
+ #
69
+ # @return [String]
70
+ #
71
+ def universe_domain
72
+ @operations_stub.universe_domain
73
+ end
74
+
63
75
  ##
64
76
  # Create a new Operations client object.
65
77
  #
@@ -84,8 +96,10 @@ module Google
84
96
  @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
85
97
 
86
98
  @operations_stub = OperationsServiceStub.new(
87
- endpoint: @config.endpoint,
88
- credentials: credentials
99
+ endpoint: @config.endpoint,
100
+ endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
101
+ universe_domain: @config.universe_domain,
102
+ credentials: credentials
89
103
  )
90
104
 
91
105
  # Used by an LRO wrapper for some methods of this service
@@ -478,9 +492,9 @@ module Google
478
492
  # end
479
493
  #
480
494
  # @!attribute [rw] endpoint
481
- # The hostname or hostname:port of the service endpoint.
482
- # Defaults to `"dataproc.googleapis.com"`.
483
- # @return [::String]
495
+ # A custom service endpoint, as a hostname or hostname:port. The default is
496
+ # nil, indicating to use the default endpoint in the current universe domain.
497
+ # @return [::String,nil]
484
498
  # @!attribute [rw] credentials
485
499
  # Credentials to send with calls. You may provide any of the following types:
486
500
  # * (`String`) The path to a service account key file in JSON format
@@ -517,13 +531,20 @@ module Google
517
531
  # @!attribute [rw] quota_project
518
532
  # A separate project against which to charge quota.
519
533
  # @return [::String]
534
+ # @!attribute [rw] universe_domain
535
+ # The universe domain within which to make requests. This determines the
536
+ # default endpoint URL. The default value of nil uses the environment
537
+ # universe (usually the default "googleapis.com" universe).
538
+ # @return [::String,nil]
520
539
  #
521
540
  class Configuration
522
541
  extend ::Gapic::Config
523
542
 
543
+ # @private
544
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
524
545
  DEFAULT_ENDPOINT = "dataproc.googleapis.com"
525
546
 
526
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
547
+ config_attr :endpoint, nil, ::String, nil
527
548
  config_attr :credentials, nil do |value|
528
549
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
529
550
  allowed.any? { |klass| klass === value }
@@ -535,6 +556,7 @@ module Google
535
556
  config_attr :metadata, nil, ::Hash, nil
536
557
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
537
558
  config_attr :quota_project, nil, ::String, nil
559
+ config_attr :universe_domain, nil, ::String, nil
538
560
 
539
561
  # @private
540
562
  def initialize parent_config = nil
@@ -617,12 +639,15 @@ module Google
617
639
  # Service stub contains baseline method implementations
618
640
  # including transcoding, making the REST call, and deserialing the response.
619
641
  class OperationsServiceStub
620
- def initialize endpoint:, credentials:
642
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
621
643
  # These require statements are intentionally placed here to initialize
622
644
  # the REST modules only when it's required.
623
645
  require "gapic/rest"
624
646
 
625
- @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials
647
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
648
+ endpoint_template: endpoint_template,
649
+ universe_domain: universe_domain,
650
+ credentials: credentials
626
651
  end
627
652
 
628
653
  ##
@@ -30,16 +30,37 @@ module Google
30
30
  # including transcoding, making the REST call, and deserialing the response.
31
31
  #
32
32
  class ServiceStub
33
- def initialize endpoint:, credentials:
33
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
34
34
  # These require statements are intentionally placed here to initialize
35
35
  # the REST modules only when it's required.
36
36
  require "gapic/rest"
37
37
 
38
- @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials,
38
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
39
+ endpoint_template: endpoint_template,
40
+ universe_domain: universe_domain,
41
+ credentials: credentials,
39
42
  numeric_enums: true,
40
43
  raise_faraday_errors: false
41
44
  end
42
45
 
46
+ ##
47
+ # The effective universe domain
48
+ #
49
+ # @return [String]
50
+ #
51
+ def universe_domain
52
+ @client_stub.universe_domain
53
+ end
54
+
55
+ ##
56
+ # The effective endpoint
57
+ #
58
+ # @return [String]
59
+ #
60
+ def endpoint
61
+ @client_stub.endpoint
62
+ end
63
+
43
64
  ##
44
65
  # Baseline implementation for the create_cluster REST call
45
66
  #
@@ -31,6 +31,9 @@ module Google
31
31
  # The JobController provides methods to manage jobs.
32
32
  #
33
33
  class Client
34
+ # @private
35
+ DEFAULT_ENDPOINT_TEMPLATE = "dataproc.$UNIVERSE_DOMAIN$"
36
+
34
37
  # @private
35
38
  attr_reader :job_controller_stub
36
39
 
@@ -124,6 +127,15 @@ module Google
124
127
  @config
125
128
  end
126
129
 
130
+ ##
131
+ # The effective universe domain
132
+ #
133
+ # @return [String]
134
+ #
135
+ def universe_domain
136
+ @job_controller_stub.universe_domain
137
+ end
138
+
127
139
  ##
128
140
  # Create a new JobController client object.
129
141
  #
@@ -157,8 +169,9 @@ module Google
157
169
  credentials = @config.credentials
158
170
  # Use self-signed JWT if the endpoint is unchanged from default,
159
171
  # but only if the default endpoint does not have a region prefix.
160
- enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
161
- !@config.endpoint.split(".").first.include?("-")
172
+ enable_self_signed_jwt = @config.endpoint.nil? ||
173
+ (@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
174
+ !@config.endpoint.split(".").first.include?("-"))
162
175
  credentials ||= Credentials.default scope: @config.scope,
163
176
  enable_self_signed_jwt: enable_self_signed_jwt
164
177
  if credentials.is_a?(::String) || credentials.is_a?(::Hash)
@@ -171,22 +184,26 @@ module Google
171
184
  config.credentials = credentials
172
185
  config.quota_project = @quota_project_id
173
186
  config.endpoint = @config.endpoint
174
- end
175
-
176
- @iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
177
- config.credentials = credentials
178
- config.quota_project = @quota_project_id
179
- config.endpoint = @config.endpoint
187
+ config.universe_domain = @config.universe_domain
180
188
  end
181
189
 
182
190
  @job_controller_stub = ::Gapic::ServiceStub.new(
183
191
  ::Google::Cloud::Dataproc::V1::JobController::Stub,
184
- credentials: credentials,
185
- endpoint: @config.endpoint,
192
+ credentials: credentials,
193
+ endpoint: @config.endpoint,
194
+ endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
195
+ universe_domain: @config.universe_domain,
186
196
  channel_args: @config.channel_args,
187
197
  interceptors: @config.interceptors,
188
198
  channel_pool_config: @config.channel_pool
189
199
  )
200
+
201
+ @iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
202
+ config.credentials = credentials
203
+ config.quota_project = @quota_project_id
204
+ config.endpoint = @job_controller_stub.endpoint
205
+ config.universe_domain = @job_controller_stub.universe_domain
206
+ end
190
207
  end
191
208
 
192
209
  ##
@@ -977,9 +994,9 @@ module Google
977
994
  # end
978
995
  #
979
996
  # @!attribute [rw] endpoint
980
- # The hostname or hostname:port of the service endpoint.
981
- # Defaults to `"dataproc.googleapis.com"`.
982
- # @return [::String]
997
+ # A custom service endpoint, as a hostname or hostname:port. The default is
998
+ # nil, indicating to use the default endpoint in the current universe domain.
999
+ # @return [::String,nil]
983
1000
  # @!attribute [rw] credentials
984
1001
  # Credentials to send with calls. You may provide any of the following types:
985
1002
  # * (`String`) The path to a service account key file in JSON format
@@ -1025,13 +1042,20 @@ module Google
1025
1042
  # @!attribute [rw] quota_project
1026
1043
  # A separate project against which to charge quota.
1027
1044
  # @return [::String]
1045
+ # @!attribute [rw] universe_domain
1046
+ # The universe domain within which to make requests. This determines the
1047
+ # default endpoint URL. The default value of nil uses the environment
1048
+ # universe (usually the default "googleapis.com" universe).
1049
+ # @return [::String,nil]
1028
1050
  #
1029
1051
  class Configuration
1030
1052
  extend ::Gapic::Config
1031
1053
 
1054
+ # @private
1055
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
1032
1056
  DEFAULT_ENDPOINT = "dataproc.googleapis.com"
1033
1057
 
1034
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
1058
+ config_attr :endpoint, nil, ::String, nil
1035
1059
  config_attr :credentials, nil do |value|
1036
1060
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1037
1061
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -1046,6 +1070,7 @@ module Google
1046
1070
  config_attr :metadata, nil, ::Hash, nil
1047
1071
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
1048
1072
  config_attr :quota_project, nil, ::String, nil
1073
+ config_attr :universe_domain, nil, ::String, nil
1049
1074
 
1050
1075
  # @private
1051
1076
  def initialize parent_config = nil
@@ -26,6 +26,9 @@ module Google
26
26
  module JobController
27
27
  # Service that implements Longrunning Operations API.
28
28
  class Operations
29
+ # @private
30
+ DEFAULT_ENDPOINT_TEMPLATE = "dataproc.$UNIVERSE_DOMAIN$"
31
+
29
32
  # @private
30
33
  attr_reader :operations_stub
31
34
 
@@ -60,6 +63,15 @@ module Google
60
63
  @config
61
64
  end
62
65
 
66
+ ##
67
+ # The effective universe domain
68
+ #
69
+ # @return [String]
70
+ #
71
+ def universe_domain
72
+ @operations_stub.universe_domain
73
+ end
74
+
63
75
  ##
64
76
  # Create a new Operations client object.
65
77
  #
@@ -90,8 +102,10 @@ module Google
90
102
 
91
103
  @operations_stub = ::Gapic::ServiceStub.new(
92
104
  ::Google::Longrunning::Operations::Stub,
93
- credentials: credentials,
94
- endpoint: @config.endpoint,
105
+ credentials: credentials,
106
+ endpoint: @config.endpoint,
107
+ endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
108
+ universe_domain: @config.universe_domain,
95
109
  channel_args: @config.channel_args,
96
110
  interceptors: @config.interceptors,
97
111
  channel_pool_config: @config.channel_pool
@@ -613,9 +627,9 @@ module Google
613
627
  # end
614
628
  #
615
629
  # @!attribute [rw] endpoint
616
- # The hostname or hostname:port of the service endpoint.
617
- # Defaults to `"dataproc.googleapis.com"`.
618
- # @return [::String]
630
+ # A custom service endpoint, as a hostname or hostname:port. The default is
631
+ # nil, indicating to use the default endpoint in the current universe domain.
632
+ # @return [::String,nil]
619
633
  # @!attribute [rw] credentials
620
634
  # Credentials to send with calls. You may provide any of the following types:
621
635
  # * (`String`) The path to a service account key file in JSON format
@@ -661,13 +675,20 @@ module Google
661
675
  # @!attribute [rw] quota_project
662
676
  # A separate project against which to charge quota.
663
677
  # @return [::String]
678
+ # @!attribute [rw] universe_domain
679
+ # The universe domain within which to make requests. This determines the
680
+ # default endpoint URL. The default value of nil uses the environment
681
+ # universe (usually the default "googleapis.com" universe).
682
+ # @return [::String,nil]
664
683
  #
665
684
  class Configuration
666
685
  extend ::Gapic::Config
667
686
 
687
+ # @private
688
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
668
689
  DEFAULT_ENDPOINT = "dataproc.googleapis.com"
669
690
 
670
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
691
+ config_attr :endpoint, nil, ::String, nil
671
692
  config_attr :credentials, nil do |value|
672
693
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
673
694
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -682,6 +703,7 @@ module Google
682
703
  config_attr :metadata, nil, ::Hash, nil
683
704
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
684
705
  config_attr :quota_project, nil, ::String, nil
706
+ config_attr :universe_domain, nil, ::String, nil
685
707
 
686
708
  # @private
687
709
  def initialize parent_config = nil
@@ -33,6 +33,9 @@ module Google
33
33
  # The JobController provides methods to manage jobs.
34
34
  #
35
35
  class Client
36
+ # @private
37
+ DEFAULT_ENDPOINT_TEMPLATE = "dataproc.$UNIVERSE_DOMAIN$"
38
+
36
39
  # @private
37
40
  attr_reader :job_controller_stub
38
41
 
@@ -126,6 +129,15 @@ module Google
126
129
  @config
127
130
  end
128
131
 
132
+ ##
133
+ # The effective universe domain
134
+ #
135
+ # @return [String]
136
+ #
137
+ def universe_domain
138
+ @job_controller_stub.universe_domain
139
+ end
140
+
129
141
  ##
130
142
  # Create a new JobController REST client object.
131
143
  #
@@ -153,8 +165,9 @@ module Google
153
165
  credentials = @config.credentials
154
166
  # Use self-signed JWT if the endpoint is unchanged from default,
155
167
  # but only if the default endpoint does not have a region prefix.
156
- enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
157
- !@config.endpoint.split(".").first.include?("-")
168
+ enable_self_signed_jwt = @config.endpoint.nil? ||
169
+ (@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
170
+ !@config.endpoint.split(".").first.include?("-"))
158
171
  credentials ||= Credentials.default scope: @config.scope,
159
172
  enable_self_signed_jwt: enable_self_signed_jwt
160
173
  if credentials.is_a?(::String) || credentials.is_a?(::Hash)
@@ -168,16 +181,23 @@ module Google
168
181
  config.credentials = credentials
169
182
  config.quota_project = @quota_project_id
170
183
  config.endpoint = @config.endpoint
184
+ config.universe_domain = @config.universe_domain
171
185
  end
172
186
 
187
+ @job_controller_stub = ::Google::Cloud::Dataproc::V1::JobController::Rest::ServiceStub.new(
188
+ endpoint: @config.endpoint,
189
+ endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
190
+ universe_domain: @config.universe_domain,
191
+ credentials: credentials
192
+ )
193
+
173
194
  @iam_policy_client = Google::Iam::V1::IAMPolicy::Rest::Client.new do |config|
174
195
  config.credentials = credentials
175
196
  config.quota_project = @quota_project_id
176
- config.endpoint = @config.endpoint
197
+ config.endpoint = @job_controller_stub.endpoint
198
+ config.universe_domain = @job_controller_stub.universe_domain
177
199
  config.bindings_override = @config.bindings_override
178
200
  end
179
-
180
- @job_controller_stub = ::Google::Cloud::Dataproc::V1::JobController::Rest::ServiceStub.new endpoint: @config.endpoint, credentials: credentials
181
201
  end
182
202
 
183
203
  ##
@@ -886,9 +906,9 @@ module Google
886
906
  # end
887
907
  #
888
908
  # @!attribute [rw] endpoint
889
- # The hostname or hostname:port of the service endpoint.
890
- # Defaults to `"dataproc.googleapis.com"`.
891
- # @return [::String]
909
+ # A custom service endpoint, as a hostname or hostname:port. The default is
910
+ # nil, indicating to use the default endpoint in the current universe domain.
911
+ # @return [::String,nil]
892
912
  # @!attribute [rw] credentials
893
913
  # Credentials to send with calls. You may provide any of the following types:
894
914
  # * (`String`) The path to a service account key file in JSON format
@@ -925,13 +945,20 @@ module Google
925
945
  # @!attribute [rw] quota_project
926
946
  # A separate project against which to charge quota.
927
947
  # @return [::String]
948
+ # @!attribute [rw] universe_domain
949
+ # The universe domain within which to make requests. This determines the
950
+ # default endpoint URL. The default value of nil uses the environment
951
+ # universe (usually the default "googleapis.com" universe).
952
+ # @return [::String,nil]
928
953
  #
929
954
  class Configuration
930
955
  extend ::Gapic::Config
931
956
 
957
+ # @private
958
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
932
959
  DEFAULT_ENDPOINT = "dataproc.googleapis.com"
933
960
 
934
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
961
+ config_attr :endpoint, nil, ::String, nil
935
962
  config_attr :credentials, nil do |value|
936
963
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
937
964
  allowed.any? { |klass| klass === value }
@@ -943,6 +970,7 @@ module Google
943
970
  config_attr :metadata, nil, ::Hash, nil
944
971
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
945
972
  config_attr :quota_project, nil, ::String, nil
973
+ config_attr :universe_domain, nil, ::String, nil
946
974
 
947
975
  # @private
948
976
  # Overrides for http bindings for the RPCs of this service
@@ -26,6 +26,9 @@ module Google
26
26
  module Rest
27
27
  # Service that implements Longrunning Operations API.
28
28
  class Operations
29
+ # @private
30
+ DEFAULT_ENDPOINT_TEMPLATE = "dataproc.$UNIVERSE_DOMAIN$"
31
+
29
32
  # @private
30
33
  attr_reader :operations_stub
31
34
 
@@ -60,6 +63,15 @@ module Google
60
63
  @config
61
64
  end
62
65
 
66
+ ##
67
+ # The effective universe domain
68
+ #
69
+ # @return [String]
70
+ #
71
+ def universe_domain
72
+ @operations_stub.universe_domain
73
+ end
74
+
63
75
  ##
64
76
  # Create a new Operations client object.
65
77
  #
@@ -84,8 +96,10 @@ module Google
84
96
  @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
85
97
 
86
98
  @operations_stub = OperationsServiceStub.new(
87
- endpoint: @config.endpoint,
88
- credentials: credentials
99
+ endpoint: @config.endpoint,
100
+ endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
101
+ universe_domain: @config.universe_domain,
102
+ credentials: credentials
89
103
  )
90
104
 
91
105
  # Used by an LRO wrapper for some methods of this service
@@ -478,9 +492,9 @@ module Google
478
492
  # end
479
493
  #
480
494
  # @!attribute [rw] endpoint
481
- # The hostname or hostname:port of the service endpoint.
482
- # Defaults to `"dataproc.googleapis.com"`.
483
- # @return [::String]
495
+ # A custom service endpoint, as a hostname or hostname:port. The default is
496
+ # nil, indicating to use the default endpoint in the current universe domain.
497
+ # @return [::String,nil]
484
498
  # @!attribute [rw] credentials
485
499
  # Credentials to send with calls. You may provide any of the following types:
486
500
  # * (`String`) The path to a service account key file in JSON format
@@ -517,13 +531,20 @@ module Google
517
531
  # @!attribute [rw] quota_project
518
532
  # A separate project against which to charge quota.
519
533
  # @return [::String]
534
+ # @!attribute [rw] universe_domain
535
+ # The universe domain within which to make requests. This determines the
536
+ # default endpoint URL. The default value of nil uses the environment
537
+ # universe (usually the default "googleapis.com" universe).
538
+ # @return [::String,nil]
520
539
  #
521
540
  class Configuration
522
541
  extend ::Gapic::Config
523
542
 
543
+ # @private
544
+ # The endpoint specific to the default "googleapis.com" universe. Deprecated.
524
545
  DEFAULT_ENDPOINT = "dataproc.googleapis.com"
525
546
 
526
- config_attr :endpoint, DEFAULT_ENDPOINT, ::String
547
+ config_attr :endpoint, nil, ::String, nil
527
548
  config_attr :credentials, nil do |value|
528
549
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
529
550
  allowed.any? { |klass| klass === value }
@@ -535,6 +556,7 @@ module Google
535
556
  config_attr :metadata, nil, ::Hash, nil
536
557
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
537
558
  config_attr :quota_project, nil, ::String, nil
559
+ config_attr :universe_domain, nil, ::String, nil
538
560
 
539
561
  # @private
540
562
  def initialize parent_config = nil
@@ -617,12 +639,15 @@ module Google
617
639
  # Service stub contains baseline method implementations
618
640
  # including transcoding, making the REST call, and deserialing the response.
619
641
  class OperationsServiceStub
620
- def initialize endpoint:, credentials:
642
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
621
643
  # These require statements are intentionally placed here to initialize
622
644
  # the REST modules only when it's required.
623
645
  require "gapic/rest"
624
646
 
625
- @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials
647
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
648
+ endpoint_template: endpoint_template,
649
+ universe_domain: universe_domain,
650
+ credentials: credentials
626
651
  end
627
652
 
628
653
  ##
@@ -30,16 +30,37 @@ module Google
30
30
  # including transcoding, making the REST call, and deserialing the response.
31
31
  #
32
32
  class ServiceStub
33
- def initialize endpoint:, credentials:
33
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
34
34
  # These require statements are intentionally placed here to initialize
35
35
  # the REST modules only when it's required.
36
36
  require "gapic/rest"
37
37
 
38
- @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials,
38
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
39
+ endpoint_template: endpoint_template,
40
+ universe_domain: universe_domain,
41
+ credentials: credentials,
39
42
  numeric_enums: true,
40
43
  raise_faraday_errors: false
41
44
  end
42
45
 
46
+ ##
47
+ # The effective universe domain
48
+ #
49
+ # @return [String]
50
+ #
51
+ def universe_domain
52
+ @client_stub.universe_domain
53
+ end
54
+
55
+ ##
56
+ # The effective endpoint
57
+ #
58
+ # @return [String]
59
+ #
60
+ def endpoint
61
+ @client_stub.endpoint
62
+ end
63
+
43
64
  ##
44
65
  # Baseline implementation for the submit_job REST call
45
66
  #