google-cloud-bare_metal_solution-v2 0.5.1 → 0.6.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/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/client.rb +10 -1
- data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/operations.rb +10 -1
- data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/rest/client.rb +852 -0
- data/lib/google/cloud/bare_metal_solution/v2/bare_metal_solution/rest/operations.rb +75 -0
- data/lib/google/cloud/bare_metal_solution/v2/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +14 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00f014a1d25a20ebd084f6c21cd19d52b84b6301b59bfa39cf80e92c95e6fa97
|
4
|
+
data.tar.gz: 884bbf2518c133cc84f4cc2b3569f57688aba024cc4e8c5b095cc13ba6c84e2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd968d357a5153ad32b0f8c6fc1db435ca478f222976976eb49e7b400db34b2522fd761ae8db39d3c402adbce02f3e60f10b2580c4b1216587ca9f2257bfad5c
|
7
|
+
data.tar.gz: fa22a959e5b947bbbeaa0bbe4e8d958dfdbaeedb2de42d79343ff6794fd4186ccd9f4a6292e15e837cc0c41cfe0000aa6b42f2fa02a8819172c94dba35ff674c
|
@@ -167,7 +167,8 @@ module Google
|
|
167
167
|
credentials: credentials,
|
168
168
|
endpoint: @config.endpoint,
|
169
169
|
channel_args: @config.channel_args,
|
170
|
-
interceptors: @config.interceptors
|
170
|
+
interceptors: @config.interceptors,
|
171
|
+
channel_pool_config: @config.channel_pool
|
171
172
|
)
|
172
173
|
end
|
173
174
|
|
@@ -4379,6 +4380,14 @@ module Google
|
|
4379
4380
|
end
|
4380
4381
|
end
|
4381
4382
|
|
4383
|
+
##
|
4384
|
+
# Configuration for the channel pool
|
4385
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
4386
|
+
#
|
4387
|
+
def channel_pool
|
4388
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
4389
|
+
end
|
4390
|
+
|
4382
4391
|
##
|
4383
4392
|
# Configuration RPC class for the BareMetalSolution API.
|
4384
4393
|
#
|
@@ -93,7 +93,8 @@ module Google
|
|
93
93
|
credentials: credentials,
|
94
94
|
endpoint: @config.endpoint,
|
95
95
|
channel_args: @config.channel_args,
|
96
|
-
interceptors: @config.interceptors
|
96
|
+
interceptors: @config.interceptors,
|
97
|
+
channel_pool_config: @config.channel_pool
|
97
98
|
)
|
98
99
|
|
99
100
|
# Used by an LRO wrapper for some methods of this service
|
@@ -701,6 +702,14 @@ module Google
|
|
701
702
|
end
|
702
703
|
end
|
703
704
|
|
705
|
+
##
|
706
|
+
# Configuration for the channel pool
|
707
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
708
|
+
#
|
709
|
+
def channel_pool
|
710
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
711
|
+
end
|
712
|
+
|
704
713
|
##
|
705
714
|
# Configuration RPC class for the Operations API.
|
706
715
|
#
|