google-cloud-certificate_manager-v1 0.8.0 → 0.8.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/lib/google/cloud/certificate_manager/v1/certificate_manager/client.rb +7 -7
- data/lib/google/cloud/certificate_manager/v1/certificate_manager/rest/client.rb +8 -8
- data/lib/google/cloud/certificate_manager/v1/certificate_manager/rest/service_stub.rb +9 -0
- data/lib/google/cloud/certificate_manager/v1/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d91aa91252e6f8bca28cf806fffcf242cbac6eeee0b95fb81c1254e15ee815f2
|
|
4
|
+
data.tar.gz: 44ed29e7f2a93ee3725a6cb9e6639bc60fb1faa1b4f5e79a734eaf62e01ec1ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25f5c18d8246f8ee1a9d4c60e100db4980618b26421c5c82319424b425ad6deb44dce69bad76a6a639e6059c313ca42d0d283bcfce43c477c4801b5c3768929b
|
|
7
|
+
data.tar.gz: de8465f252fbb5ddaf05bbccfa481bb3310d9c47ccbaf334730c9e06f0270e3daf38cce3c687afba42cb6e808d1c3f615fc4a680e67f03924ea7b08e74401caa
|
|
@@ -299,13 +299,6 @@ module Google
|
|
|
299
299
|
config.universe_domain = @config.universe_domain
|
|
300
300
|
end
|
|
301
301
|
|
|
302
|
-
@location_client = Google::Cloud::Location::Locations::Client.new do |config|
|
|
303
|
-
config.credentials = credentials
|
|
304
|
-
config.quota_project = @quota_project_id
|
|
305
|
-
config.endpoint = @config.endpoint
|
|
306
|
-
config.universe_domain = @config.universe_domain
|
|
307
|
-
end
|
|
308
|
-
|
|
309
302
|
@certificate_manager_stub = ::Gapic::ServiceStub.new(
|
|
310
303
|
::Google::Cloud::CertificateManager::V1::CertificateManager::Stub,
|
|
311
304
|
credentials: credentials,
|
|
@@ -316,6 +309,13 @@ module Google
|
|
|
316
309
|
interceptors: @config.interceptors,
|
|
317
310
|
channel_pool_config: @config.channel_pool
|
|
318
311
|
)
|
|
312
|
+
|
|
313
|
+
@location_client = Google::Cloud::Location::Locations::Client.new do |config|
|
|
314
|
+
config.credentials = credentials
|
|
315
|
+
config.quota_project = @quota_project_id
|
|
316
|
+
config.endpoint = @certificate_manager_stub.endpoint
|
|
317
|
+
config.universe_domain = @certificate_manager_stub.universe_domain
|
|
318
|
+
end
|
|
319
319
|
end
|
|
320
320
|
|
|
321
321
|
##
|
|
@@ -296,20 +296,20 @@ module Google
|
|
|
296
296
|
config.universe_domain = @config.universe_domain
|
|
297
297
|
end
|
|
298
298
|
|
|
299
|
-
@location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
|
|
300
|
-
config.credentials = credentials
|
|
301
|
-
config.quota_project = @quota_project_id
|
|
302
|
-
config.endpoint = @config.endpoint
|
|
303
|
-
config.universe_domain = @config.universe_domain
|
|
304
|
-
config.bindings_override = @config.bindings_override
|
|
305
|
-
end
|
|
306
|
-
|
|
307
299
|
@certificate_manager_stub = ::Google::Cloud::CertificateManager::V1::CertificateManager::Rest::ServiceStub.new(
|
|
308
300
|
endpoint: @config.endpoint,
|
|
309
301
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
|
310
302
|
universe_domain: @config.universe_domain,
|
|
311
303
|
credentials: credentials
|
|
312
304
|
)
|
|
305
|
+
|
|
306
|
+
@location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
|
|
307
|
+
config.credentials = credentials
|
|
308
|
+
config.quota_project = @quota_project_id
|
|
309
|
+
config.endpoint = @certificate_manager_stub.endpoint
|
|
310
|
+
config.universe_domain = @certificate_manager_stub.universe_domain
|
|
311
|
+
config.bindings_override = @config.bindings_override
|
|
312
|
+
end
|
|
313
313
|
end
|
|
314
314
|
|
|
315
315
|
##
|
|
@@ -52,6 +52,15 @@ module Google
|
|
|
52
52
|
@client_stub.universe_domain
|
|
53
53
|
end
|
|
54
54
|
|
|
55
|
+
##
|
|
56
|
+
# The effective endpoint
|
|
57
|
+
#
|
|
58
|
+
# @return [String]
|
|
59
|
+
#
|
|
60
|
+
def endpoint
|
|
61
|
+
@client_stub.endpoint
|
|
62
|
+
end
|
|
63
|
+
|
|
55
64
|
##
|
|
56
65
|
# Baseline implementation for the list_certificates REST call
|
|
57
66
|
#
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-certificate_manager-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
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-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|