google-cloud-deploy-v1 0.10.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/deploy/v1/cloud_deploy/client.rb +10 -1
- data/lib/google/cloud/deploy/v1/cloud_deploy/operations.rb +10 -1
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/client.rb +492 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy/rest/operations.rb +75 -0
- data/lib/google/cloud/deploy/v1/cloud_deploy_pb.rb +9 -1
- data/lib/google/cloud/deploy/v1/log_enums_pb.rb +1 -1
- data/lib/google/cloud/deploy/v1/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/cloud/deploy/v1/cloud_deploy.rb +206 -37
- data/proto_docs/google/cloud/deploy/v1/log_enums.rb +6 -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: d62b25b7f8a779a6275d78c6cc2708690191973abde9bfe6640fc7915119732f
|
4
|
+
data.tar.gz: 074c1747dc9c61a914069e8f5f4c927a7e3edebe61218ae3cc7d2fe912a037f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da3a8e428dc2ac4cd6692918b0ce00578c67715144bc86fde2c2a6a81a2d70ef01fb9361d042a75d4364009106f2f964919c1eb758b90da1d4b290dcd364fb51
|
7
|
+
data.tar.gz: a7d2388d351f70775009a8a650f3f65e1947b7106e006a9be0082267d10cedeb97e43aa1fb6458b7720237d7adfd90b1f55c8cb2da187666b2e26e1c22d0e06c
|
@@ -244,7 +244,8 @@ module Google
|
|
244
244
|
credentials: credentials,
|
245
245
|
endpoint: @config.endpoint,
|
246
246
|
channel_args: @config.channel_args,
|
247
|
-
interceptors: @config.interceptors
|
247
|
+
interceptors: @config.interceptors,
|
248
|
+
channel_pool_config: @config.channel_pool
|
248
249
|
)
|
249
250
|
end
|
250
251
|
|
@@ -3007,6 +3008,14 @@ module Google
|
|
3007
3008
|
end
|
3008
3009
|
end
|
3009
3010
|
|
3011
|
+
##
|
3012
|
+
# Configuration for the channel pool
|
3013
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
3014
|
+
#
|
3015
|
+
def channel_pool
|
3016
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
3017
|
+
end
|
3018
|
+
|
3010
3019
|
##
|
3011
3020
|
# Configuration RPC class for the CloudDeploy API.
|
3012
3021
|
#
|
@@ -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
|
#
|