google-cloud-dataproc-v1 0.22.0 → 0.23.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +72 -101
- data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/client.rb +32 -8
- data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/rest/client.rb +34 -7
- data/lib/google/cloud/dataproc/v1/autoscaling_policy_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/dataproc/v1/batch_controller/client.rb +33 -8
- data/lib/google/cloud/dataproc/v1/batch_controller/operations.rb +28 -6
- data/lib/google/cloud/dataproc/v1/batch_controller/rest/client.rb +35 -7
- 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 +14 -2
- data/lib/google/cloud/dataproc/v1/cluster_controller/client.rb +33 -8
- data/lib/google/cloud/dataproc/v1/cluster_controller/operations.rb +28 -6
- data/lib/google/cloud/dataproc/v1/cluster_controller/rest/client.rb +35 -7
- 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 +14 -2
- data/lib/google/cloud/dataproc/v1/job_controller/client.rb +33 -8
- data/lib/google/cloud/dataproc/v1/job_controller/operations.rb +28 -6
- data/lib/google/cloud/dataproc/v1/job_controller/rest/client.rb +35 -7
- 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 +14 -2
- data/lib/google/cloud/dataproc/v1/node_group_controller/client.rb +33 -8
- 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 +35 -7
- 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 +14 -2
- data/lib/google/cloud/dataproc/v1/version.rb +1 -1
- data/lib/google/cloud/dataproc/v1/workflow_template_service/client.rb +33 -8
- 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 +35 -7
- 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 +14 -2
- data/proto_docs/google/api/client.rb +14 -0
- metadata +7 -7
@@ -34,6 +34,9 @@ module Google
|
|
34
34
|
# of Compute Engine managed 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
|
@@ -94,6 +97,15 @@ module Google
|
|
94
97
|
@config
|
95
98
|
end
|
96
99
|
|
100
|
+
##
|
101
|
+
# The effective universe domain
|
102
|
+
#
|
103
|
+
# @return [String]
|
104
|
+
#
|
105
|
+
def universe_domain
|
106
|
+
@node_group_controller_stub.universe_domain
|
107
|
+
end
|
108
|
+
|
97
109
|
##
|
98
110
|
# Create a new NodeGroupController REST client object.
|
99
111
|
#
|
@@ -121,8 +133,9 @@ module Google
|
|
121
133
|
credentials = @config.credentials
|
122
134
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
123
135
|
# but only if the default endpoint does not have a region prefix.
|
124
|
-
enable_self_signed_jwt = @config.endpoint
|
125
|
-
|
136
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
137
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
138
|
+
!@config.endpoint.split(".").first.include?("-"))
|
126
139
|
credentials ||= Credentials.default scope: @config.scope,
|
127
140
|
enable_self_signed_jwt: enable_self_signed_jwt
|
128
141
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -136,16 +149,23 @@ module Google
|
|
136
149
|
config.credentials = credentials
|
137
150
|
config.quota_project = @quota_project_id
|
138
151
|
config.endpoint = @config.endpoint
|
152
|
+
config.universe_domain = @config.universe_domain
|
139
153
|
end
|
140
154
|
|
141
155
|
@iam_policy_client = Google::Iam::V1::IAMPolicy::Rest::Client.new do |config|
|
142
156
|
config.credentials = credentials
|
143
157
|
config.quota_project = @quota_project_id
|
144
158
|
config.endpoint = @config.endpoint
|
159
|
+
config.universe_domain = @config.universe_domain
|
145
160
|
config.bindings_override = @config.bindings_override
|
146
161
|
end
|
147
162
|
|
148
|
-
@node_group_controller_stub = ::Google::Cloud::Dataproc::V1::NodeGroupController::Rest::ServiceStub.new
|
163
|
+
@node_group_controller_stub = ::Google::Cloud::Dataproc::V1::NodeGroupController::Rest::ServiceStub.new(
|
164
|
+
endpoint: @config.endpoint,
|
165
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
166
|
+
universe_domain: @config.universe_domain,
|
167
|
+
credentials: credentials
|
168
|
+
)
|
149
169
|
end
|
150
170
|
|
151
171
|
##
|
@@ -505,9 +525,9 @@ module Google
|
|
505
525
|
# end
|
506
526
|
#
|
507
527
|
# @!attribute [rw] endpoint
|
508
|
-
#
|
509
|
-
#
|
510
|
-
# @return [::String]
|
528
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
529
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
530
|
+
# @return [::String,nil]
|
511
531
|
# @!attribute [rw] credentials
|
512
532
|
# Credentials to send with calls. You may provide any of the following types:
|
513
533
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -544,13 +564,20 @@ module Google
|
|
544
564
|
# @!attribute [rw] quota_project
|
545
565
|
# A separate project against which to charge quota.
|
546
566
|
# @return [::String]
|
567
|
+
# @!attribute [rw] universe_domain
|
568
|
+
# The universe domain within which to make requests. This determines the
|
569
|
+
# default endpoint URL. The default value of nil uses the environment
|
570
|
+
# universe (usually the default "googleapis.com" universe).
|
571
|
+
# @return [::String,nil]
|
547
572
|
#
|
548
573
|
class Configuration
|
549
574
|
extend ::Gapic::Config
|
550
575
|
|
576
|
+
# @private
|
577
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
551
578
|
DEFAULT_ENDPOINT = "dataproc.googleapis.com"
|
552
579
|
|
553
|
-
config_attr :endpoint,
|
580
|
+
config_attr :endpoint, nil, ::String, nil
|
554
581
|
config_attr :credentials, nil do |value|
|
555
582
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
556
583
|
allowed.any? { |klass| klass === value }
|
@@ -562,6 +589,7 @@ module Google
|
|
562
589
|
config_attr :metadata, nil, ::Hash, nil
|
563
590
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
564
591
|
config_attr :quota_project, nil, ::String, nil
|
592
|
+
config_attr :universe_domain, nil, ::String, nil
|
565
593
|
|
566
594
|
# @private
|
567
595
|
# 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,28 @@ 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
|
+
|
43
55
|
##
|
44
56
|
# Baseline implementation for the create_node_group REST call
|
45
57
|
#
|
@@ -32,6 +32,9 @@ module Google
|
|
32
32
|
# Dataproc API.
|
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
|
@@ -127,6 +130,15 @@ module Google
|
|
127
130
|
@config
|
128
131
|
end
|
129
132
|
|
133
|
+
##
|
134
|
+
# The effective universe domain
|
135
|
+
#
|
136
|
+
# @return [String]
|
137
|
+
#
|
138
|
+
def universe_domain
|
139
|
+
@workflow_template_service_stub.universe_domain
|
140
|
+
end
|
141
|
+
|
130
142
|
##
|
131
143
|
# Create a new WorkflowTemplateService client object.
|
132
144
|
#
|
@@ -160,8 +172,9 @@ module Google
|
|
160
172
|
credentials = @config.credentials
|
161
173
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
162
174
|
# but only if the default endpoint does not have a region prefix.
|
163
|
-
enable_self_signed_jwt = @config.endpoint
|
164
|
-
|
175
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
176
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
177
|
+
!@config.endpoint.split(".").first.include?("-"))
|
165
178
|
credentials ||= Credentials.default scope: @config.scope,
|
166
179
|
enable_self_signed_jwt: enable_self_signed_jwt
|
167
180
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -174,18 +187,22 @@ module Google
|
|
174
187
|
config.credentials = credentials
|
175
188
|
config.quota_project = @quota_project_id
|
176
189
|
config.endpoint = @config.endpoint
|
190
|
+
config.universe_domain = @config.universe_domain
|
177
191
|
end
|
178
192
|
|
179
193
|
@iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
|
180
194
|
config.credentials = credentials
|
181
195
|
config.quota_project = @quota_project_id
|
182
196
|
config.endpoint = @config.endpoint
|
197
|
+
config.universe_domain = @config.universe_domain
|
183
198
|
end
|
184
199
|
|
185
200
|
@workflow_template_service_stub = ::Gapic::ServiceStub.new(
|
186
201
|
::Google::Cloud::Dataproc::V1::WorkflowTemplateService::Stub,
|
187
|
-
credentials:
|
188
|
-
endpoint:
|
202
|
+
credentials: credentials,
|
203
|
+
endpoint: @config.endpoint,
|
204
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
205
|
+
universe_domain: @config.universe_domain,
|
189
206
|
channel_args: @config.channel_args,
|
190
207
|
interceptors: @config.interceptors,
|
191
208
|
channel_pool_config: @config.channel_pool
|
@@ -1005,9 +1022,9 @@ module Google
|
|
1005
1022
|
# end
|
1006
1023
|
#
|
1007
1024
|
# @!attribute [rw] endpoint
|
1008
|
-
#
|
1009
|
-
#
|
1010
|
-
# @return [::String]
|
1025
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
1026
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
1027
|
+
# @return [::String,nil]
|
1011
1028
|
# @!attribute [rw] credentials
|
1012
1029
|
# Credentials to send with calls. You may provide any of the following types:
|
1013
1030
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -1053,13 +1070,20 @@ module Google
|
|
1053
1070
|
# @!attribute [rw] quota_project
|
1054
1071
|
# A separate project against which to charge quota.
|
1055
1072
|
# @return [::String]
|
1073
|
+
# @!attribute [rw] universe_domain
|
1074
|
+
# The universe domain within which to make requests. This determines the
|
1075
|
+
# default endpoint URL. The default value of nil uses the environment
|
1076
|
+
# universe (usually the default "googleapis.com" universe).
|
1077
|
+
# @return [::String,nil]
|
1056
1078
|
#
|
1057
1079
|
class Configuration
|
1058
1080
|
extend ::Gapic::Config
|
1059
1081
|
|
1082
|
+
# @private
|
1083
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
1060
1084
|
DEFAULT_ENDPOINT = "dataproc.googleapis.com"
|
1061
1085
|
|
1062
|
-
config_attr :endpoint,
|
1086
|
+
config_attr :endpoint, nil, ::String, nil
|
1063
1087
|
config_attr :credentials, nil do |value|
|
1064
1088
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1065
1089
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -1074,6 +1098,7 @@ module Google
|
|
1074
1098
|
config_attr :metadata, nil, ::Hash, nil
|
1075
1099
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1076
1100
|
config_attr :quota_project, nil, ::String, nil
|
1101
|
+
config_attr :universe_domain, nil, ::String, nil
|
1077
1102
|
|
1078
1103
|
# @private
|
1079
1104
|
def initialize parent_config = nil
|
@@ -26,6 +26,9 @@ module Google
|
|
26
26
|
module WorkflowTemplateService
|
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
|
# Dataproc API.
|
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
|
@@ -129,6 +132,15 @@ module Google
|
|
129
132
|
@config
|
130
133
|
end
|
131
134
|
|
135
|
+
##
|
136
|
+
# The effective universe domain
|
137
|
+
#
|
138
|
+
# @return [String]
|
139
|
+
#
|
140
|
+
def universe_domain
|
141
|
+
@workflow_template_service_stub.universe_domain
|
142
|
+
end
|
143
|
+
|
132
144
|
##
|
133
145
|
# Create a new WorkflowTemplateService REST client object.
|
134
146
|
#
|
@@ -156,8 +168,9 @@ module Google
|
|
156
168
|
credentials = @config.credentials
|
157
169
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
158
170
|
# but only if the default endpoint does not have a region prefix.
|
159
|
-
enable_self_signed_jwt = @config.endpoint
|
160
|
-
|
171
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
172
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
173
|
+
!@config.endpoint.split(".").first.include?("-"))
|
161
174
|
credentials ||= Credentials.default scope: @config.scope,
|
162
175
|
enable_self_signed_jwt: enable_self_signed_jwt
|
163
176
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -171,16 +184,23 @@ module Google
|
|
171
184
|
config.credentials = credentials
|
172
185
|
config.quota_project = @quota_project_id
|
173
186
|
config.endpoint = @config.endpoint
|
187
|
+
config.universe_domain = @config.universe_domain
|
174
188
|
end
|
175
189
|
|
176
190
|
@iam_policy_client = Google::Iam::V1::IAMPolicy::Rest::Client.new do |config|
|
177
191
|
config.credentials = credentials
|
178
192
|
config.quota_project = @quota_project_id
|
179
193
|
config.endpoint = @config.endpoint
|
194
|
+
config.universe_domain = @config.universe_domain
|
180
195
|
config.bindings_override = @config.bindings_override
|
181
196
|
end
|
182
197
|
|
183
|
-
@workflow_template_service_stub = ::Google::Cloud::Dataproc::V1::WorkflowTemplateService::Rest::ServiceStub.new
|
198
|
+
@workflow_template_service_stub = ::Google::Cloud::Dataproc::V1::WorkflowTemplateService::Rest::ServiceStub.new(
|
199
|
+
endpoint: @config.endpoint,
|
200
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
201
|
+
universe_domain: @config.universe_domain,
|
202
|
+
credentials: credentials
|
203
|
+
)
|
184
204
|
end
|
185
205
|
|
186
206
|
##
|
@@ -947,9 +967,9 @@ module Google
|
|
947
967
|
# end
|
948
968
|
#
|
949
969
|
# @!attribute [rw] endpoint
|
950
|
-
#
|
951
|
-
#
|
952
|
-
# @return [::String]
|
970
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
971
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
972
|
+
# @return [::String,nil]
|
953
973
|
# @!attribute [rw] credentials
|
954
974
|
# Credentials to send with calls. You may provide any of the following types:
|
955
975
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -986,13 +1006,20 @@ module Google
|
|
986
1006
|
# @!attribute [rw] quota_project
|
987
1007
|
# A separate project against which to charge quota.
|
988
1008
|
# @return [::String]
|
1009
|
+
# @!attribute [rw] universe_domain
|
1010
|
+
# The universe domain within which to make requests. This determines the
|
1011
|
+
# default endpoint URL. The default value of nil uses the environment
|
1012
|
+
# universe (usually the default "googleapis.com" universe).
|
1013
|
+
# @return [::String,nil]
|
989
1014
|
#
|
990
1015
|
class Configuration
|
991
1016
|
extend ::Gapic::Config
|
992
1017
|
|
1018
|
+
# @private
|
1019
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
993
1020
|
DEFAULT_ENDPOINT = "dataproc.googleapis.com"
|
994
1021
|
|
995
|
-
config_attr :endpoint,
|
1022
|
+
config_attr :endpoint, nil, ::String, nil
|
996
1023
|
config_attr :credentials, nil do |value|
|
997
1024
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
998
1025
|
allowed.any? { |klass| klass === value }
|
@@ -1004,6 +1031,7 @@ module Google
|
|
1004
1031
|
config_attr :metadata, nil, ::Hash, nil
|
1005
1032
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1006
1033
|
config_attr :quota_project, nil, ::String, nil
|
1034
|
+
config_attr :universe_domain, nil, ::String, nil
|
1007
1035
|
|
1008
1036
|
# @private
|
1009
1037
|
# 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,28 @@ 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
|
+
|
43
55
|
##
|
44
56
|
# Baseline implementation for the create_workflow_template REST call
|
45
57
|
#
|