google-cloud-gke_multi_cloud-v1 0.7.0 → 0.8.0
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 -99
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/client.rb +32 -8
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/operations.rb +28 -6
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/rest/client.rb +34 -7
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/rest/operations.rb +33 -8
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/rest/service_stub.rb +14 -2
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb +32 -8
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/operations.rb +28 -6
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/rest/client.rb +34 -7
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/rest/operations.rb +33 -8
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/rest/service_stub.rb +14 -2
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/client.rb +32 -8
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/operations.rb +28 -6
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/rest/client.rb +34 -7
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/rest/operations.rb +33 -8
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/rest/service_stub.rb +14 -2
- data/lib/google/cloud/gke_multi_cloud/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +1 -0
- metadata +4 -4
@@ -33,6 +33,9 @@ module Google
|
|
33
33
|
# to create and manage Anthos clusters that run on Azure infrastructure.
|
34
34
|
#
|
35
35
|
class Client
|
36
|
+
# @private
|
37
|
+
DEFAULT_ENDPOINT_TEMPLATE = "gkemulticloud.$UNIVERSE_DOMAIN$"
|
38
|
+
|
36
39
|
include Paths
|
37
40
|
|
38
41
|
# @private
|
@@ -164,6 +167,15 @@ module Google
|
|
164
167
|
@config
|
165
168
|
end
|
166
169
|
|
170
|
+
##
|
171
|
+
# The effective universe domain
|
172
|
+
#
|
173
|
+
# @return [String]
|
174
|
+
#
|
175
|
+
def universe_domain
|
176
|
+
@azure_clusters_stub.universe_domain
|
177
|
+
end
|
178
|
+
|
167
179
|
##
|
168
180
|
# Create a new AzureClusters REST client object.
|
169
181
|
#
|
@@ -191,8 +203,9 @@ module Google
|
|
191
203
|
credentials = @config.credentials
|
192
204
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
193
205
|
# but only if the default endpoint does not have a region prefix.
|
194
|
-
enable_self_signed_jwt = @config.endpoint
|
195
|
-
|
206
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
207
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
208
|
+
!@config.endpoint.split(".").first.include?("-"))
|
196
209
|
credentials ||= Credentials.default scope: @config.scope,
|
197
210
|
enable_self_signed_jwt: enable_self_signed_jwt
|
198
211
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -206,9 +219,15 @@ module Google
|
|
206
219
|
config.credentials = credentials
|
207
220
|
config.quota_project = @quota_project_id
|
208
221
|
config.endpoint = @config.endpoint
|
222
|
+
config.universe_domain = @config.universe_domain
|
209
223
|
end
|
210
224
|
|
211
|
-
@azure_clusters_stub = ::Google::Cloud::GkeMultiCloud::V1::AzureClusters::Rest::ServiceStub.new
|
225
|
+
@azure_clusters_stub = ::Google::Cloud::GkeMultiCloud::V1::AzureClusters::Rest::ServiceStub.new(
|
226
|
+
endpoint: @config.endpoint,
|
227
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
228
|
+
universe_domain: @config.universe_domain,
|
229
|
+
credentials: credentials
|
230
|
+
)
|
212
231
|
end
|
213
232
|
|
214
233
|
##
|
@@ -2158,9 +2177,9 @@ module Google
|
|
2158
2177
|
# end
|
2159
2178
|
#
|
2160
2179
|
# @!attribute [rw] endpoint
|
2161
|
-
#
|
2162
|
-
#
|
2163
|
-
# @return [::String]
|
2180
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
2181
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
2182
|
+
# @return [::String,nil]
|
2164
2183
|
# @!attribute [rw] credentials
|
2165
2184
|
# Credentials to send with calls. You may provide any of the following types:
|
2166
2185
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -2197,13 +2216,20 @@ module Google
|
|
2197
2216
|
# @!attribute [rw] quota_project
|
2198
2217
|
# A separate project against which to charge quota.
|
2199
2218
|
# @return [::String]
|
2219
|
+
# @!attribute [rw] universe_domain
|
2220
|
+
# The universe domain within which to make requests. This determines the
|
2221
|
+
# default endpoint URL. The default value of nil uses the environment
|
2222
|
+
# universe (usually the default "googleapis.com" universe).
|
2223
|
+
# @return [::String,nil]
|
2200
2224
|
#
|
2201
2225
|
class Configuration
|
2202
2226
|
extend ::Gapic::Config
|
2203
2227
|
|
2228
|
+
# @private
|
2229
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
2204
2230
|
DEFAULT_ENDPOINT = "gkemulticloud.googleapis.com"
|
2205
2231
|
|
2206
|
-
config_attr :endpoint,
|
2232
|
+
config_attr :endpoint, nil, ::String, nil
|
2207
2233
|
config_attr :credentials, nil do |value|
|
2208
2234
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
2209
2235
|
allowed.any? { |klass| klass === value }
|
@@ -2215,6 +2241,7 @@ module Google
|
|
2215
2241
|
config_attr :metadata, nil, ::Hash, nil
|
2216
2242
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
2217
2243
|
config_attr :quota_project, nil, ::String, nil
|
2244
|
+
config_attr :universe_domain, nil, ::String, nil
|
2218
2245
|
|
2219
2246
|
# @private
|
2220
2247
|
def initialize parent_config = nil
|
@@ -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 = "gkemulticloud.$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 = "gkemulticloud.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: false,
|
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_azure_client REST call
|
45
57
|
#
|
@@ -21,6 +21,7 @@ module Google
|
|
21
21
|
module Api
|
22
22
|
# Required information for every language.
|
23
23
|
# @!attribute [rw] reference_docs_uri
|
24
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
24
25
|
# @return [::String]
|
25
26
|
# Link to automatically generated reference documentation. Example:
|
26
27
|
# https://cloud.google.com/nodejs/docs/reference/asset/latest
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-gke_multi_cloud-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.21.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.21.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|