google-cloud-dataproc-v1 0.22.0 → 0.23.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.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +72 -101
- data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/client.rb +38 -14
- data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/rest/client.rb +36 -9
- data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/rest/service_stub.rb +23 -2
- data/lib/google/cloud/dataproc/v1/batch_controller/client.rb +39 -14
- data/lib/google/cloud/dataproc/v1/batch_controller/operations.rb +28 -6
- data/lib/google/cloud/dataproc/v1/batch_controller/rest/client.rb +37 -9
- data/lib/google/cloud/dataproc/v1/batch_controller/rest/operations.rb +33 -8
- data/lib/google/cloud/dataproc/v1/batch_controller/rest/service_stub.rb +23 -2
- data/lib/google/cloud/dataproc/v1/cluster_controller/client.rb +39 -14
- data/lib/google/cloud/dataproc/v1/cluster_controller/operations.rb +28 -6
- data/lib/google/cloud/dataproc/v1/cluster_controller/rest/client.rb +37 -9
- data/lib/google/cloud/dataproc/v1/cluster_controller/rest/operations.rb +33 -8
- data/lib/google/cloud/dataproc/v1/cluster_controller/rest/service_stub.rb +23 -2
- data/lib/google/cloud/dataproc/v1/job_controller/client.rb +39 -14
- data/lib/google/cloud/dataproc/v1/job_controller/operations.rb +28 -6
- data/lib/google/cloud/dataproc/v1/job_controller/rest/client.rb +37 -9
- data/lib/google/cloud/dataproc/v1/job_controller/rest/operations.rb +33 -8
- data/lib/google/cloud/dataproc/v1/job_controller/rest/service_stub.rb +23 -2
- data/lib/google/cloud/dataproc/v1/node_group_controller/client.rb +39 -14
- data/lib/google/cloud/dataproc/v1/node_group_controller/operations.rb +28 -6
- data/lib/google/cloud/dataproc/v1/node_group_controller/rest/client.rb +37 -9
- data/lib/google/cloud/dataproc/v1/node_group_controller/rest/operations.rb +33 -8
- data/lib/google/cloud/dataproc/v1/node_group_controller/rest/service_stub.rb +23 -2
- data/lib/google/cloud/dataproc/v1/version.rb +1 -1
- data/lib/google/cloud/dataproc/v1/workflow_template_service/client.rb +39 -14
- data/lib/google/cloud/dataproc/v1/workflow_template_service/operations.rb +28 -6
- data/lib/google/cloud/dataproc/v1/workflow_template_service/rest/client.rb +37 -9
- data/lib/google/cloud/dataproc/v1/workflow_template_service/rest/operations.rb +33 -8
- data/lib/google/cloud/dataproc/v1/workflow_template_service/rest/service_stub.rb +23 -2
- data/proto_docs/google/api/client.rb +14 -0
- metadata +7 -7
@@ -26,6 +26,9 @@ module Google
|
|
26
26
|
module BatchController
|
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:
|
94
|
-
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
|
-
#
|
617
|
-
#
|
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,
|
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 BatchController provides methods to manage batch workloads.
|
34
34
|
#
|
35
35
|
class Client
|
36
|
+
# @private
|
37
|
+
DEFAULT_ENDPOINT_TEMPLATE = "dataproc.$UNIVERSE_DOMAIN$"
|
38
|
+
|
36
39
|
include Paths
|
37
40
|
|
38
41
|
# @private
|
@@ -93,6 +96,15 @@ module Google
|
|
93
96
|
@config
|
94
97
|
end
|
95
98
|
|
99
|
+
##
|
100
|
+
# The effective universe domain
|
101
|
+
#
|
102
|
+
# @return [String]
|
103
|
+
#
|
104
|
+
def universe_domain
|
105
|
+
@batch_controller_stub.universe_domain
|
106
|
+
end
|
107
|
+
|
96
108
|
##
|
97
109
|
# Create a new BatchController REST client object.
|
98
110
|
#
|
@@ -120,8 +132,9 @@ module Google
|
|
120
132
|
credentials = @config.credentials
|
121
133
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
122
134
|
# but only if the default endpoint does not have a region prefix.
|
123
|
-
enable_self_signed_jwt = @config.endpoint
|
124
|
-
|
135
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
136
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
137
|
+
!@config.endpoint.split(".").first.include?("-"))
|
125
138
|
credentials ||= Credentials.default scope: @config.scope,
|
126
139
|
enable_self_signed_jwt: enable_self_signed_jwt
|
127
140
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -135,16 +148,23 @@ module Google
|
|
135
148
|
config.credentials = credentials
|
136
149
|
config.quota_project = @quota_project_id
|
137
150
|
config.endpoint = @config.endpoint
|
151
|
+
config.universe_domain = @config.universe_domain
|
138
152
|
end
|
139
153
|
|
154
|
+
@batch_controller_stub = ::Google::Cloud::Dataproc::V1::BatchController::Rest::ServiceStub.new(
|
155
|
+
endpoint: @config.endpoint,
|
156
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
157
|
+
universe_domain: @config.universe_domain,
|
158
|
+
credentials: credentials
|
159
|
+
)
|
160
|
+
|
140
161
|
@iam_policy_client = Google::Iam::V1::IAMPolicy::Rest::Client.new do |config|
|
141
162
|
config.credentials = credentials
|
142
163
|
config.quota_project = @quota_project_id
|
143
|
-
config.endpoint = @
|
164
|
+
config.endpoint = @batch_controller_stub.endpoint
|
165
|
+
config.universe_domain = @batch_controller_stub.universe_domain
|
144
166
|
config.bindings_override = @config.bindings_override
|
145
167
|
end
|
146
|
-
|
147
|
-
@batch_controller_stub = ::Google::Cloud::Dataproc::V1::BatchController::Rest::ServiceStub.new endpoint: @config.endpoint, credentials: credentials
|
148
168
|
end
|
149
169
|
|
150
170
|
##
|
@@ -570,9 +590,9 @@ module Google
|
|
570
590
|
# end
|
571
591
|
#
|
572
592
|
# @!attribute [rw] endpoint
|
573
|
-
#
|
574
|
-
#
|
575
|
-
# @return [::String]
|
593
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
594
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
595
|
+
# @return [::String,nil]
|
576
596
|
# @!attribute [rw] credentials
|
577
597
|
# Credentials to send with calls. You may provide any of the following types:
|
578
598
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -609,13 +629,20 @@ module Google
|
|
609
629
|
# @!attribute [rw] quota_project
|
610
630
|
# A separate project against which to charge quota.
|
611
631
|
# @return [::String]
|
632
|
+
# @!attribute [rw] universe_domain
|
633
|
+
# The universe domain within which to make requests. This determines the
|
634
|
+
# default endpoint URL. The default value of nil uses the environment
|
635
|
+
# universe (usually the default "googleapis.com" universe).
|
636
|
+
# @return [::String,nil]
|
612
637
|
#
|
613
638
|
class Configuration
|
614
639
|
extend ::Gapic::Config
|
615
640
|
|
641
|
+
# @private
|
642
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
616
643
|
DEFAULT_ENDPOINT = "dataproc.googleapis.com"
|
617
644
|
|
618
|
-
config_attr :endpoint,
|
645
|
+
config_attr :endpoint, nil, ::String, nil
|
619
646
|
config_attr :credentials, nil do |value|
|
620
647
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
621
648
|
allowed.any? { |klass| klass === value }
|
@@ -627,6 +654,7 @@ module Google
|
|
627
654
|
config_attr :metadata, nil, ::Hash, nil
|
628
655
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
629
656
|
config_attr :quota_project, nil, ::String, nil
|
657
|
+
config_attr :universe_domain, nil, ::String, nil
|
630
658
|
|
631
659
|
# @private
|
632
660
|
# 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:
|
88
|
-
|
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
|
-
#
|
482
|
-
#
|
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,
|
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,
|
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,
|
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_batch REST call
|
45
66
|
#
|
@@ -32,6 +32,9 @@ module Google
|
|
32
32
|
# of Compute Engine instances.
|
33
33
|
#
|
34
34
|
class Client
|
35
|
+
# @private
|
36
|
+
DEFAULT_ENDPOINT_TEMPLATE = "dataproc.$UNIVERSE_DOMAIN$"
|
37
|
+
|
35
38
|
include Paths
|
36
39
|
|
37
40
|
# @private
|
@@ -122,6 +125,15 @@ module Google
|
|
122
125
|
@config
|
123
126
|
end
|
124
127
|
|
128
|
+
##
|
129
|
+
# The effective universe domain
|
130
|
+
#
|
131
|
+
# @return [String]
|
132
|
+
#
|
133
|
+
def universe_domain
|
134
|
+
@cluster_controller_stub.universe_domain
|
135
|
+
end
|
136
|
+
|
125
137
|
##
|
126
138
|
# Create a new ClusterController client object.
|
127
139
|
#
|
@@ -155,8 +167,9 @@ module Google
|
|
155
167
|
credentials = @config.credentials
|
156
168
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
157
169
|
# but only if the default endpoint does not have a region prefix.
|
158
|
-
enable_self_signed_jwt = @config.endpoint
|
159
|
-
|
170
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
171
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
172
|
+
!@config.endpoint.split(".").first.include?("-"))
|
160
173
|
credentials ||= Credentials.default scope: @config.scope,
|
161
174
|
enable_self_signed_jwt: enable_self_signed_jwt
|
162
175
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -169,22 +182,26 @@ module Google
|
|
169
182
|
config.credentials = credentials
|
170
183
|
config.quota_project = @quota_project_id
|
171
184
|
config.endpoint = @config.endpoint
|
172
|
-
|
173
|
-
|
174
|
-
@iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
|
175
|
-
config.credentials = credentials
|
176
|
-
config.quota_project = @quota_project_id
|
177
|
-
config.endpoint = @config.endpoint
|
185
|
+
config.universe_domain = @config.universe_domain
|
178
186
|
end
|
179
187
|
|
180
188
|
@cluster_controller_stub = ::Gapic::ServiceStub.new(
|
181
189
|
::Google::Cloud::Dataproc::V1::ClusterController::Stub,
|
182
|
-
credentials:
|
183
|
-
endpoint:
|
190
|
+
credentials: credentials,
|
191
|
+
endpoint: @config.endpoint,
|
192
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
193
|
+
universe_domain: @config.universe_domain,
|
184
194
|
channel_args: @config.channel_args,
|
185
195
|
interceptors: @config.interceptors,
|
186
196
|
channel_pool_config: @config.channel_pool
|
187
197
|
)
|
198
|
+
|
199
|
+
@iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
|
200
|
+
config.credentials = credentials
|
201
|
+
config.quota_project = @quota_project_id
|
202
|
+
config.endpoint = @cluster_controller_stub.endpoint
|
203
|
+
config.universe_domain = @cluster_controller_stub.universe_domain
|
204
|
+
end
|
188
205
|
end
|
189
206
|
|
190
207
|
##
|
@@ -1238,9 +1255,9 @@ module Google
|
|
1238
1255
|
# end
|
1239
1256
|
#
|
1240
1257
|
# @!attribute [rw] endpoint
|
1241
|
-
#
|
1242
|
-
#
|
1243
|
-
# @return [::String]
|
1258
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
1259
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
1260
|
+
# @return [::String,nil]
|
1244
1261
|
# @!attribute [rw] credentials
|
1245
1262
|
# Credentials to send with calls. You may provide any of the following types:
|
1246
1263
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -1286,13 +1303,20 @@ module Google
|
|
1286
1303
|
# @!attribute [rw] quota_project
|
1287
1304
|
# A separate project against which to charge quota.
|
1288
1305
|
# @return [::String]
|
1306
|
+
# @!attribute [rw] universe_domain
|
1307
|
+
# The universe domain within which to make requests. This determines the
|
1308
|
+
# default endpoint URL. The default value of nil uses the environment
|
1309
|
+
# universe (usually the default "googleapis.com" universe).
|
1310
|
+
# @return [::String,nil]
|
1289
1311
|
#
|
1290
1312
|
class Configuration
|
1291
1313
|
extend ::Gapic::Config
|
1292
1314
|
|
1315
|
+
# @private
|
1316
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
1293
1317
|
DEFAULT_ENDPOINT = "dataproc.googleapis.com"
|
1294
1318
|
|
1295
|
-
config_attr :endpoint,
|
1319
|
+
config_attr :endpoint, nil, ::String, nil
|
1296
1320
|
config_attr :credentials, nil do |value|
|
1297
1321
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1298
1322
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -1307,6 +1331,7 @@ module Google
|
|
1307
1331
|
config_attr :metadata, nil, ::Hash, nil
|
1308
1332
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1309
1333
|
config_attr :quota_project, nil, ::String, nil
|
1334
|
+
config_attr :universe_domain, nil, ::String, nil
|
1310
1335
|
|
1311
1336
|
# @private
|
1312
1337
|
def initialize parent_config = nil
|
@@ -26,6 +26,9 @@ module Google
|
|
26
26
|
module ClusterController
|
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:
|
94
|
-
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
|
-
#
|
617
|
-
#
|
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,
|
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
|
@@ -34,6 +34,9 @@ module Google
|
|
34
34
|
# of Compute Engine instances.
|
35
35
|
#
|
36
36
|
class Client
|
37
|
+
# @private
|
38
|
+
DEFAULT_ENDPOINT_TEMPLATE = "dataproc.$UNIVERSE_DOMAIN$"
|
39
|
+
|
37
40
|
include Paths
|
38
41
|
|
39
42
|
# @private
|
@@ -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
|
+
@cluster_controller_stub.universe_domain
|
137
|
+
end
|
138
|
+
|
127
139
|
##
|
128
140
|
# Create a new ClusterController REST client object.
|
129
141
|
#
|
@@ -151,8 +163,9 @@ module Google
|
|
151
163
|
credentials = @config.credentials
|
152
164
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
153
165
|
# but only if the default endpoint does not have a region prefix.
|
154
|
-
enable_self_signed_jwt = @config.endpoint
|
155
|
-
|
166
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
167
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
168
|
+
!@config.endpoint.split(".").first.include?("-"))
|
156
169
|
credentials ||= Credentials.default scope: @config.scope,
|
157
170
|
enable_self_signed_jwt: enable_self_signed_jwt
|
158
171
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -166,16 +179,23 @@ module Google
|
|
166
179
|
config.credentials = credentials
|
167
180
|
config.quota_project = @quota_project_id
|
168
181
|
config.endpoint = @config.endpoint
|
182
|
+
config.universe_domain = @config.universe_domain
|
169
183
|
end
|
170
184
|
|
185
|
+
@cluster_controller_stub = ::Google::Cloud::Dataproc::V1::ClusterController::Rest::ServiceStub.new(
|
186
|
+
endpoint: @config.endpoint,
|
187
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
188
|
+
universe_domain: @config.universe_domain,
|
189
|
+
credentials: credentials
|
190
|
+
)
|
191
|
+
|
171
192
|
@iam_policy_client = Google::Iam::V1::IAMPolicy::Rest::Client.new do |config|
|
172
193
|
config.credentials = credentials
|
173
194
|
config.quota_project = @quota_project_id
|
174
|
-
config.endpoint = @
|
195
|
+
config.endpoint = @cluster_controller_stub.endpoint
|
196
|
+
config.universe_domain = @cluster_controller_stub.universe_domain
|
175
197
|
config.bindings_override = @config.bindings_override
|
176
198
|
end
|
177
|
-
|
178
|
-
@cluster_controller_stub = ::Google::Cloud::Dataproc::V1::ClusterController::Rest::ServiceStub.new endpoint: @config.endpoint, credentials: credentials
|
179
199
|
end
|
180
200
|
|
181
201
|
##
|
@@ -1131,9 +1151,9 @@ module Google
|
|
1131
1151
|
# end
|
1132
1152
|
#
|
1133
1153
|
# @!attribute [rw] endpoint
|
1134
|
-
#
|
1135
|
-
#
|
1136
|
-
# @return [::String]
|
1154
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
1155
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
1156
|
+
# @return [::String,nil]
|
1137
1157
|
# @!attribute [rw] credentials
|
1138
1158
|
# Credentials to send with calls. You may provide any of the following types:
|
1139
1159
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -1170,13 +1190,20 @@ module Google
|
|
1170
1190
|
# @!attribute [rw] quota_project
|
1171
1191
|
# A separate project against which to charge quota.
|
1172
1192
|
# @return [::String]
|
1193
|
+
# @!attribute [rw] universe_domain
|
1194
|
+
# The universe domain within which to make requests. This determines the
|
1195
|
+
# default endpoint URL. The default value of nil uses the environment
|
1196
|
+
# universe (usually the default "googleapis.com" universe).
|
1197
|
+
# @return [::String,nil]
|
1173
1198
|
#
|
1174
1199
|
class Configuration
|
1175
1200
|
extend ::Gapic::Config
|
1176
1201
|
|
1202
|
+
# @private
|
1203
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
1177
1204
|
DEFAULT_ENDPOINT = "dataproc.googleapis.com"
|
1178
1205
|
|
1179
|
-
config_attr :endpoint,
|
1206
|
+
config_attr :endpoint, nil, ::String, nil
|
1180
1207
|
config_attr :credentials, nil do |value|
|
1181
1208
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1182
1209
|
allowed.any? { |klass| klass === value }
|
@@ -1188,6 +1215,7 @@ module Google
|
|
1188
1215
|
config_attr :metadata, nil, ::Hash, nil
|
1189
1216
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1190
1217
|
config_attr :quota_project, nil, ::String, nil
|
1218
|
+
config_attr :universe_domain, nil, ::String, nil
|
1191
1219
|
|
1192
1220
|
# @private
|
1193
1221
|
# Overrides for http bindings for the RPCs of this service
|