aws-sdk-augmentedairuntime 1.20.0 → 1.23.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: 2c275f9410531646b29398208f5b9a0303289734c7c29f4503d70adb5d182f1f
4
- data.tar.gz: d6cb4f9d9fba8448403714fd087f932d9b57d1e48192971661a7b309788651b6
3
+ metadata.gz: b95ac267ed6f2e61a7ebd0c6e0cc9ef30f1e68634ca3b7d880a0c9c9d4ea784d
4
+ data.tar.gz: 77db0f7480712d407f3d86b2efc24622124cc76b89d29da92dbcfc90d5ac1eaf
5
5
  SHA512:
6
- metadata.gz: 948815d364953e1a66e9e34c9aaa90aaf9a3e78c91a33493742ed96d68dd0533de1eaf21e8b6246fc0bb71f0ec3660167c53902735f63a5f37ecf3c0aedb564b
7
- data.tar.gz: 679cf9a2dd15daf6a75c80966578bb0b247d4cbf0dcc66150022b33d883a840a59ec374fc585052cf77bb9ad2a13d81b4a7b8644ad5d6bc2252d17ab4c7c195f
6
+ metadata.gz: 8ea3eecffe0d4fde8fed50e91ee6f1f20e9b5a6212918ae119fb522c660bc0bdf807d038e8983989b78a5aa947c38493a3b747b0bd7ef26d406137fc41d5f207
7
+ data.tar.gz: c020ad59817f2ed323977915b37fb6d5c3ac0a5c5b21c513736e99d9296db6f0c42f019faabd3cdbc83f3179dfc1ce1e9d2449614f750927a9d45dc681c9ce1e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2022-08-09)
5
+ ------------------
6
+
7
+ * Feature - Fix bug with parsing ISO-8601 CreationTime in Java SDK in DescribeHumanLoop
8
+
9
+ 1.22.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.21.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.20.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.0
1
+ 1.23.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::AugmentedAIRuntime
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -563,7 +567,7 @@ module Aws::AugmentedAIRuntime
563
567
  params: params,
564
568
  config: config)
565
569
  context[:gem_name] = 'aws-sdk-augmentedairuntime'
566
- context[:gem_version] = '1.20.0'
570
+ context[:gem_version] = '1.23.0'
567
571
  Seahorse::Client::Request.new(handlers, context)
568
572
  end
569
573
 
@@ -45,7 +45,7 @@ module Aws::AugmentedAIRuntime
45
45
  StopHumanLoopResponse = Shapes::StructureShape.new(name: 'StopHumanLoopResponse')
46
46
  String = Shapes::StringShape.new(name: 'String')
47
47
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
48
- Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
48
+ Timestamp = Shapes::TimestampShape.new(name: 'Timestamp', timestampFormat: "iso8601")
49
49
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
50
50
 
51
51
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: FailureReason, location_name: "Message"))
@@ -139,7 +139,6 @@ module Aws::AugmentedAIRuntime
139
139
  api.metadata = {
140
140
  "apiVersion" => "2019-11-07",
141
141
  "endpointPrefix" => "a2i-runtime.sagemaker",
142
- "jsonVersion" => "1.1",
143
142
  "protocol" => "rest-json",
144
143
  "serviceFullName" => "Amazon Augmented AI Runtime",
145
144
  "serviceId" => "SageMaker A2I Runtime",
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-augmentedairuntime/customizations'
48
48
  # @!group service
49
49
  module Aws::AugmentedAIRuntime
50
50
 
51
- GEM_VERSION = '1.20.0'
51
+ GEM_VERSION = '1.23.0'
52
52
 
53
53
  end
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.20.0
4
+ version: 1.23.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-12-21 00:00:00.000000000 Z
11
+ date: 2022-08-09 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.125.0
22
+ version: 3.127.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.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement