aws-sdk-textract 1.91.0 → 1.93.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44259596d40a0fa6545d7bd02b0a9c7f55bfa1cd179c265f4f466a4475de7dd7
4
- data.tar.gz: 4975a3f34d67f1d62b5967458d387e7c284767f5af0f6b31fe1fecccf1f1539b
3
+ metadata.gz: 71a1ba204836f4512fe1cf4292554f2d4eafd6d9df5756eff922cbdb0788710f
4
+ data.tar.gz: 7c81e7d6cc39cb7df74bc189100b90dcaf7c147db84364b5ff83220c25104b04
5
5
  SHA512:
6
- metadata.gz: 245f3e6490df1f40961f9cd7d6edaf6d9f8ec6dd81e2d8908506f4f659a35b82eb18b2bcd8654c3f3acf94bae148c0f6c8ff78dec851c6c74c8c0e33ed3d073b
7
- data.tar.gz: 6d453a1ce0abef6a27e6ae64b23eff5ed1b713f8e33a88f4a0ab8943ad7a75514c6d59d57ebefe43b304b127b285964d4d044c78db465800ad05e78e053cf612
6
+ metadata.gz: 51b5d792e941605c69bfe5e16ebb254f8740ad6e4177b6c3bf9716f0a90c4276cdef66d08a33033654096d88dc2ea35240ca26057c03d0a206973a04ffc353f7
7
+ data.tar.gz: 9073619e45270a7b800314fb54af5859a3f80442acd5dce8847c3821f8658cd157e6782ecf10944e375c67a15d548d94ac8ef134498e7f28b36e316adeb60910
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.93.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Adding new BDD representation of endpoint ruleset
8
+
9
+ 1.92.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.91.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.93.0
@@ -199,7 +199,7 @@ module Aws::Textract
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::Textract
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -2845,7 +2843,7 @@ module Aws::Textract
2845
2843
  tracer: tracer
2846
2844
  )
2847
2845
  context[:gem_name] = 'aws-sdk-textract'
2848
- context[:gem_version] = '1.91.0'
2846
+ context[:gem_version] = '1.93.0'
2849
2847
  Seahorse::Client::Request.new(handlers, context)
2850
2848
  end
2851
2849
 
@@ -54,7 +54,7 @@ module Aws::Textract
54
54
  autoload :EndpointProvider, 'aws-sdk-textract/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-textract/endpoints'
56
56
 
57
- GEM_VERSION = '1.91.0'
57
+ GEM_VERSION = '1.93.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -88,14 +88,7 @@ module Aws
88
88
  end
89
89
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Textract/Client.html#analyze_document-instance_method
90
90
  def analyze_document: (
91
- document: {
92
- bytes: ::String?,
93
- s3_object: {
94
- bucket: ::String?,
95
- name: ::String?,
96
- version: ::String?
97
- }?
98
- },
91
+ document: Params::document,
99
92
  feature_types: Array[("TABLES" | "FORMS" | "QUERIES" | "SIGNATURES" | "LAYOUT")],
100
93
  ?human_loop_config: {
101
94
  human_loop_name: ::String,
@@ -110,7 +103,7 @@ module Aws
110
103
  text: ::String,
111
104
  alias: ::String?,
112
105
  pages: Array[::String]?
113
- },
106
+ }
114
107
  ]
115
108
  },
116
109
  ?adapters_config: {
@@ -119,7 +112,7 @@ module Aws
119
112
  adapter_id: ::String,
120
113
  pages: Array[::String]?,
121
114
  version: ::String
122
- },
115
+ }
123
116
  ]
124
117
  }
125
118
  ) -> _AnalyzeDocumentResponseSuccess
@@ -132,14 +125,7 @@ module Aws
132
125
  end
133
126
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Textract/Client.html#analyze_expense-instance_method
134
127
  def analyze_expense: (
135
- document: {
136
- bytes: ::String?,
137
- s3_object: {
138
- bucket: ::String?,
139
- name: ::String?,
140
- version: ::String?
141
- }?
142
- }
128
+ document: Params::document
143
129
  ) -> _AnalyzeExpenseResponseSuccess
144
130
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AnalyzeExpenseResponseSuccess
145
131
 
@@ -152,14 +138,7 @@ module Aws
152
138
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Textract/Client.html#analyze_id-instance_method
153
139
  def analyze_id: (
154
140
  document_pages: Array[
155
- {
156
- bytes: ::String?,
157
- s3_object: {
158
- bucket: ::String?,
159
- name: ::String?,
160
- version: ::String?
161
- }?
162
- },
141
+ Params::document
163
142
  ]
164
143
  ) -> _AnalyzeIDResponseSuccess
165
144
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AnalyzeIDResponseSuccess
@@ -231,14 +210,7 @@ module Aws
231
210
  end
232
211
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Textract/Client.html#detect_document_text-instance_method
233
212
  def detect_document_text: (
234
- document: {
235
- bytes: ::String?,
236
- s3_object: {
237
- bucket: ::String?,
238
- name: ::String?,
239
- version: ::String?
240
- }?
241
- }
213
+ document: Params::document
242
214
  ) -> _DetectDocumentTextResponseSuccess
243
215
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectDocumentTextResponseSuccess
244
216
 
@@ -436,7 +408,7 @@ module Aws
436
408
  text: ::String,
437
409
  alias: ::String?,
438
410
  pages: Array[::String]?
439
- },
411
+ }
440
412
  ]
441
413
  },
442
414
  ?adapters_config: {
@@ -445,7 +417,7 @@ module Aws
445
417
  adapter_id: ::String,
446
418
  pages: Array[::String]?,
447
419
  version: ::String
448
- },
420
+ }
449
421
  ]
450
422
  }
451
423
  ) -> _StartDocumentAnalysisResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,22 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Textract
10
+ module Params
11
+ type document = {
12
+ bytes: ::String?,
13
+ s3_object: {
14
+ bucket: ::String?,
15
+ name: ::String?,
16
+ version: ::String?
17
+ }?
18
+ }
19
+
20
+ end
21
+ end
22
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-textract
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.91.0
4
+ version: 1.93.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-textract/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs