aws-sdk-comprehend 1.78.0 → 1.80.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-comprehend/client.rb +6 -7
- data/lib/aws-sdk-comprehend/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-comprehend/types.rb +6 -7
- data/lib/aws-sdk-comprehend.rb +1 -1
- data/sig/client.rbs +1580 -0
- data/sig/errors.rbs +66 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +2088 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ddc7c5c732eec11f3a8b302c4dd2b9f97242ccee7eb9f163e9e84edd99d5a73d
|
4
|
+
data.tar.gz: 9fb10428077706fa1460f96e217a07d420ea73b828ba0f7b7516a71aca2011f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 531934c14860c088d83073e7dfb4bdd80dbc0fe276eb2106ca9b1ac8bace485d87e6fdda169caa5b9f5f2408da4541f2ab20e727f8a1ca6fbd910eead37a81dd
|
7
|
+
data.tar.gz: d8e0fb6ba149feb1e32678fd1f7f566bc049cbc1f68d4fb3d7148effb176a5e1d6b13449efd0e04460241d70d98efe231758824b6f7801e16683ecf16945c7bc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.80.0 (2024-01-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Comprehend PII analysis now supports Spanish input documents.
|
8
|
+
|
9
|
+
1.79.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.78.0 (2023-12-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.80.0
|
@@ -868,8 +868,7 @@ module Aws::Comprehend
|
|
868
868
|
# A UTF-8 text string. The maximum string size is 100 KB.
|
869
869
|
#
|
870
870
|
# @option params [required, String] :language_code
|
871
|
-
# The language of the input documents.
|
872
|
-
# valid language.
|
871
|
+
# The language of the input documents.
|
873
872
|
#
|
874
873
|
# @return [Types::ContainsPiiEntitiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
875
874
|
#
|
@@ -2781,8 +2780,8 @@ module Aws::Comprehend
|
|
2781
2780
|
# A UTF-8 text string. The maximum string size is 100 KB.
|
2782
2781
|
#
|
2783
2782
|
# @option params [required, String] :language_code
|
2784
|
-
# The language of the input
|
2785
|
-
#
|
2783
|
+
# The language of the input text. Enter the language code for English
|
2784
|
+
# (en) or Spanish (es).
|
2786
2785
|
#
|
2787
2786
|
# @return [Types::DetectPiiEntitiesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2788
2787
|
#
|
@@ -4967,8 +4966,8 @@ module Aws::Comprehend
|
|
4967
4966
|
# The identifier of the job.
|
4968
4967
|
#
|
4969
4968
|
# @option params [required, String] :language_code
|
4970
|
-
# The language of the input documents.
|
4971
|
-
#
|
4969
|
+
# The language of the input documents. Enter the language code for
|
4970
|
+
# English (en) or Spanish (es).
|
4972
4971
|
#
|
4973
4972
|
# @option params [String] :client_request_token
|
4974
4973
|
# A unique identifier for the request. If you don't set the client
|
@@ -5913,7 +5912,7 @@ module Aws::Comprehend
|
|
5913
5912
|
params: params,
|
5914
5913
|
config: config)
|
5915
5914
|
context[:gem_name] = 'aws-sdk-comprehend'
|
5916
|
-
context[:gem_version] = '1.
|
5915
|
+
context[:gem_version] = '1.80.0'
|
5917
5916
|
Seahorse::Client::Request.new(handlers, context)
|
5918
5917
|
end
|
5919
5918
|
|
@@ -14,6 +14,7 @@ module Aws::Comprehend
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Comprehend::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -917,8 +917,7 @@ module Aws::Comprehend
|
|
917
917
|
# @return [String]
|
918
918
|
#
|
919
919
|
# @!attribute [rw] language_code
|
920
|
-
# The language of the input documents.
|
921
|
-
# valid language.
|
920
|
+
# The language of the input documents.
|
922
921
|
# @return [String]
|
923
922
|
#
|
924
923
|
# @see http://docs.aws.amazon.com/goto/WebAPI/comprehend-2017-11-27/ContainsPiiEntitiesRequest AWS API Documentation
|
@@ -2535,8 +2534,8 @@ module Aws::Comprehend
|
|
2535
2534
|
# @return [String]
|
2536
2535
|
#
|
2537
2536
|
# @!attribute [rw] language_code
|
2538
|
-
# The language of the input
|
2539
|
-
#
|
2537
|
+
# The language of the input text. Enter the language code for English
|
2538
|
+
# (en) or Spanish (es).
|
2540
2539
|
# @return [String]
|
2541
2540
|
#
|
2542
2541
|
# @see http://docs.aws.amazon.com/goto/WebAPI/comprehend-2017-11-27/DetectPiiEntitiesRequest AWS API Documentation
|
@@ -6293,7 +6292,7 @@ module Aws::Comprehend
|
|
6293
6292
|
# @return [Types::RedactionConfig]
|
6294
6293
|
#
|
6295
6294
|
# @!attribute [rw] language_code
|
6296
|
-
# The language code of the input documents
|
6295
|
+
# The language code of the input documents.
|
6297
6296
|
# @return [String]
|
6298
6297
|
#
|
6299
6298
|
# @!attribute [rw] data_access_role_arn
|
@@ -7414,8 +7413,8 @@ module Aws::Comprehend
|
|
7414
7413
|
# @return [String]
|
7415
7414
|
#
|
7416
7415
|
# @!attribute [rw] language_code
|
7417
|
-
# The language of the input documents.
|
7418
|
-
#
|
7416
|
+
# The language of the input documents. Enter the language code for
|
7417
|
+
# English (en) or Spanish (es).
|
7419
7418
|
# @return [String]
|
7420
7419
|
#
|
7421
7420
|
# @!attribute [rw] client_request_token
|