aws-sdk-augmentedairuntime 1.3.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7418abf6f18bf32bb0858b17ac39570beea3056dc643afebf1143e6a0808b0e
4
- data.tar.gz: f18b6e372d64c3dcd269fd55701b1abd05c549e8b18add78d169e84e34576937
3
+ metadata.gz: 9c3063e938810f2a8f2b8511d7b150296ec57b0fc605fd9f10c7d91587fef6b5
4
+ data.tar.gz: 2cef24bf23e0e230f02d0da2d85d9de6295c9b0a1c10b3cc18a4413eee451dad
5
5
  SHA512:
6
- metadata.gz: fb18ea2c11ea1da15f1009dcb4c134e8999a8d1d1a186d1cb20f9ffad97ee1e29f35f303216658565e14e71ab6d8ee1e3f1e6705c2ec949a4d475986db3b593c
7
- data.tar.gz: 5717bb00636aee64c6d5a65ba0282787853a793f94dadd4c17c7e3461074ba23235098dd5309678bb396605e6e2f927e9b536ae4019c95f5ccae96d68e1b638f
6
+ metadata.gz: b334df0f78ad03a1ba41240c961338048b3fa60512ca0e126f38e6938604afe26b2cff702eb16c4784bea71de79e9533df4da28b2f8c9e7f3d4709d86cb1c913
7
+ data.tar.gz: b487864e840076ee86a7ae6b29b047e7e57a7eca4f0ebc48af4110c95057cac606a74b7e67eca2580aa98db0d5376eca56808860bc3483607ad9da8eb627b402
@@ -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:
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-augmentedairuntime/customizations'
42
44
  #
43
45
  # See {Errors} for more information.
44
46
  #
45
- # @service
47
+ # @!group service
46
48
  module Aws::AugmentedAIRuntime
47
49
 
48
- GEM_VERSION = '1.3.0'
50
+ GEM_VERSION = '1.8.0'
49
51
 
50
52
  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::SharedCredentials` - Used for loading credentials from a
88
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
89
107
  #
90
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
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,15 +116,15 @@ 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 are
101
- # very aggressive. Construct and pass an instance of
102
- # `Aws::InstanceProfileCredentails` to enable retries and extended
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
107
126
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
127
+ # a default `:region` is searched for in the following locations:
109
128
  #
110
129
  # * `Aws.config[:region]`
111
130
  # * `ENV['AWS_REGION']`
@@ -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 avalid 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
@@ -176,7 +195,7 @@ module Aws::AugmentedAIRuntime
176
195
  # requests fetching endpoints information. Defaults to 60 sec.
177
196
  #
178
197
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
198
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
199
  #
181
200
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
201
  # The log formatter.
@@ -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.3.0'
541
+ context[:gem_version] = '1.8.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:
@@ -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:
@@ -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:
@@ -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.3.0
4
+ version: 1.8.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-04-16 00:00:00.000000000 Z
11
+ date: 2020-08-25 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement