aws-sdk-textract 1.33.0 → 1.36.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0597249191f85abe9b4ae750150b66eaefed975cedb814a3c73efeb291e4c63
4
- data.tar.gz: 6af502a9d4c6a3878f78fb37027173beec935fdfb6acdb5fe90e16f20cb83694
3
+ metadata.gz: 77c6a65cd217cccb2a2cef7d7c420c53020d4cc9df433e3e392baa3ff7ce4c55
4
+ data.tar.gz: bb7e8b7909b3936a3a99ec766d2ac48c5902a9690f5614d46c6bd5da24c4aeca
5
5
  SHA512:
6
- metadata.gz: 6e858249348d25143446c78a3d118eeeb65e5281566ff57c2a4a4dea5b5df246b9fbbc2c9b730c63609df4930dfc252f86ba592c99e4ccc97d2c83809e01c213
7
- data.tar.gz: ccdd7d3aea333704476ca909be54de710468520c621f320091818896638e624bfb389674b3c099d6e2e6b8ad2b789a599eaaf816e8754eeaefcd0dbc1efd20d7
6
+ metadata.gz: eaa0dcb7634f366d836b56f95a2ff6ae553e86424b5036a103a42566c46595294651e71fed345a2e22ad06a9d2aeb3fb382668d09a2be170082a473927d275ca
7
+ data.tar.gz: c56044068dce67d07f9eb0de9d431fb6acdc8fea58d159d89b21dd388c4eec84361b02fc151913326abfa3ce850340970d2e001d9de717a81b228d6c24e45d48
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.36.0 (2022-02-23)
5
+ ------------------
6
+
7
+ * Feature - Added support for merged cells and column header for table response.
8
+
9
+ 1.35.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.34.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.33.0 (2021-11-30)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.36.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::Textract
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -175,6 +179,10 @@ module Aws::Textract
175
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
180
  # a clock skew correction and retry requests with skewed client clocks.
177
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
178
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
187
  # Set to true to disable SDK automatically adding host prefix
180
188
  # to default service endpoint when available.
@@ -307,7 +315,7 @@ module Aws::Textract
307
315
  # seconds to wait when opening a HTTP session before raising a
308
316
  # `Timeout::Error`.
309
317
  #
310
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
311
319
  # number of seconds to wait for response data. This value can
312
320
  # safely be set per-request on the session.
313
321
  #
@@ -323,6 +331,9 @@ module Aws::Textract
323
331
  # disables this behaviour. This value can safely be set per
324
332
  # request on the session.
325
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
326
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
327
338
  # HTTP debug output will be sent to the `:logger`.
328
339
  #
@@ -439,7 +450,7 @@ module Aws::Textract
439
450
  #
440
451
  # resp.document_metadata.pages #=> Integer
441
452
  # resp.blocks #=> Array
442
- # resp.blocks[0].block_type #=> String, one of "KEY_VALUE_SET", "PAGE", "LINE", "WORD", "TABLE", "CELL", "SELECTION_ELEMENT"
453
+ # resp.blocks[0].block_type #=> String, one of "KEY_VALUE_SET", "PAGE", "LINE", "WORD", "TABLE", "CELL", "SELECTION_ELEMENT", "MERGED_CELL", "TITLE"
443
454
  # resp.blocks[0].confidence #=> Float
444
455
  # resp.blocks[0].text #=> String
445
456
  # resp.blocks[0].text_type #=> String, one of "HANDWRITING", "PRINTED"
@@ -456,11 +467,11 @@ module Aws::Textract
456
467
  # resp.blocks[0].geometry.polygon[0].y #=> Float
457
468
  # resp.blocks[0].id #=> String
458
469
  # resp.blocks[0].relationships #=> Array
459
- # resp.blocks[0].relationships[0].type #=> String, one of "VALUE", "CHILD", "COMPLEX_FEATURES"
470
+ # resp.blocks[0].relationships[0].type #=> String, one of "VALUE", "CHILD", "COMPLEX_FEATURES", "MERGED_CELL", "TITLE"
460
471
  # resp.blocks[0].relationships[0].ids #=> Array
