aws-sdk-augmentedairuntime 1.5.0 → 1.10.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/aws-sdk-augmentedairuntime.rb +5 -2
- data/lib/aws-sdk-augmentedairuntime/client.rb +28 -9
- data/lib/aws-sdk-augmentedairuntime/client_api.rb +2 -0
- data/lib/aws-sdk-augmentedairuntime/errors.rb +2 -0
- data/lib/aws-sdk-augmentedairuntime/resource.rb +2 -0
- data/lib/aws-sdk-augmentedairuntime/types.rb +20 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e7ce879f2e5b9814b7bff420e92a276adbdc8fd244bbb4d01c1808b1d5fba75
|
4
|
+
data.tar.gz: 89fb7c462d6ab9657bbf725230cfb52dae7e5b8c7a2db3091bed56c31332057c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bde4b0052d85afb0988b47e2c7e73c14a09786827034ce37acfffb9e4f5eb689c700a3c62775cb0780ef83787e969d5f64ce78668973f70bd1d5f4805573e1c
|
7
|
+
data.tar.gz: cb2f33e10bc53681e2c6826cb4a66b52ce6903da61dc89e4119f03c639b1f9e065af1f0a5c91608732bbe753fe3465152205ceb5a9d850a5a797f261074ba64e
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-augmentedairuntime/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::AugmentedAIRuntime
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.10.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::AugmentedAIRuntime
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::AugmentedAIRuntime
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::AugmentedAIRuntime
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::AugmentedAIRuntime
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -519,7 +538,7 @@ module Aws::AugmentedAIRuntime
|
|
519
538
|
params: params,
|
520
539
|
config: config)
|
521
540
|
context[:gem_name] = 'aws-sdk-augmentedairuntime'
|
522
|
-
context[:gem_version] = '1.
|
541
|
+
context[:gem_version] = '1.10.0'
|
523
542
|
Seahorse::Client::Request.new(handlers, context)
|
524
543
|
end
|
525
544
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -19,6 +21,7 @@ module Aws::AugmentedAIRuntime
|
|
19
21
|
#
|
20
22
|
class ConflictException < Struct.new(
|
21
23
|
:message)
|
24
|
+
SENSITIVE = []
|
22
25
|
include Aws::Structure
|
23
26
|
end
|
24
27
|
|
@@ -37,6 +40,7 @@ module Aws::AugmentedAIRuntime
|
|
37
40
|
#
|
38
41
|
class DeleteHumanLoopRequest < Struct.new(
|
39
42
|
:human_loop_name)
|
43
|
+
SENSITIVE = []
|
40
44
|
include Aws::Structure
|
41
45
|
end
|
42
46
|
|
@@ -59,6 +63,7 @@ module Aws::AugmentedAIRuntime
|
|
59
63
|
#
|
60
64
|
class DescribeHumanLoopRequest < Struct.new(
|
61
65
|
:human_loop_name)
|
66
|
+
SENSITIVE = []
|
62
67
|
include Aws::Structure
|
63
68
|
end
|
64
69
|
|
@@ -109,6 +114,7 @@ module Aws::AugmentedAIRuntime
|
|
109
114
|
:human_loop_arn,
|
110
115
|
:flow_definition_arn,
|
111
116
|
:human_loop_output)
|
117
|
+
SENSITIVE = []
|
112
118
|
include Aws::Structure
|
113
119
|
end
|
114
120
|
|
@@ -134,6 +140,7 @@ module Aws::AugmentedAIRuntime
|
|
134
140
|
#
|
135
141
|
class HumanLoopDataAttributes < Struct.new(
|
136
142
|
:content_classifiers)
|
143
|
+
SENSITIVE = []
|
137
144
|
include Aws::Structure
|
138
145
|
end
|
139
146
|
|
@@ -155,6 +162,7 @@ module Aws::AugmentedAIRuntime
|
|
155
162
|
#
|
156
163
|
class HumanLoopInput < Struct.new(
|
157
164
|
:input_content)
|
165
|
+
SENSITIVE = []
|
158
166
|
include Aws::Structure
|
159
167
|
end
|
160
168
|
|
@@ -169,6 +177,7 @@ module Aws::AugmentedAIRuntime
|
|
169
177
|
#
|
170
178
|
class HumanLoopOutput < Struct.new(
|
171
179
|
:output_s3_uri)
|
180
|
+
SENSITIVE = []
|
172
181
|
include Aws::Structure
|
173
182
|
end
|
174
183
|
|
@@ -204,6 +213,7 @@ module Aws::AugmentedAIRuntime
|
|
204
213
|
:creation_time,
|
205
214
|
:failure_reason,
|
206
215
|
:flow_definition_arn)
|
216
|
+
SENSITIVE = []
|
207
217
|
include Aws::Structure
|
208
218
|
end
|
209
219
|
|
@@ -217,6 +227,7 @@ module Aws::AugmentedAIRuntime
|
|
217
227
|
#
|
218
228
|
class InternalServerException < Struct.new(
|
219
229
|
:message)
|
230
|
+
SENSITIVE = []
|
220
231
|
include Aws::Structure
|
221
232
|
end
|
222
233
|
|
@@ -271,6 +282,7 @@ module Aws::AugmentedAIRuntime
|
|
271
282
|
:sort_order,
|
272
283
|
:next_token,
|
273
284
|
:max_results)
|
285
|
+
SENSITIVE = []
|
274
286
|
include Aws::Structure
|
275
287
|
end
|
276
288
|
|
@@ -287,6 +299,7 @@ module Aws::AugmentedAIRuntime
|
|
287
299
|
class ListHumanLoopsResponse < Struct.new(
|
288
300
|
:human_loop_summaries,
|
289
301
|
:next_token)
|
302
|
+
SENSITIVE = []
|
290
303
|
include Aws::Structure
|
291
304
|
end
|
292
305
|
|
@@ -299,6 +312,7 @@ module Aws::AugmentedAIRuntime
|
|
299
312
|
#
|
300
313
|
class ResourceNotFoundException < Struct.new(
|
301
314
|
:message)
|
315
|
+
SENSITIVE = []
|
302
316
|
include Aws::Structure
|
303
317
|
end
|
304
318
|
|
@@ -312,6 +326,7 @@ module Aws::AugmentedAIRuntime
|
|
312
326
|
#
|
313
327
|
class ServiceQuotaExceededException < Struct.new(
|
314
328
|
:message)
|
329
|
+
SENSITIVE = []
|
315
330
|
include Aws::Structure
|
316
331
|
end
|
317
332
|
|
@@ -355,6 +370,7 @@ module Aws::AugmentedAIRuntime
|
|
355
370
|
:flow_definition_arn,
|
356
371
|
:human_loop_input,
|
357
372
|
:data_attributes)
|
373
|
+
SENSITIVE = []
|
358
374
|
include Aws::Structure
|
359
375
|
end
|
360
376
|
|
@@ -366,6 +382,7 @@ module Aws::AugmentedAIRuntime
|
|
366
382
|
#
|
367
383
|
class StartHumanLoopResponse < Struct.new(
|
368
384
|
:human_loop_arn)
|
385
|
+
SENSITIVE = []
|
369
386
|
include Aws::Structure
|
370
387
|
end
|
371
388
|
|
@@ -384,6 +401,7 @@ module Aws::AugmentedAIRuntime
|
|
384
401
|
#
|
385
402
|
class StopHumanLoopRequest < Struct.new(
|
386
403
|
:human_loop_name)
|
404
|
+
SENSITIVE = []
|
387
405
|
include Aws::Structure
|
388
406
|
end
|
389
407
|
|
@@ -400,6 +418,7 @@ module Aws::AugmentedAIRuntime
|
|
400
418
|
#
|
401
419
|
class ThrottlingException < Struct.new(
|
402
420
|
:message)
|
421
|
+
SENSITIVE = []
|
403
422
|
include Aws::Structure
|
404
423
|
end
|
405
424
|
|
@@ -412,6 +431,7 @@ module Aws::AugmentedAIRuntime
|
|
412
431
|
#
|
413
432
|
class ValidationException < Struct.new(
|
414
433
|
:message)
|
434
|
+
SENSITIVE = []
|
415
435
|
include Aws::Structure
|
416
436
|
end
|
417
437
|
|
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.10.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: 2020-
|
11
|
+
date: 2020-09-30 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|