aws-sdk-augmentedairuntime 1.2.0 → 1.3.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
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: c7418abf6f18bf32bb0858b17ac39570beea3056dc643afebf1143e6a0808b0e
|
4
|
+
data.tar.gz: f18b6e372d64c3dcd269fd55701b1abd05c549e8b18add78d169e84e34576937
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb18ea2c11ea1da15f1009dcb4c134e8999a8d1d1a186d1cb20f9ffad97ee1e29f35f303216658565e14e71ab6d8ee1e3f1e6705c2ec949a4d475986db3b593c
|
7
|
+
data.tar.gz: 5717bb00636aee64c6d5a65ba0282787853a793f94dadd4c17c7e3461074ba23235098dd5309678bb396605e6e2f927e9b536ae4019c95f5ccae96d68e1b638f
|
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:augmentedairuntime)
|
|
32
32
|
module Aws::AugmentedAIRuntime
|
33
33
|
# An API client for AugmentedAIRuntime. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::AugmentedAIRuntime::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::AugmentedAIRuntime
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -265,8 +269,7 @@ module Aws::AugmentedAIRuntime
|
|
265
269
|
#
|
266
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
271
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
270
273
|
#
|
271
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
275
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +281,7 @@ module Aws::AugmentedAIRuntime
|
|
278
281
|
# request body. This option has no effect unless the request has
|
279
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
283
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
284
|
+
# request on the session.
|
282
285
|
#
|
283
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -308,7 +311,7 @@ module Aws::AugmentedAIRuntime
|
|
308
311
|
# Deletes the specified human loop for a flow definition.
|
309
312
|
#
|
310
313
|
# @option params [required, String] :human_loop_name
|
311
|
-
# The name of the human loop you want to delete.
|
314
|
+
# The name of the human loop that you want to delete.
|
312
315
|
#
|
313
316
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
314
317
|
#
|
@@ -330,7 +333,7 @@ module Aws::AugmentedAIRuntime
|
|
330
333
|
# Returns information about the specified human loop.
|
331
334
|
#
|
332
335
|
# @option params [required, String] :human_loop_name
|
333
|
-
# The
|
336
|
+
# The name of the human loop that you want information about.
|
334
337
|
#
|
335
338
|
# @return [Types::DescribeHumanLoopResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
336
339
|
#
|
@@ -384,23 +387,25 @@ module Aws::AugmentedAIRuntime
|
|
384
387
|
# The Amazon Resource Name (ARN) of a flow definition.
|
385
388
|
#
|
386
389
|
# @option params [String] :sort_order
|
387
|
-
#
|
388
|
-
#
|
390
|
+
# Optional. The order for displaying results. Valid values: `Ascending`
|
391
|
+
# and `Descending`.
|
389
392
|
#
|
390
393
|
# @option params [String] :next_token
|
391
|
-
# A token to
|
394
|
+
# A token to display the next page of results.
|
392
395
|
#
|
393
396
|
# @option params [Integer] :max_results
|
394
397
|
# The total number of items to return. If the total number of available
|
395
398
|
# items is more than the value specified in `MaxResults`, then a
|
396
|
-
# `NextToken`
|
397
|
-
#
|
399
|
+
# `NextToken` is returned in the output. You can use this token to
|
400
|
+
# display the next page of results.
|
398
401
|
#
|
399
402
|
# @return [Types::ListHumanLoopsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
400
403
|
#
|
401
404
|
# * {Types::ListHumanLoopsResponse#human_loop_summaries #human_loop_summaries} => Array<Types::HumanLoopSummary>
|
402
405
|
# * {Types::ListHumanLoopsResponse#next_token #next_token} => String
|
403
406
|
#
|
407
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
408
|
+
#
|
404
409
|
# @example Request syntax with placeholder values
|
405
410
|
#
|
406
411
|
# resp = client.list_human_loops({
|
@@ -438,13 +443,16 @@ module Aws::AugmentedAIRuntime
|
|
438
443
|
# The name of the human loop.
|
439
444
|
#
|
440
445
|
# @option params [required, String] :flow_definition_arn
|
441
|
-
# The Amazon Resource Name (ARN) of the flow definition
|
446
|
+
# The Amazon Resource Name (ARN) of the flow definition associated with
|
447
|
+
# this human loop.
|
442
448
|
#
|
443
449
|
# @option params [required, Types::HumanLoopInput] :human_loop_input
|
444
|
-
# An object
|
450
|
+
# An object that contains information about the human loop.
|
445
451
|
#
|
446
452
|
# @option params [Types::HumanLoopDataAttributes] :data_attributes
|
447
|
-
# Attributes of the data
|
453
|
+
# Attributes of the specified data. Use `DataAttributes` to specify if
|
454
|
+
# your data is free of personally identifiable information and/or free
|
455
|
+
# of adult content.
|
448
456
|
#
|
449
457
|
# @return [Types::StartHumanLoopResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
450
458
|
#
|
@@ -479,7 +487,7 @@ module Aws::AugmentedAIRuntime
|
|
479
487
|
# Stops the specified human loop.
|
480
488
|
#
|
481
489
|
# @option params [required, String] :human_loop_name
|
482
|
-
# The name of the human loop you want to stop.
|
490
|
+
# The name of the human loop that you want to stop.
|
483
491
|
#
|
484
492
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
485
493
|
#
|
@@ -511,7 +519,7 @@ module Aws::AugmentedAIRuntime
|
|
511
519
|
params: params,
|
512
520
|
config: config)
|
513
521
|
context[:gem_name] = 'aws-sdk-augmentedairuntime'
|
514
|
-
context[:gem_version] = '1.
|
522
|
+
context[:gem_version] = '1.3.0'
|
515
523
|
Seahorse::Client::Request.new(handlers, context)
|
516
524
|
end
|
517
525
|
|
@@ -177,6 +177,7 @@ module Aws::AugmentedAIRuntime
|
|
177
177
|
o.input = Shapes::ShapeRef.new(shape: ListHumanLoopsRequest)
|
178
178
|
o.output = Shapes::ShapeRef.new(shape: ListHumanLoopsResponse)
|
179
179
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
180
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
180
181
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
181
182
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
182
183
|
o[:pager] = Aws::Pager.new(
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::AugmentedAIRuntime
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::AugmentedAIRuntime::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::AugmentedAIRuntime::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::AugmentedAIRuntime::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
@@ -30,7 +30,7 @@ module Aws::AugmentedAIRuntime
|
|
30
30
|
# }
|
31
31
|
#
|
32
32
|
# @!attribute [rw] human_loop_name
|
33
|
-
# The name of the human loop you want to delete.
|
33
|
+
# The name of the human loop that you want to delete.
|
34
34
|
# @return [String]
|
35
35
|
#
|
36
36
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-a2i-runtime-2019-11-07/DeleteHumanLoopRequest AWS API Documentation
|
@@ -52,7 +52,7 @@ module Aws::AugmentedAIRuntime
|
|
52
52
|
# }
|
53
53
|
#
|
54
54
|
# @!attribute [rw] human_loop_name
|
55
|
-
# The
|
55
|
+
# The name of the human loop that you want information about.
|
56
56
|
# @return [String]
|
57
57
|
#
|
58
58
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-a2i-runtime-2019-11-07/DescribeHumanLoopRequest AWS API Documentation
|
@@ -67,20 +67,22 @@ module Aws::AugmentedAIRuntime
|
|
67
67
|
# @return [Time]
|
68
68
|
#
|
69
69
|
# @!attribute [rw] failure_reason
|
70
|
-
# The reason why a human loop
|
71
|
-
#
|
70
|
+
# The reason why a human loop failed. The failure reason is returned
|
71
|
+
# when the status of the human loop is `Failed`.
|
72
72
|
# @return [String]
|
73
73
|
#
|
74
74
|
# @!attribute [rw] failure_code
|
75
|
-
# A failure code
|
75
|
+
# A failure code that identifies the type of failure.
|
76
76
|
# @return [String]
|
77
77
|
#
|
78
78
|
# @!attribute [rw] human_loop_status
|
79
|
-
# The status of the human loop.
|
79
|
+
# The status of the human loop.
|
80
80
|
# @return [String]
|
81
81
|
#
|
82
82
|
# @!attribute [rw] human_loop_name
|
83
|
-
# The name of the human loop.
|
83
|
+
# The name of the human loop. The name must be lowercase, unique
|
84
|
+
# within the Region in your account, and can have up to 63 characters.
|
85
|
+
# Valid characters: a-z, 0-9, and - (hyphen).
|
84
86
|
# @return [String]
|
85
87
|
#
|
86
88
|
# @!attribute [rw] human_loop_arn
|
@@ -92,7 +94,8 @@ module Aws::AugmentedAIRuntime
|
|
92
94
|
# @return [String]
|
93
95
|
#
|
94
96
|
# @!attribute [rw] human_loop_output
|
95
|
-
# An object
|
97
|
+
# An object that contains information about the output of the human
|
98
|
+
# loop.
|
96
99
|
# @return [Types::HumanLoopOutput]
|
97
100
|
#
|
98
101
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-a2i-runtime-2019-11-07/DescribeHumanLoopResponse AWS API Documentation
|
@@ -176,7 +179,7 @@ module Aws::AugmentedAIRuntime
|
|
176
179
|
# @return [String]
|
177
180
|
#
|
178
181
|
# @!attribute [rw] human_loop_status
|
179
|
-
# The status of the human loop.
|
182
|
+
# The status of the human loop.
|
180
183
|
# @return [String]
|
181
184
|
#
|
182
185
|
# @!attribute [rw] creation_time
|
@@ -185,11 +188,12 @@ module Aws::AugmentedAIRuntime
|
|
185
188
|
#
|
186
189
|
# @!attribute [rw] failure_reason
|
187
190
|
# The reason why the human loop failed. A failure reason is returned
|
188
|
-
#
|
191
|
+
# when the status of the human loop is `Failed`.
|
189
192
|
# @return [String]
|
190
193
|
#
|
191
194
|
# @!attribute [rw] flow_definition_arn
|
192
|
-
# The Amazon Resource Name (ARN) of the flow definition
|
195
|
+
# The Amazon Resource Name (ARN) of the flow definition used to
|
196
|
+
# configure the human loop.
|
193
197
|
# @return [String]
|
194
198
|
#
|
195
199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-a2i-runtime-2019-11-07/HumanLoopSummary AWS API Documentation
|
@@ -203,7 +207,8 @@ module Aws::AugmentedAIRuntime
|
|
203
207
|
include Aws::Structure
|
204
208
|
end
|
205
209
|
|
206
|
-
#
|
210
|
+
# We couldn't process your request because of an issue with the server.
|
211
|
+
# Try again later.
|
207
212
|
#
|
208
213
|
# @!attribute [rw] message
|
209
214
|
# @return [String]
|
@@ -242,19 +247,19 @@ module Aws::AugmentedAIRuntime
|
|
242
247
|
# @return [String]
|
243
248
|
#
|
244
249
|
# @!attribute [rw] sort_order
|
245
|
-
#
|
246
|
-
#
|
250
|
+
# Optional. The order for displaying results. Valid values:
|
251
|
+
# `Ascending` and `Descending`.
|
247
252
|
# @return [String]
|
248
253
|
#
|
249
254
|
# @!attribute [rw] next_token
|
250
|
-
# A token to
|
255
|
+
# A token to display the next page of results.
|
251
256
|
# @return [String]
|
252
257
|
#
|
253
258
|
# @!attribute [rw] max_results
|
254
259
|
# The total number of items to return. If the total number of
|
255
260
|
# available items is more than the value specified in `MaxResults`,
|
256
|
-
# then a `NextToken`
|
257
|
-
# to
|
261
|
+
# then a `NextToken` is returned in the output. You can use this token
|
262
|
+
# to display the next page of results.
|
258
263
|
# @return [Integer]
|
259
264
|
#
|
260
265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-a2i-runtime-2019-11-07/ListHumanLoopsRequest AWS API Documentation
|
@@ -270,11 +275,11 @@ module Aws::AugmentedAIRuntime
|
|
270
275
|
end
|
271
276
|
|
272
277
|
# @!attribute [rw] human_loop_summaries
|
273
|
-
# An array of objects
|
278
|
+
# An array of objects that contain information about the human loops.
|
274
279
|
# @return [Array<Types::HumanLoopSummary>]
|
275
280
|
#
|
276
281
|
# @!attribute [rw] next_token
|
277
|
-
# A token to
|
282
|
+
# A token to display the next page of results.
|
278
283
|
# @return [String]
|
279
284
|
#
|
280
285
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-a2i-runtime-2019-11-07/ListHumanLoopsResponse AWS API Documentation
|
@@ -285,7 +290,7 @@ module Aws::AugmentedAIRuntime
|
|
285
290
|
include Aws::Structure
|
286
291
|
end
|
287
292
|
|
288
|
-
# We
|
293
|
+
# We couldn't find the requested resource.
|
289
294
|
#
|
290
295
|
# @!attribute [rw] message
|
291
296
|
# @return [String]
|
@@ -297,9 +302,8 @@ module Aws::AugmentedAIRuntime
|
|
297
302
|
include Aws::Structure
|
298
303
|
end
|
299
304
|
|
300
|
-
# You
|
301
|
-
#
|
302
|
-
# increase.
|
305
|
+
# You exceeded your service quota. Delete some resources or request an
|
306
|
+
# increase in your service quota.
|
303
307
|
#
|
304
308
|
# @!attribute [rw] message
|
305
309
|
# @return [String]
|
@@ -330,15 +334,18 @@ module Aws::AugmentedAIRuntime
|
|
330
334
|
# @return [String]
|
331
335
|
#
|
332
336
|
# @!attribute [rw] flow_definition_arn
|
333
|
-
# The Amazon Resource Name (ARN) of the flow definition
|
337
|
+
# The Amazon Resource Name (ARN) of the flow definition associated
|
338
|
+
# with this human loop.
|
334
339
|
# @return [String]
|
335
340
|
#
|
336
341
|
# @!attribute [rw] human_loop_input
|
337
|
-
# An object
|
342
|
+
# An object that contains information about the human loop.
|
338
343
|
# @return [Types::HumanLoopInput]
|
339
344
|
#
|
340
345
|
# @!attribute [rw] data_attributes
|
341
|
-
# Attributes of the data
|
346
|
+
# Attributes of the specified data. Use `DataAttributes` to specify if
|
347
|
+
# your data is free of personally identifiable information and/or free
|
348
|
+
# of adult content.
|
342
349
|
# @return [Types::HumanLoopDataAttributes]
|
343
350
|
#
|
344
351
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-a2i-runtime-2019-11-07/StartHumanLoopRequest AWS API Documentation
|
@@ -370,7 +377,7 @@ module Aws::AugmentedAIRuntime
|
|
370
377
|
# }
|
371
378
|
#
|
372
379
|
# @!attribute [rw] human_loop_name
|
373
|
-
# The name of the human loop you want to stop.
|
380
|
+
# The name of the human loop that you want to stop.
|
374
381
|
# @return [String]
|
375
382
|
#
|
376
383
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-a2i-runtime-2019-11-07/StopHumanLoopRequest AWS API Documentation
|
@@ -384,7 +391,7 @@ module Aws::AugmentedAIRuntime
|
|
384
391
|
#
|
385
392
|
class StopHumanLoopResponse < Aws::EmptyStructure; end
|
386
393
|
|
387
|
-
#
|
394
|
+
# You exceeded the maximum number of requests.
|
388
395
|
#
|
389
396
|
# @!attribute [rw] message
|
390
397
|
# @return [String]
|
@@ -396,7 +403,7 @@ module Aws::AugmentedAIRuntime
|
|
396
403
|
include Aws::Structure
|
397
404
|
end
|
398
405
|
|
399
|
-
#
|
406
|
+
# The request isn't valid. Check the syntax and try again.
|
400
407
|
#
|
401
408
|
# @!attribute [rw] message
|
402
409
|
# @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.3.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-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Amazon Augmented AI Runtime
|