461
472
  # resp.blocks[0].relationships[0].ids[0] #=> String
462
473
  # resp.blocks[0].entity_types #=> Array
463
- # resp.blocks[0].entity_types[0] #=> String, one of "KEY", "VALUE"
474
+ # resp.blocks[0].entity_types[0] #=> String, one of "KEY", "VALUE", "COLUMN_HEADER"
464
475
  # resp.blocks[0].selection_status #=> String, one of "SELECTED", "NOT_SELECTED"
465
476
  # resp.blocks[0].page #=> Integer
466
477
  # resp.human_loop_activation_output.human_loop_arn #=> String
@@ -701,7 +712,7 @@ module Aws::Textract
701
712
  #
702
713
  # resp.document_metadata.pages #=> Integer
703
714
  # resp.blocks #=> Array
704
- # resp.blocks[0].block_type #=> String, one of "KEY_VALUE_SET", "PAGE", "LINE", "WORD", "TABLE", "CELL", "SELECTION_ELEMENT"
715
+ # resp.blocks[0].block_type #=> String, one of "KEY_VALUE_SET", "PAGE", "LINE", "WORD", "TABLE", "CELL", "SELECTION_ELEMENT", "MERGED_CELL", "TITLE"
705
716
  # resp.blocks[0].confidence #=> Float
706
717
  # resp.blocks[0].text #=> String
707
718
  # resp.blocks[0].text_type #=> String, one of "HANDWRITING", "PRINTED"
@@ -718,11 +729,11 @@ module Aws::Textract
718
729
  # resp.blocks[0].geometry.polygon[0].y #=> Float
719
730
  # resp.blocks[0].id #=> String
720
731
  # resp.blocks[0].relationships #=> Array
721
- # resp.blocks[0].relationships[0].type #=> String, one of "VALUE", "CHILD", "COMPLEX_FEATURES"
732
+ # resp.blocks[0].relationships[0].type #=> String, one of "VALUE", "CHILD", "COMPLEX_FEATURES", "MERGED_CELL", "TITLE"
722
733
  # resp.blocks[0].relationships[0].ids #=> Array
723
734
  # resp.blocks[0].relationships[0].ids[0] #=> String
724
735
  # resp.blocks[0].entity_types #=> Array
725
- # resp.blocks[0].entity_types[0] #=> String, one of "KEY", "VALUE"
736
+ # resp.blocks[0].entity_types[0] #=> String, one of "KEY", "VALUE", "COLUMN_HEADER"
726
737
  # resp.blocks[0].selection_status #=> String, one of "SELECTED", "NOT_SELECTED"
727
738
  # resp.blocks[0].page #=> Integer
728
739
  # resp.detect_document_text_model_version #=> String
@@ -828,7 +839,7 @@ module Aws::Textract
828
839
  # resp.job_status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "FAILED", "PARTIAL_SUCCESS"
829
840
  # resp.next_token #=> String
830
841
  # resp.blocks #=> Array
831
- # resp.blocks[0].block_type #=> String, one of "KEY_VALUE_SET", "PAGE", "LINE", "WORD", "TABLE", "CELL", "SELECTION_ELEMENT"
842
+ # resp.blocks[0].block_type #=> String, one of "KEY_VALUE_SET", "PAGE", "LINE", "WORD", "TABLE", "CELL", "SELECTION_ELEMENT", "MERGED_CELL", "TITLE"
832
843
  # resp.blocks[0].confidence #=> Float
833
844
  # resp.blocks[0].text #=> String
834
845
  # resp.blocks[0].text_type #=> String, one of "HANDWRITING", "PRINTED"
@@ -845,11 +856,11 @@ module Aws::Textract
845
856
  # resp.blocks[0].geometry.polygon[0].y #=> Float
846
857
  # resp.blocks[0].id #=> String
847
858
  # resp.blocks[0].relationships #=> Array
848
- # resp.blocks[0].relationships[0].type #=> String, one of "VALUE", "CHILD", "COMPLEX_FEATURES"
859
+ # resp.blocks[0].relationships[0].type #=> String, one of "VALUE", "CHILD", "COMPLEX_FEATURES", "MERGED_CELL", "TITLE"
849
860
  # resp.blocks[0].relationships[0].ids #=> Array
850
861
  # resp.blocks[0].relationships[0].ids[0] #=> String
851
862
  # resp.blocks[0].entity_types #=> Array
852
- # resp.blocks[0].entity_types[0] #=> String, one of "KEY", "VALUE"
863
+ # resp.blocks[0].entity_types[0] #=> String, one of "KEY", "VALUE", "COLUMN_HEADER"
853
864
  # resp.blocks[0].selection_status #=> String, one of "SELECTED", "NOT_SELECTED"
854
865
  # resp.blocks[0].page #=> Integer
855
866
  # resp.warnings #=> Array
@@ -946,7 +957,7 @@ module Aws::Textract
946
957
  # resp.job_status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "FAILED", "PARTIAL_SUCCESS"
947
958
  # resp.next_token #=> String
948
959
  # resp.blocks #=> Array
949
- # resp.blocks[0].block_type #=> String, one of "KEY_VALUE_SET", "PAGE", "LINE", "WORD", "TABLE", "CELL", "SELECTION_ELEMENT"
960
+ # resp.blocks[0].block_type #=> String, one of "KEY_VALUE_SET", "PAGE", "LINE", "WORD", "TABLE", "CELL", "SELECTION_ELEMENT", "MERGED_CELL", "TITLE"
950
961
  # resp.blocks[0].confidence #=> Float
951
962
  # resp.blocks[0].text #=> String
952
963
  # resp.blocks[0].text_type #=> String, one of "HANDWRITING", "PRINTED"
@@ -963,11 +974,11 @@ module Aws::Textract
963
974
  # resp.blocks[0].geometry.polygon[0].y #=> Float
964
975
  # resp.blocks[0].id #=> String
965
976
  # resp.blocks[0].relationships #=> Array
966
- # resp.blocks[0].relationships[0].type #=> String, one of "VALUE", "CHILD", "COMPLEX_FEATURES"
977
+ # resp.blocks[0].relationships[0].type #=> String, one of "VALUE", "CHILD", "COMPLEX_FEATURES", "MERGED_CELL", "TITLE"
967
978
  # resp.blocks[0].relationships[0].ids #=> Array
968
979
  # resp.blocks[0].relationships[0].ids[0] #=> String
969
980
  # resp.blocks[0].entity_types #=> Array
970
- # resp.blocks[0].entity_types[0] #=> String, one of "KEY", "VALUE"
981
+ # resp.blocks[0].entity_types[0] #=> String, one of "KEY", "VALUE", "COLUMN_HEADER"
971
982
  # resp.blocks[0].selection_status #=> String, one of "SELECTED", "NOT_SELECTED"
972
983
  # resp.blocks[0].page #=> Integer
973
984
  # resp.warnings #=> Array
@@ -1447,7 +1458,7 @@ module Aws::Textract
1447
1458
  params: params,
1448
1459
  config: config)
1449
1460
  context[:gem_name] = 'aws-sdk-textract'
1450
- context[:gem_version] = '1.33.0'
1461
+ context[:gem_version] = '1.36.0'
1451
1462
  Seahorse::Client::Request.new(handlers, context)
1452
1463
  end
1453
1464
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-textract/customizations'
48
48
  # @!group service
49
49
  module Aws::Textract
50
50
 
51
- GEM_VERSION = '1.33.0'
51
+ GEM_VERSION = '1.36.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-textract
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-30 00:00:00.000000000 Z
11
+ date: 2022-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.122.0
22
+ version: 3.126.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement