aws-sdk-batch 1.64.0 → 1.65.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: '08cd854270ec7755bcd81760d2d4f53526a6415013fa5a10e5a3482d160608b4'
4
- data.tar.gz: 5c38d9a2dec42420ab6444d742b18ae96d7cca963df864530923b82860fa9da2
3
+ metadata.gz: 7da1852aa0e1903294d0b215ac19ee6b39a8566af089e10f4472f38590d7b622
4
+ data.tar.gz: 70afc0e1ddc6b622ca9df92b79475d131144165d6f1198c00be5b6902da8ccf9
5
5
  SHA512:
6
- metadata.gz: c2ef3504542d90417009bf330bbc179ccf59fbb3f9684bd8029db7bddb6b38cd1fb8967227f5d252c31f389613a5ff677d1b28caa071a370d283e3bd31481263
7
- data.tar.gz: d62046e44807b19d8c651c05ddb674add9bad3f2388e18cb83ec17a533ab831fbcd4b7e06818230a43b6a0e4b2225851a65d99ae4da687c48c9fd32a11dd2246
6
+ metadata.gz: 324fd0e983baab585b400709437b9492100b8ba501c5fbb8909189de02b03b29d08cb3280e97668f2a47d00b437dd9bf3bee0726c447af7a32ee63b4f5feed0d
7
+ data.tar.gz: f4d1e64b321777a14be3dd892eebc376270a0eb133283325ff06f9a720e41e20a0757f3baede679d9382f013875e0da789e35433e99d2516758055c7163f37e9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.65.0 (2022-11-16)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates related to Batch on EKS
8
+
4
9
  1.64.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.65.0
@@ -446,6 +446,11 @@ module Aws::Batch
446
446
  # [Launching an Amazon ECS container instance][3] in the *Amazon Elastic
447
447
  # Container Service Developer Guide*.
448
448
  #
449
+ # <note markdown="1"> To create a compute environment that uses EKS resources, the caller
450
+ # must have permissions to call `eks:DescribeCluster`.
451
+ #
452
+ # </note>
453
+ #
449
454
  # <note markdown="1"> Batch doesn't automatically upgrade the AMIs in a compute environment
450
455
  # after it's created. For example, it also doesn't update the AMIs in
451
456
  # your compute environment when a newer version of the Amazon ECS
@@ -3587,7 +3592,7 @@ module Aws::Batch
3587
3592
  params: params,
3588
3593
  config: config)
3589
3594
  context[:gem_name] = 'aws-sdk-batch'
3590
- context[:gem_version] = '1.64.0'
3595
+ context[:gem_version] = '1.65.0'
3591
3596
  Seahorse::Client::Request.new(handlers, context)
3592
3597
  end
3593
3598
 
@@ -858,6 +858,12 @@ module Aws::Batch
858
858
  # resources. Don't specify it.
859
859
  #
860
860
  # </note>
861
+ #
862
+ # <note markdown="1"> Batch doesn't support changing the desired number of vCPUs of an
863
+ # existing compute environment. Don't specify this parameter for
864
+ # compute environments using Amazon EKS clusters.
865
+ #
866
+ # </note>
861
867
  # @return [Integer]
862
868
  #
863
869
  # @!attribute [rw] subnets
@@ -4138,7 +4144,7 @@ module Aws::Batch
4138
4144
  # documentation*.
4139
4145
  #
4140
4146
  # Valid values: `Default` \| `ClusterFirst` \|
4141
- # `ClusterFirstWithHostNet` \| `None`
4147
+ # `ClusterFirstWithHostNet`
4142
4148
  #
4143
4149
  #
4144
4150
  #
@@ -4202,16 +4208,24 @@ module Aws::Batch
4202
4208
  # the `hostNetwork` parameter is not specified, the default is
4203
4209
  # `ClusterFirstWithHostNet`. `ClusterFirst` indicates that any DNS
4204
4210
  # query that does not match the configured cluster domain suffix is
4205
- # forwarded to the upstream nameserver inherited from the node. For
4206
- # more information, see [Pod's DNS policy][1] in the *Kubernetes
4207
- # documentation*.
4211
+ # forwarded to the upstream nameserver inherited from the node. If no
4212
+ # value was specified for `dnsPolicy` in the
4213
+ # [RegisterJobDefinition][1] API operation, then no value will be
4214
+ # returned for `dnsPolicy` by either of [DescribeJobDefinitions][2] or
4215
+ # [DescribeJobs][3] API operations. The pod spec setting will contain
4216
+ # either `ClusterFirst` or `ClusterFirstWithHostNet`, depending on the
4217
+ # value of the `hostNetwork` parameter. For more information, see
4218
+ # [Pod's DNS policy][4] in the *Kubernetes documentation*.
4208
4219
  #
4209
4220
  # Valid values: `Default` \| `ClusterFirst` \|
4210
- # `ClusterFirstWithHostNet` \| `None`
4221
+ # `ClusterFirstWithHostNet`
4211
4222
  #
4212
4223
  #
4213
4224
  #
4214
- # [1]: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
4225
+ # [1]: https://docs.aws.amazon.com/batch/latest/APIReference/API_RegisterJobDefinition.html
4226
+ # [2]: https://docs.aws.amazon.com/batch/latest/APIReference/API_DescribeJobDefinitions.html
4227
+ # [3]: https://docs.aws.amazon.com/batch/latest/APIReference/API_DescribeJobs.html
4228
+ # [4]: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy
4215
4229
  # @return [String]
