aws-sdk-augmentedairuntime 1.12.0 → 1.16.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-augmentedairuntime/client.rb +7 -2
- data/lib/aws-sdk-augmentedairuntime/types.rb +17 -3
- data/lib/aws-sdk-augmentedairuntime.rb +1 -1
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2da4a0c82996dbb47fc9d2590c1f5b25e12f43f8125aa2c0721911787d13cfd6
|
4
|
+
data.tar.gz: c6dff076b0345c98d887eb664587ad2e919db1b9f37e655cccbc6a66a86f3544
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c63729ef94769570be9f4453b364a96406ec0509f5a5dba486324a55f5e145a179f92ddbc956aea734ceeeabc8e5ecfe2c5bbc8377a3588cb2dad9a9e0e253c
|
7
|
+
data.tar.gz: 6166c6dc61102d39d198e86b1ce4a8f9cb3567d36d463230a40c6bcf2a7d695fa3ffe3c72a9d53986f3f59b9c8d5179647ab5cca1707d9e074ba69b31947fe65
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.16.0 (2021-09-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.15.0 (2021-07-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.14.0 (2021-07-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.13.0 (2021-05-17)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Documentation updates for Amazon A2I Runtime model
|
23
|
+
|
4
24
|
1.12.0 (2021-03-10)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.16.0
|
@@ -329,6 +329,9 @@ module Aws::AugmentedAIRuntime
|
|
329
329
|
|
330
330
|
# Deletes the specified human loop for a flow definition.
|
331
331
|
#
|
332
|
+
# If the human loop was deleted, this operation will return a
|
333
|
+
# `ResourceNotFoundException`.
|
334
|
+
#
|
332
335
|
# @option params [required, String] :human_loop_name
|
333
336
|
# The name of the human loop that you want to delete.
|
334
337
|
#
|
@@ -349,7 +352,9 @@ module Aws::AugmentedAIRuntime
|
|
349
352
|
req.send_request(options)
|
350
353
|
end
|
351
354
|
|
352
|
-
# Returns information about the specified human loop.
|
355
|
+
# Returns information about the specified human loop. If the human loop
|
356
|
+
# was deleted, this operation will return a `ResourceNotFoundException`
|
357
|
+
# error.
|
353
358
|
#
|
354
359
|
# @option params [required, String] :human_loop_name
|
355
360
|
# The name of the human loop that you want information about.
|
@@ -538,7 +543,7 @@ module Aws::AugmentedAIRuntime
|
|
538
543
|
params: params,
|
539
544
|
config: config)
|
540
545
|
context[:gem_name] = 'aws-sdk-augmentedairuntime'
|
541
|
-
context[:gem_version] = '1.
|
546
|
+
context[:gem_version] = '1.16.0'
|
542
547
|
Seahorse::Client::Request.new(handlers, context)
|
543
548
|
end
|
544
549
|
|
@@ -78,6 +78,8 @@ module Aws::AugmentedAIRuntime
|
|
78
78
|
#
|
79
79
|
# @!attribute [rw] failure_code
|
80
80
|
# A failure code that identifies the type of failure.
|
81
|
+
#
|
82
|
+
# Possible values: `ValidationError`, `Expired`, `InternalError`
|
81
83
|
# @return [String]
|
82
84
|
#
|
83
85
|
# @!attribute [rw] human_loop_status
|
@@ -303,7 +305,9 @@ module Aws::AugmentedAIRuntime
|
|
303
305
|
include Aws::Structure
|
304
306
|
end
|
305
307
|
|
306
|
-
# We couldn't find the requested resource.
|
308
|
+
# We couldn't find the requested resource. Check that your resources
|
309
|
+
# exists and were created in the same AWS Region as your request, and
|
310
|
+
# try your request again.
|
307
311
|
#
|
308
312
|
# @!attribute [rw] message
|
309
313
|
# @return [String]
|
@@ -316,8 +320,18 @@ module Aws::AugmentedAIRuntime
|
|
316
320
|
include Aws::Structure
|
317
321
|
end
|
318
322
|
|
319
|
-
# You exceeded your service quota.
|
320
|
-
#
|
323
|
+
# You exceeded your service quota. Service quotas, also referred to as
|
324
|
+
# limits, are the maximum number of service resources or operations for
|
325
|
+
# your AWS account. For a list of Amazon A2I service quotes, see [Amazon
|
326
|
+
# Augmented AI Service Quotes][1]. Delete some resources or request an
|
327
|
+
# increase in your service quota. You can request a quota increase using
|
328
|
+
# Service Quotas or the AWS Support Center. To request an increase, see
|
329
|
+
# [AWS Service Quotas][2] in the *AWS General Reference*.
|
330
|
+
#
|
331
|
+
#
|
332
|
+
#
|
333
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/a2i.html
|
334
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html
|
321
335
|
#
|
322
336
|
# @!attribute [rw] message
|
323
337
|
# @return [String]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-augmentedairuntime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.16.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
|
+
date: 2021-09-01 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.
|
22
|
+
version: 3.120.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.
|
32
|
+
version: 3.120.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
66
66
|
licenses:
|
67
67
|
- Apache-2.0
|
68
68
|
metadata:
|
69
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
70
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
69
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-augmentedairuntime
|
70
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-augmentedairuntime/CHANGELOG.md
|
71
71
|
post_install_message:
|
72
72
|
rdoc_options: []
|
73
73
|
require_paths:
|
@@ -76,15 +76,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
|
-
|
87
|
-
rubygems_version: 2.7.6.2
|
86
|
+
rubygems_version: 3.1.6
|
88
87
|
signing_key:
|
89
88
|
specification_version: 4
|
90
89
|
summary: AWS SDK for Ruby - Amazon Augmented AI Runtime
|