aws-sdk-batch 1.57.0 → 1.60.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: 47b8657322d134b0b0863f2cfd7988e5ecd5c0235bed88e24658b976ef8afef2
4
- data.tar.gz: 5b1dbfa7f5a4889387a6ef87354e1551187850a306a8c7dab56cb0371a8f9df5
3
+ metadata.gz: 74f025ce6243bbec5b1a397a514ac8e5315bb31b9f21f2c4343754972301e7bd
4
+ data.tar.gz: 8b352f31766ff583b1e55a42dadb4bdfc0f79b6c411c9f1f7781fe702ebc1321
5
5
  SHA512:
6
- metadata.gz: b3d0970afd45069ba564cd7752e9a95e3691105050151433e2a210b6ceb7b283d25c1b3a8f1f54ce08a82692e4bc4fdf0a1b77dcb6dd9496a78c500793edad13
7
- data.tar.gz: cc4980aa2cd0fede0f183e9b0f65b450042e092c0211d899f6e2e3051640094a5db54d92d2dce524dce406e4e3278c1dbaadb7a05a78e4cc671a05211a4f9aa3
6
+ metadata.gz: b31e5cfb0f8870a63782c968b1a55c47f6129e479e6d11565ed7e7dc471be2627ceefa53c1b7e2c84f7df345c6cf6aa111c5f4ee05758eb97fd6d527c282c8b9
7
+ data.tar.gz: bc3f6279be87a7ea0d51cb8f17566561a2e6df3c7cddcdbc68d043176f5d79e64e97cee1052a06e4a5757b4eb73db8ec20f1a1911f81f70d10538469855635ea
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2022-03-25)
5
+ ------------------
6
+
7
+ * Feature - Bug Fix: Fixed a bug where shapes were marked as unboxed and were not serialized and sent over the wire, causing an API error from the service.
8
+
9
+ 1.59.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.58.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.57.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.60.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::Batch
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
 
@@ -487,7 +491,7 @@ module Aws::Batch
487
491
  # for a fair share job queue, no vCPU capacity is reserved.
488
492
  #
489
493
  # <note markdown="1"> This parameter is only supported when the `type` parameter is set to
490
- # `UNMANAGED`/
494
+ # `UNMANAGED`.
491
495
  #
492
496
  # </note>
493
497
  #
@@ -2619,7 +2623,7 @@ module Aws::Batch
2619
2623
  # `resourceRequirements` objects in the job definition are the
2620
2624
  # exception. They can't be overridden this way using the `memory` and
2621
2625
  # `vcpus` parameters. Rather, you must specify updates to job definition
2622
- # parameters in a `ResourceRequirements` object that's included in the
2626
+ # parameters in a `resourceRequirements` object that's included in the
2623
2627
  # `containerOverrides` parameter.
2624
2628
  #
2625
2629
  # <note markdown="1"> Job queues with a scheduling policy are limited to 500 active fair
@@ -3278,7 +3282,7 @@ module Aws::Batch
3278
3282
  params: params,
3279
3283
  config: config)
3280
3284
  context[:gem_name] = 'aws-sdk-batch'
3281
- context[:gem_version] = '1.57.0'
3285
+ context[:gem_version] = '1.60.0'
3282
3286
  Seahorse::Client::Request.new(handlers, context)
3283
3287
  end
3284
3288
 
@@ -860,7 +860,7 @@ module Aws::Batch
860
860
  # @return [Integer]
861
861
  #
862
862
  # @!attribute [rw] memory
863
- # For jobs run on EC2 resources that didn't specify memory
863
+ # For jobs running on EC2 resources that didn't specify memory
864
864
  # requirements using `resourceRequirements`, the number of MiB of
865
865
  # memory reserved for the job. For other jobs, including all run on
866
866
  # Fargate resources, see `resourceRequirements`.
@@ -1136,7 +1136,7 @@ module Aws::Batch
1136
1136
  # @!attribute [rw] vcpus
1137
1137
  # This parameter is deprecated, use `resourceRequirements` to override
1138
1138
  # the `vcpus` parameter that's set in the job definition. It's not
1139
- # supported for jobs that run on Fargate resources. For jobs run on
1139
+ # supported for jobs running on Fargate resources. For jobs running on
1140
1140
  # EC2 resources, it overrides the `vcpus` parameter set in the job
1141
1141
  # definition, but doesn't override any vCPU requirement specified in
1142
1142
  # the `resourceRequirements` structure in the job definition. To
@@ -1155,7 +1155,7 @@ module Aws::Batch
1155
1155
  # @!attribute [rw] memory
1156
1156
  # This parameter is deprecated, use `resourceRequirements` to override
1157
1157
  # the memory requirements specified in the job definition. It's not
1158
- # supported for jobs that run on Fargate resources. For jobs run on
1158
+ # supported for jobs running on Fargate resources. For jobs running on
1159
1159
  # EC2 resources, it overrides the `memory` parameter set in the job
1160
1160
  # definition, but doesn't override any memory requirement specified
1161
1161
  # in the `resourceRequirements` structure in the job definition. To
@@ -1340,6 +1340,11 @@ module Aws::Batch
1340
1340
  #
1341
1341
  # </note>
1342
1342
  #
1343
+ # * Images in Amazon ECR Public repositories use the full
1344
+ # `registry/repository[:tag]` or `registry/repository[@digest]`
1345
+ # naming conventions. For example,
1346
+ # `public.ecr.aws/registry_alias/my-web-app:latest `.
1347
+ #
1343
1348
  # * Images in Amazon ECR repositories use the full registry and
1344
1349
  # repository URI (for example,
1345
1350
  # `012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>`).
@@ -1363,7 +1368,7 @@ module Aws::Batch
1363
1368
  # @!attribute [rw] vcpus
1364
1369
  # This parameter is deprecated, use `resourceRequirements` to specify
1365
1370
  # the vCPU requirements for the job definition. It's not supported
1366
- # for jobs that run on Fargate resources. For jobs run on EC2
1371
+ # for jobs running on Fargate resources. For jobs running on EC2
1367
1372
  # resources, it specifies the number of vCPUs reserved for the job.
1368
1373
  #
1369
1374
  # Each vCPU is equivalent to 1,024 CPU shares. This parameter maps to
@@ -1382,7 +1387,7 @@ module Aws::Batch
1382
1387
  # @!attribute [rw] memory
1383
1388
  # This parameter is deprecated, use `resourceRequirements` to specify
1384
1389
  # the memory requirements for the job definition. It's not supported
1385
- # for jobs that run on Fargate resources. For jobs run on EC2
1390
+ # for jobs running on Fargate resources. For jobs running on EC2
1386
1391
  # resources, it specifies the memory hard limit (in MiB) for a
1387
1392
  # container. If your container attempts to exceed the specified
1388
1393
  # number, it's terminated. You must specify at least 4 MiB of memory
@@ -1746,7 +1751,7 @@ module Aws::Batch
1746
1751
  # provided for a fair share job queue, no vCPU capacity is reserved.
1747
1752
  #
1748
1753
  # <note markdown="1"> This parameter is only supported when the `type` parameter is set to
1749
- # `UNMANAGED`/
1754
+ # `UNMANAGED`.
1750
1755
  #
1751
1756
  # </note>
1752
1757
  # @return [Integer]
data/lib/aws-sdk-batch.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-batch/customizations'
48
48
  # @!group service
49
49
  module Aws::Batch
50
50
 
51
- GEM_VERSION = '1.57.0'
51
+ GEM_VERSION = '1.60.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.57.0
4
+ version: 1.60.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-03-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.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