google-cloud-vmware_engine-v1 0.6.0 → 0.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66d0f0f5371a52fca70f16d2ac9809b396a74f4c747e9c53d8cbe0b1b5692d04
4
- data.tar.gz: e9525ee43ef7469d8262e3374c574450fcdcdd37bb7ead2a25675ab3f3ab89cc
3
+ metadata.gz: cc807ee086f9b53e09b14a25f90befa9c83c85f06c40048a8226a033bfe25107
4
+ data.tar.gz: 50c555b4bd12f70fe3ad6b227f9b401823cdc19c7794aa05ad0c1a365ea39490
5
5
  SHA512:
6
- metadata.gz: 17b5d3be6e8d3feae430dee6fe2fa6370f673edcc0f0622bfe39199d1dc12e3b3b7066a5ab3e5003f8107f2aff21abd1d108a321ffbf46299fed3276cafc11a7
7
- data.tar.gz: 946ecbb40c1eae668add288fa84ced6520a9ecdbcff7262ecbe8e17929522e13980b12fe07c18e1993976fd7cc6af70d24b7ec699b9ac24dfddc6f17f9e285b2
6
+ metadata.gz: 0f3fe6e8ef1bc14769116543d0d00a60ca85849056cd1a2ce65c5d94f15c5463dc2dba82e2d7e57007de45bcef57eda98bfcc899f737f4a18930c1237bfa54eb
7
+ data.tar.gz: c90a7f195d8491ce828f84d89fca77503b930f6bb7aaa0ecf4ba8015ad92d8f6cd9e8efbe333f3e8f8465168f89c75076ff0e22c860073e30c87a7223b09eab2
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module VmwareEngine
23
23
  module V1
24
- VERSION = "0.6.0"
24
+ VERSION = "0.6.1"
25
25
  end
26
26
  end
27
27
  end
@@ -254,20 +254,6 @@ module Google
254
254
  config.universe_domain = @config.universe_domain
255
255
  end
256
256
 
257
- @location_client = Google::Cloud::Location::Locations::Client.new do |config|
258
- config.credentials = credentials
259
- config.quota_project = @quota_project_id
260
- config.endpoint = @config.endpoint
261
- config.universe_domain = @config.universe_domain
262
- end
263
-
264
- @iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
265
- config.credentials = credentials
266
- config.quota_project = @quota_project_id
267
- config.endpoint = @config.endpoint
268
- config.universe_domain = @config.universe_domain
269
- end
270
-
271
257
  @vmware_engine_stub = ::Gapic::ServiceStub.new(
272
258
  ::Google::Cloud::VmwareEngine::V1::VmwareEngine::Stub,
273
259
  credentials: credentials,
@@ -278,6 +264,20 @@ module Google
278
264
  interceptors: @config.interceptors,
279
265
  channel_pool_config: @config.channel_pool
280
266
  )
267
+
268
+ @location_client = Google::Cloud::Location::Locations::Client.new do |config|
269
+ config.credentials = credentials
270
+ config.quota_project = @quota_project_id
271
+ config.endpoint = @vmware_engine_stub.endpoint
272
+ config.universe_domain = @vmware_engine_stub.universe_domain
273
+ end
274
+
275
+ @iam_policy_client = Google::Iam::V1::IAMPolicy::Client.new do |config|
276
+ config.credentials = credentials
277
+ config.quota_project = @quota_project_id
278
+ config.endpoint = @vmware_engine_stub.endpoint
279
+ config.universe_domain = @vmware_engine_stub.universe_domain
280
+ end
281
281
  end
282
282
 
283
283
  ##
@@ -251,28 +251,28 @@ module Google
251
251
  config.universe_domain = @config.universe_domain
252
252
  end
253
253
 
254
+ @vmware_engine_stub = ::Google::Cloud::VmwareEngine::V1::VmwareEngine::Rest::ServiceStub.new(
255
+ endpoint: @config.endpoint,
256
+ endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
257
+ universe_domain: @config.universe_domain,
258
+ credentials: credentials
259
+ )
260
+
254
261
  @location_client = Google::Cloud::Location::Locations::Rest::Client.new do |config|
255
262
  config.credentials = credentials
256
263
  config.quota_project = @quota_project_id
257
- config.endpoint = @config.endpoint
258
- config.universe_domain = @config.universe_domain
264
+ config.endpoint = @vmware_engine_stub.endpoint
265
+ config.universe_domain = @vmware_engine_stub.universe_domain
259
266
  config.bindings_override = @config.bindings_override
260
267
  end
261
268
 
262
269
  @iam_policy_client = Google::Iam::V1::IAMPolicy::Rest::Client.new do |config|
263
270
  config.credentials = credentials
264
271
  config.quota_project = @quota_project_id
265
- config.endpoint = @config.endpoint
266
- config.universe_domain = @config.universe_domain
272
+ config.endpoint = @vmware_engine_stub.endpoint
273
+ config.universe_domain = @vmware_engine_stub.universe_domain
267
274
  config.bindings_override = @config.bindings_override
268
275
  end
269
-
270
- @vmware_engine_stub = ::Google::Cloud::VmwareEngine::V1::VmwareEngine::Rest::ServiceStub.new(
271
- endpoint: @config.endpoint,
272
- endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
273
- universe_domain: @config.universe_domain,
274
- credentials: credentials
275
- )
276
276
  end
277
277
 
278
278
  ##
@@ -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_private_clouds REST call
57
66
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-vmware_engine-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.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 00:00:00.000000000 Z
11
+ date: 2024-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common