4216
4230
  #
4217
4231
  # @!attribute [rw] containers
@@ -7046,16 +7060,36 @@ module Aws::Batch
7046
7060
  #
7047
7061
  # value = 8192
7048
7062
  #
7049
- # : `VCPU` = 1, 2, or 4
7063
+ # : `VCPU` = 1, 2, 4, or 8
7050
7064
  #
7051
- # value = 9216, 10240, 11264, 12288, 13312, 14336, 15360, or 16384
7065
+ # value = 9216, 10240, 11264, 12288, 13312, 14336, or 15360
7052
7066
  #
7053
7067
  # : `VCPU` = 2 or 4
7054
7068
  #
7055
- # value = 17408, 18432, 19456, 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, or 30720
7069
+ # value = 16384
7070
+ #
7071
+ # : `VCPU` = 2, 4, or 8
7072
+ #
7073
+ # value = 17408, 18432, 19456, 21504, 22528, 23552, 25600, 26624, 27648, 29696, or 30720
7056
7074
  #
7057
7075
  # : `VCPU` = 4
7058
7076
  #
7077
+ # value = 20480, 24576, or 28672
7078
+ #
7079
+ # : `VCPU` = 4 or 8
7080
+ #
7081
+ # value = 36864, 45056, 53248, or 61440
7082
+ #
7083
+ # : `VCPU` = 8
7084
+ #
7085
+ # value = 32768, 40960, 49152, or 57344
7086
+ #
7087
+ # : `VCPU` = 8 or 16
7088
+ #
7089
+ # value = 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880
7090
+ #
7091
+ # : `VCPU` = 16
7092
+ #
7059
7093
  # type="VCPU"
7060
7094
  #
7061
7095
  # : The number of vCPUs reserved for the container. This parameter
@@ -7066,10 +7100,14 @@ module Aws::Batch
7066
7100
  # but can be specified in several places; it must be specified for
7067
7101
  # each node at least once.
7068
7102
  #
7103
+ # The default for the Fargate On-Demand vCPU resource count quota is
7104
+ # 6 vCPUs. For more information about Fargate quotas, see [Fargate
7105
+ # quotas][5] in the *Amazon Web Services General Reference*.
7106
+ #
7069
7107
  # For jobs that are running on Fargate resources, then `value` must
7070
7108
  # match one of the supported values and the `MEMORY` values must be
7071
7109
  # one of the values supported for that `VCPU` value. The supported
7072
- # values are 0.25, 0.5, 1, 2, and 4
7110
+ # values are 0.25, 0.5, 1, 2, 4, 8, and 16
7073
7111
  #
7074
7112
  # value = 0.25
7075
7113
  #
@@ -7094,12 +7132,23 @@ module Aws::Batch
7094
7132
  # 16384, 17408, 18432, 19456, 20480, 21504, 22528, 23552, 24576,
7095
7133
  # 25600, 26624, 27648, 28672, 29696, or 30720
7096
7134
  #
7135
+ # value = 8
7136
+ #
7137
+ # : `MEMORY` = 16384, 20480, 24576, 28672, 32768, 36864, 40960,
7138
+ # 45056, 49152, 53248, 57344, or 61440
7139
+ #
7140
+ # value = 16
7141
+ #
7142
+ # : `MEMORY` = 32768, 40960, 49152, 57344, 65536, 73728, 81920,
7143
+ # 90112, 98304, 106496, 114688, or 122880
7144
+ #
7097
7145
  #
7098
7146
  #
7099
7147
  # [1]: https://docs.docker.com/engine/api/v1.23/#create-a-container
7100
7148
  # [2]: https://docs.docker.com/engine/api/v1.23/
7101
7149
  # [3]: https://docs.docker.com/engine/reference/run/
7102
7150
  # [4]: https://docs.aws.amazon.com/batch/latest/userguide/memory-management.html
7151
+ # [5]: https://docs.aws.amazon.com/general/latest/gr/ecs-service.html#service-quotas-fargate
7103
7152
  # @return [String]
7104
7153
  #
7105
7154
  # @!attribute [rw] type
@@ -8082,11 +8131,11 @@ module Aws::Batch
8082
8131
 
8083
8132
  # Specifies the infrastructure update policy for the compute
8084
8133
  # environment. For more information about infrastructure updates, see
8085
- # [Infrastructure updates][1] in the *Batch User Guide*.
8134
+ # [Updating compute environments][1] in the *Batch User Guide*.
8086
8135
  #
8087
8136
  #
8088
8137
  #
8089
- # [1]: https://docs.aws.amazon.com/batch/latest/userguide/infrastructure-updates.html
8138
+ # [1]: https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html
8090
8139
  #
8091
8140
  # @note When making an API call, you may pass UpdatePolicy
8092
8141
  # data as a hash:
data/lib/aws-sdk-batch.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-batch/customizations'
52
52
  # @!group service
53
53
  module Aws::Batch
54
54
 
55
- GEM_VERSION = '1.64.0'
55
+ GEM_VERSION = '1.65.0'
56
56
 
57
57
  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.64.0
4
+ version: 1.65.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core