google-cloud-document_ai-v1beta3 0.26.0 → 0.28.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/document_ai/v1beta3/document_processor_service/client.rb +10 -1
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/operations.rb +10 -1
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/rest/client.rb +468 -0
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/rest/operations.rb +75 -0
- data/lib/google/cloud/document_ai/v1beta3/document_service/client.rb +10 -1
- data/lib/google/cloud/document_ai/v1beta3/document_service/operations.rb +10 -1
- data/lib/google/cloud/document_ai/v1beta3/document_service/rest/client.rb +117 -0
- data/lib/google/cloud/document_ai/v1beta3/document_service/rest/operations.rb +75 -0
- data/lib/google/cloud/document_ai/v1beta3/version.rb +1 -1
- data/lib/google/cloud/documentai/v1beta3/document_io_pb.rb +2 -1
- data/lib/google/cloud/documentai/v1beta3/document_processor_service_pb.rb +2 -1
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/cloud/documentai/v1beta3/document_io.rb +27 -1
- data/proto_docs/google/cloud/documentai/v1beta3/document_processor_service.rb +19 -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: 0dae5ebc30d7ebe6d4f5139e686f069ccbbe440f81a6fdf5ad53ffc8ff2a89b6
|
4
|
+
data.tar.gz: 3b0ac779c6186e28e8d0568cc8c1055d4d83b7ae7bb7986265bcac1a59ba5810
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2001758dd7877a8f98522151ab59097267f25be6938b41d36cb928c4d719d6e6cbe54da788c3797ffdf633910d08c0e203f17b18f86416cb23f96028a1bd5a14
|
7
|
+
data.tar.gz: c76c2158f3fc7c65c47b692a58308d5d2d8475855814eb4cf91cec03900d210fa055215b9b943db6dff58dfa38718a36a384ab0f1661c1e03dece09176b9822e
|
@@ -169,7 +169,8 @@ module Google
|
|
169
169
|
credentials: credentials,
|
170
170
|
endpoint: @config.endpoint,
|
171
171
|
channel_args: @config.channel_args,
|
172
|
-
interceptors: @config.interceptors
|
172
|
+
interceptors: @config.interceptors,
|
173
|
+
channel_pool_config: @config.channel_pool
|
173
174
|
)
|
174
175
|
end
|
175
176
|
|
@@ -2538,6 +2539,14 @@ module Google
|
|
2538
2539
|
end
|
2539
2540
|
end
|
2540
2541
|
|
2542
|
+
##
|
2543
|
+
# Configuration for the channel pool
|
2544
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
2545
|
+
#
|
2546
|
+
def channel_pool
|
2547
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
2548
|
+
end
|
2549
|
+
|
2541
2550
|
##
|
2542
2551
|
# Configuration RPC class for the DocumentProcessorService API.
|
2543
2552
|
#
|
@@ -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
|
#
|