google-cloud-vm_migration-v1 0.6.1 → 0.7.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/vm_migration/v1/version.rb +1 -1
- data/lib/google/cloud/vm_migration/v1/vm_migration/client.rb +10 -1
- data/lib/google/cloud/vm_migration/v1/vm_migration/operations.rb +10 -1
- data/lib/google/cloud/vm_migration/v1/vm_migration/rest/client.rb +961 -0
- data/lib/google/cloud/vm_migration/v1/vm_migration/rest/operations.rb +75 -0
- 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: 8376236e207f8e43912cf0c4a2700a056a787860478ec4d3800cc792d3419970
|
4
|
+
data.tar.gz: 86760344dab67ae34a88d6ce02b50bf732be3bbb893af74f521e4f4b7d88a961
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfc1f3a7c1d018918f4edef624edd134185e68e6ecdd98f1ef13832ac7a0e2c25dcfc4cad1cbe7c7328c61d64258e36d8cffc59403714eca077f24c78aa1fced
|
7
|
+
data.tar.gz: f7be2ae1bd80c68c04631a2d280005cb1c99b7697f299549d8504bae24f9a9373d38ad7b86695ac1d2381d274e202a3a30dd550bfb32499a0de9155eb3a5c9b3
|
@@ -166,7 +166,8 @@ module Google
|
|
166
166
|
credentials: credentials,
|
167
167
|
endpoint: @config.endpoint,
|
168
168
|
channel_args: @config.channel_args,
|
169
|
-
interceptors: @config.interceptors
|
169
|
+
interceptors: @config.interceptors,
|
170
|
+
channel_pool_config: @config.channel_pool
|
170
171
|
)
|
171
172
|
end
|
172
173
|
|
@@ -4981,6 +4982,14 @@ module Google
|
|
4981
4982
|
end
|
4982
4983
|
end
|
4983
4984
|
|
4985
|
+
##
|
4986
|
+
# Configuration for the channel pool
|
4987
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
4988
|
+
#
|
4989
|
+
def channel_pool
|
4990
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
4991
|
+
end
|
4992
|
+
|
4984
4993
|
##
|
4985
4994
|
# Configuration RPC class for the VmMigration API.
|
4986
4995
|
#
|
@@ -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
|
#
|