aws-sdk-batch 1.102.0 → 1.104.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-batch/client.rb +33 -16
- data/lib/aws-sdk-batch/client_api.rb +2 -0
- data/lib/aws-sdk-batch/types.rb +63 -39
- data/lib/aws-sdk-batch.rb +1 -1
- data/sig/types.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f764f139f43e281a19f709d761ba0f0a5c3a3da6d0e9b0bf24e9131ca31ca59
|
4
|
+
data.tar.gz: 5fc7d65f0ff6a214e1378eaa0d9aeda7b1354e1c2dd43ceb2812554d1955c44c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ef4f0ebe5fdf3fac6541f988fcbfb553036dc304d4568743561c73d15957994e24a9b90a8f3a1204fbd5f0a812d74db112ae1a1bb36deddbebabf5f951d1d2d
|
7
|
+
data.tar.gz: c8f21f5339e919e849452b6d603d457fd45516493db89a2bf1a2f589076d5790ede2337caa5ec705d1dcecadb2765481a6bbf76124f2242853ca33702f8722de
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.104.0 (2024-11-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.103.0 (2024-10-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add `podNamespace` to `EksAttemptDetail` and `containerID` to `EksAttemptContainerDetail`.
|
13
|
+
|
4
14
|
1.102.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.104.0
|
data/lib/aws-sdk-batch/client.rb
CHANGED
@@ -472,7 +472,9 @@ module Aws::Batch
|
|
472
472
|
# @option params [required, String] :reason
|
473
473
|
# A message to attach to the job that explains the reason for canceling
|
474
474
|
# it. This message is returned by future DescribeJobs operations on the
|
475
|
-
# job.
|
475
|
+
# job. It is also recorded in the Batch activity logs.
|
476
|
+
#
|
477
|
+
# This parameter has as limit of 1024 characters.
|
476
478
|
#
|
477
479
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
478
480
|
#
|
@@ -913,16 +915,23 @@ module Aws::Batch
|
|
913
915
|
# finish.
|
914
916
|
#
|
915
917
|
# @option params [String] :scheduling_policy_arn
|
916
|
-
# The Amazon Resource Name (ARN) of the fair share scheduling policy.
|
917
|
-
#
|
918
|
-
#
|
919
|
-
#
|
920
|
-
#
|
921
|
-
#
|
922
|
-
# `aws:Partition:batch:Region:Account:scheduling-policy/Name `.
|
923
|
-
#
|
918
|
+
# The Amazon Resource Name (ARN) of the fair share scheduling policy.
|
919
|
+
# Job queues that don't have a scheduling policy are scheduled in a
|
920
|
+
# first-in, first-out (FIFO) model. After a job queue has a scheduling
|
921
|
+
# policy, it can be replaced but can't be removed.
|
922
|
+
#
|
923
|
+
# The format is
|
924
|
+
# `aws:Partition:batch:Region:Account:scheduling-policy/Name `.
|
925
|
+
#
|
926
|
+
# An example is
|
924
927
|
# `aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy`.
|
925
928
|
#
|
929
|
+
# A job queue without a scheduling policy is scheduled as a FIFO job
|
930
|
+
# queue and can't have a scheduling policy added. Jobs queues with a
|
931
|
+
# scheduling policy can have a maximum of 500 active fair share
|
932
|
+
# identifiers. When the limit has been reached, submissions of any jobs
|
933
|
+
# that add a new fair share identifier fail.
|
934
|
+
#
|
926
935
|
# @option params [required, Integer] :priority
|
927
936
|
# The priority of the job queue. Job queues with a higher priority (or a
|
928
937
|
# higher integer value for the `priority` parameter) are evaluated first
|
@@ -963,6 +972,8 @@ module Aws::Batch
|
|
963
972
|
# The set of actions that Batch performs on jobs that remain at the head
|
964
973
|
# of the job queue in the specified state longer than specified times.
|
965
974
|
# Batch will perform each action after `maxTimeSeconds` has passed.
|
975
|
+
# (**Note**: The minimum value for maxTimeSeconds is 600 (10 minutes)
|
976
|
+
# and its maximum value is 86,400 (24 hours).)
|
966
977
|
#
|
967
978
|
# @return [Types::CreateJobQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
968
979
|
#
|
@@ -1431,10 +1442,9 @@ module Aws::Batch
|
|
1431
1442
|
# @option params [Array<String>] :job_definitions
|
1432
1443
|
# A list of up to 100 job definitions. Each entry in the list can either
|
1433
1444
|
# be an ARN in the format
|
1434
|
-
# `arn:aws:batch
|
1435
|
-
# or a short version using the form
|
1436
|
-
#
|
1437
|
-
# with other parameters.
|
1445
|
+
# `arn:aws:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}`
|
1446
|
+
# or a short version using the form `${JobDefinitionName}:${Revision}`.
|
1447
|
+
# This parameter can't be used with other parameters.
|
1438
1448
|
#
|
1439
1449
|
# @option params [Integer] :max_results
|
1440
1450
|
# The maximum number of results returned by `DescribeJobDefinitions` in
|
@@ -2546,14 +2556,17 @@ module Aws::Batch
|
|
2546
2556
|
# resp.jobs[0].eks_attempts #=> Array
|
2547
2557
|
# resp.jobs[0].eks_attempts[0].containers #=> Array
|
2548
2558
|
# resp.jobs[0].eks_attempts[0].containers[0].name #=> String
|
2559
|
+
# resp.jobs[0].eks_attempts[0].containers[0].container_id #=> String
|
2549
2560
|
# resp.jobs[0].eks_attempts[0].containers[0].exit_code #=> Integer
|
2550
2561
|
# resp.jobs[0].eks_attempts[0].containers[0].reason #=> String
|
2551
2562
|
# resp.jobs[0].eks_attempts[0].init_containers #=> Array
|
2552
2563
|
# resp.jobs[0].eks_attempts[0].init_containers[0].name #=> String
|
2564
|
+
# resp.jobs[0].eks_attempts[0].init_containers[0].container_id #=> String
|
2553
2565
|
# resp.jobs[0].eks_attempts[0].init_containers[0].exit_code #=> Integer
|
2554
2566
|
# resp.jobs[0].eks_attempts[0].init_containers[0].reason #=> String
|
2555
2567
|
# resp.jobs[0].eks_attempts[0].eks_cluster_arn #=> String
|
2556
2568
|
# resp.jobs[0].eks_attempts[0].pod_name #=> String
|
2569
|
+
# resp.jobs[0].eks_attempts[0].pod_namespace #=> String
|
2557
2570
|
# resp.jobs[0].eks_attempts[0].node_name #=> String
|
2558
2571
|
# resp.jobs[0].eks_attempts[0].started_at #=> Integer
|
2559
2572
|
# resp.jobs[0].eks_attempts[0].stopped_at #=> Integer
|
@@ -2813,7 +2826,7 @@ module Aws::Batch
|
|
2813
2826
|
# the job definition that's used doesn't affect the sort order. When
|
2814
2827
|
# the `JOB_DEFINITION` filter is used and the ARN is used (which is in
|
2815
2828
|
# the form
|
2816
|
-
# `arn
|
2829
|
+
# `arn:${Partition}:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}`),
|
2817
2830
|
# the results include jobs that used the specified revision of the job
|
2818
2831
|
# definition. Asterisk (*) isn't supported when the ARN is used.
|
2819
2832
|
#
|
@@ -4480,7 +4493,9 @@ module Aws::Batch
|
|
4480
4493
|
# @option params [required, String] :reason
|
4481
4494
|
# A message to attach to the job that explains the reason for canceling
|
4482
4495
|
# it. This message is returned by future DescribeJobs operations on the
|
4483
|
-
# job.
|
4496
|
+
# job. It is also recorded in the Batch activity logs.
|
4497
|
+
#
|
4498
|
+
# This parameter has as limit of 1024 characters.
|
4484
4499
|
#
|
4485
4500
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4486
4501
|
#
|
@@ -4790,6 +4805,8 @@ module Aws::Batch
|
|
4790
4805
|
# The set of actions that Batch perform on jobs that remain at the head
|
4791
4806
|
# of the job queue in the specified state longer than specified times.
|
4792
4807
|
# Batch will perform each action after `maxTimeSeconds` has passed.
|
4808
|
+
# (**Note**: The minimum value for maxTimeSeconds is 600 (10 minutes)
|
4809
|
+
# and its maximum value is 86,400 (24 hours).)
|
4793
4810
|
#
|
4794
4811
|
# @return [Types::UpdateJobQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4795
4812
|
#
|
@@ -4902,7 +4919,7 @@ module Aws::Batch
|
|
4902
4919
|
tracer: tracer
|
4903
4920
|
)
|
4904
4921
|
context[:gem_name] = 'aws-sdk-batch'
|
4905
|
-
context[:gem_version] = '1.
|
4922
|
+
context[:gem_version] = '1.104.0'
|
4906
4923
|
Seahorse::Client::Request.new(handlers, context)
|
4907
4924
|
end
|
4908
4925
|
|
@@ -595,6 +595,7 @@ module Aws::Batch
|
|
595
595
|
EcsTaskProperties.struct_class = Types::EcsTaskProperties
|
596
596
|
|
597
597
|
EksAttemptContainerDetail.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
598
|
+
EksAttemptContainerDetail.add_member(:container_id, Shapes::ShapeRef.new(shape: String, location_name: "containerID"))
|
598
599
|
EksAttemptContainerDetail.add_member(:exit_code, Shapes::ShapeRef.new(shape: Integer, location_name: "exitCode"))
|
599
600
|
EksAttemptContainerDetail.add_member(:reason, Shapes::ShapeRef.new(shape: String, location_name: "reason"))
|
600
601
|
EksAttemptContainerDetail.struct_class = Types::EksAttemptContainerDetail
|
@@ -605,6 +606,7 @@ module Aws::Batch
|
|
605
606
|
EksAttemptDetail.add_member(:init_containers, Shapes::ShapeRef.new(shape: EksAttemptContainerDetails, location_name: "initContainers"))
|
606
607
|
EksAttemptDetail.add_member(:eks_cluster_arn, Shapes::ShapeRef.new(shape: String, location_name: "eksClusterArn"))
|
607
608
|
EksAttemptDetail.add_member(:pod_name, Shapes::ShapeRef.new(shape: String, location_name: "podName"))
|
609
|
+
EksAttemptDetail.add_member(:pod_namespace, Shapes::ShapeRef.new(shape: String, location_name: "podNamespace"))
|
608
610
|
EksAttemptDetail.add_member(:node_name, Shapes::ShapeRef.new(shape: String, location_name: "nodeName"))
|
609
611
|
EksAttemptDetail.add_member(:started_at, Shapes::ShapeRef.new(shape: Long, location_name: "startedAt"))
|
610
612
|
EksAttemptDetail.add_member(:stopped_at, Shapes::ShapeRef.new(shape: Long, location_name: "stoppedAt"))
|
data/lib/aws-sdk-batch/types.rb
CHANGED
@@ -234,8 +234,10 @@ module Aws::Batch
|
|
234
234
|
# @!attribute [rw] reason
|
235
235
|
# A message to attach to the job that explains the reason for
|
236
236
|
# canceling it. This message is returned by future DescribeJobs
|
237
|
-
# operations on the job.
|
238
|
-
#
|
237
|
+
# operations on the job. It is also recorded in the Batch activity
|
238
|
+
# logs.
|
239
|
+
#
|
240
|
+
# This parameter has as limit of 1024 characters.
|
239
241
|
# @return [String]
|
240
242
|
#
|
241
243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/CancelJobRequest AWS API Documentation
|
@@ -702,9 +704,9 @@ module Aws::Batch
|
|
702
704
|
# Key-value pair tags to be applied to Amazon EC2 resources that are
|
703
705
|
# launched in the compute environment. For Batch, these take the form
|
704
706
|
# of `"String1": "String2"`, where `String1` is the tag key and
|
705
|
-
# `String2` is the tag value-for example,
|
706
|
-
#
|
707
|
-
#
|
707
|
+
# `String2` is the tag value-for example, `{ "Name": "Batch Instance -
|
708
|
+
# C4OnDemand" }`. This is helpful for recognizing your Batch instances
|
709
|
+
# in the Amazon EC2 console. Updating these tags requires an
|
708
710
|
# infrastructure update to the compute environment. For more
|
709
711
|
# information, see [Updating compute environments][1] in the *Batch
|
710
712
|
# User Guide*. These tags aren't seen when using the Batch
|
@@ -1098,10 +1100,10 @@ module Aws::Batch
|
|
1098
1100
|
# Key-value pair tags to be applied to Amazon EC2 resources that are
|
1099
1101
|
# launched in the compute environment. For Batch, these take the form
|
1100
1102
|
# of `"String1": "String2"`, where `String1` is the tag key and
|
1101
|
-
# `String2` is the tag value-for example,
|
1102
|
-
#
|
1103
|
-
#
|
1104
|
-
#
|
1103
|
+
# `String2` is the tag value-for example, `{ "Name": "Batch Instance -
|
1104
|
+
# C4OnDemand" }`. This is helpful for recognizing your Batch instances
|
1105
|
+
# in the Amazon EC2 console. These tags aren't seen when using the
|
1106
|
+
# Batch `ListTagsForResource` API operation.
|
1105
1107
|
#
|
1106
1108
|
# When updating a compute environment, changing this setting requires
|
1107
1109
|
# an infrastructure update of the compute environment. For more
|
@@ -2273,14 +2275,21 @@ module Aws::Batch
|
|
2273
2275
|
#
|
2274
2276
|
# @!attribute [rw] scheduling_policy_arn
|
2275
2277
|
# The Amazon Resource Name (ARN) of the fair share scheduling policy.
|
2276
|
-
#
|
2277
|
-
#
|
2278
|
-
#
|
2279
|
-
#
|
2280
|
-
#
|
2281
|
-
# `aws:Partition:batch:Region:Account:scheduling-policy/Name `.
|
2282
|
-
#
|
2278
|
+
# Job queues that don't have a scheduling policy are scheduled in a
|
2279
|
+
# first-in, first-out (FIFO) model. After a job queue has a scheduling
|
2280
|
+
# policy, it can be replaced but can't be removed.
|
2281
|
+
#
|
2282
|
+
# The format is
|
2283
|
+
# `aws:Partition:batch:Region:Account:scheduling-policy/Name `.
|
2284
|
+
#
|
2285
|
+
# An example is
|
2283
2286
|
# `aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy`.
|
2287
|
+
#
|
2288
|
+
# A job queue without a scheduling policy is scheduled as a FIFO job
|
2289
|
+
# queue and can't have a scheduling policy added. Jobs queues with a
|
2290
|
+
# scheduling policy can have a maximum of 500 active fair share
|
2291
|
+
# identifiers. When the limit has been reached, submissions of any
|
2292
|
+
# jobs that add a new fair share identifier fail.
|
2284
2293
|
# @return [String]
|
2285
2294
|
#
|
2286
2295
|
# @!attribute [rw] priority
|
@@ -2328,7 +2337,8 @@ module Aws::Batch
|
|
2328
2337
|
# The set of actions that Batch performs on jobs that remain at the
|
2329
2338
|
# head of the job queue in the specified state longer than specified
|
2330
2339
|
# times. Batch will perform each action after `maxTimeSeconds` has
|
2331
|
-
# passed.
|
2340
|
+
# passed. (**Note**: The minimum value for maxTimeSeconds is 600 (10
|
2341
|
+
# minutes) and its maximum value is 86,400 (24 hours).)
|
2332
2342
|
# @return [Array<Types::JobStateTimeLimitAction>]
|
2333
2343
|
#
|
2334
2344
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/CreateJobQueueRequest AWS API Documentation
|
@@ -2564,10 +2574,10 @@ module Aws::Batch
|
|
2564
2574
|
# @!attribute [rw] job_definitions
|
2565
2575
|
# A list of up to 100 job definitions. Each entry in the list can
|
2566
2576
|
# either be an ARN in the format
|
2567
|
-
# `arn:aws:batch
|
2577
|
+
# `arn:aws:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}`
|
2568
2578
|
# or a short version using the form
|
2569
|
-
#
|
2570
|
-
#
|
2579
|
+
# `${JobDefinitionName}:${Revision}`. This parameter can't be used
|
2580
|
+
# with other parameters.
|
2571
2581
|
# @return [Array<String>]
|
2572
2582
|
#
|
2573
2583
|
# @!attribute [rw] max_results
|
@@ -3018,7 +3028,8 @@ module Aws::Batch
|
|
3018
3028
|
# An object that contains the properties for the Amazon ECS task
|
3019
3029
|
# definition of a job.
|
3020
3030
|
#
|
3021
|
-
# <note markdown="1"> This object is currently limited to one element.
|
3031
|
+
# <note markdown="1"> This object is currently limited to one task element. However, the
|
3032
|
+
# task element can run up to 10 containers.
|
3022
3033
|
#
|
3023
3034
|
# </note>
|
3024
3035
|
# @return [Array<Types::EcsTaskProperties>]
|
@@ -3296,6 +3307,10 @@ module Aws::Batch
|
|
3296
3307
|
# The name of a container.
|
3297
3308
|
# @return [String]
|
3298
3309
|
#
|
3310
|
+
# @!attribute [rw] container_id
|
3311
|
+
# The ID for the container.
|
3312
|
+
# @return [String]
|
3313
|
+
#
|
3299
3314
|
# @!attribute [rw] exit_code
|
3300
3315
|
# The exit code returned for the job attempt. A non-zero exit code is
|
3301
3316
|
# considered failed.
|
@@ -3310,6 +3325,7 @@ module Aws::Batch
|
|
3310
3325
|
#
|
3311
3326
|
class EksAttemptContainerDetail < Struct.new(
|
3312
3327
|
:name,
|
3328
|
+
:container_id,
|
3313
3329
|
:exit_code,
|
3314
3330
|
:reason)
|
3315
3331
|
SENSITIVE = []
|
@@ -3336,6 +3352,10 @@ module Aws::Batch
|
|
3336
3352
|
# The name of the pod for this job attempt.
|
3337
3353
|
# @return [String]
|
3338
3354
|
#
|
3355
|
+
# @!attribute [rw] pod_namespace
|
3356
|
+
# The namespace of the Amazon EKS cluster that the pod exists in.
|
3357
|
+
# @return [String]
|
3358
|
+
#
|
3339
3359
|
# @!attribute [rw] node_name
|
3340
3360
|
# The name of the node for this job attempt.
|
3341
3361
|
# @return [String]
|
@@ -3365,6 +3385,7 @@ module Aws::Batch
|
|
3365
3385
|
:init_containers,
|
3366
3386
|
:eks_cluster_arn,
|
3367
3387
|
:pod_name,
|
3388
|
+
:pod_namespace,
|
3368
3389
|
:node_name,
|
3369
3390
|
:started_at,
|
3370
3391
|
:stopped_at,
|
@@ -4133,6 +4154,10 @@ module Aws::Batch
|
|
4133
4154
|
#
|
4134
4155
|
# @!attribute [rw] containers
|
4135
4156
|
# The properties of the container that's used on the Amazon EKS pod.
|
4157
|
+
#
|
4158
|
+
# <note markdown="1"> This object is limited to 10 elements.
|
4159
|
+
#
|
4160
|
+
# </note>
|
4136
4161
|
# @return [Array<Types::EksContainer>]
|
4137
4162
|
#
|
4138
4163
|
# @!attribute [rw] init_containers
|
@@ -4143,7 +4168,7 @@ module Aws::Batch
|
|
4143
4168
|
# Kubernetes backend data store. For more information, see [Init
|
4144
4169
|
# Containers][1] in the *Kubernetes documentation*.
|
4145
4170
|
#
|
4146
|
-
# <note markdown="1"> This object is limited to 10 elements
|
4171
|
+
# <note markdown="1"> This object is limited to 10 elements.
|
4147
4172
|
#
|
4148
4173
|
# </note>
|
4149
4174
|
#
|
@@ -4325,18 +4350,14 @@ module Aws::Batch
|
|
4325
4350
|
# @return [Array<Types::EksContainerOverride>]
|
4326
4351
|
#
|
4327
4352
|
# @!attribute [rw] init_containers
|
4328
|
-
# The overrides for the
|
4329
|
-
# These containers run before application containers, always runs
|
4330
|
-
# completion, and must complete successfully before the next
|
4331
|
-
# starts. These containers are registered with the Amazon
|
4332
|
-
# Connector agent and persists the registration information in the
|
4353
|
+
# The overrides for the `initContainers` defined in the Amazon EKS
|
4354
|
+
# pod. These containers run before application containers, always runs
|
4355
|
+
# to completion, and must complete successfully before the next
|
4356
|
+
# container starts. These containers are registered with the Amazon
|
4357
|
+
# EKS Connector agent and persists the registration information in the
|
4333
4358
|
# Kubernetes backend data store. For more information, see [Init
|
4334
4359
|
# Containers][1] in the *Kubernetes documentation*.
|
4335
4360
|
#
|
4336
|
-
# <note markdown="1"> This object is limited to 10 elements
|
4337
|
-
#
|
4338
|
-
# </note>
|
4339
|
-
#
|
4340
4361
|
#
|
4341
4362
|
#
|
4342
4363
|
# [1]: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
|
@@ -5695,7 +5716,7 @@ module Aws::Batch
|
|
5695
5716
|
# version of the job definition that's used doesn't affect the
|
5696
5717
|
# sort order. When the `JOB_DEFINITION` filter is used and the ARN
|
5697
5718
|
# is used (which is in the form
|
5698
|
-
# `arn
|
5719
|
+
# `arn:${Partition}:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}`),
|
5699
5720
|
# the results include jobs that used the specified revision of the
|
5700
5721
|
# job definition. Asterisk (*) isn't supported when the ARN is
|
5701
5722
|
# used.
|
@@ -7269,7 +7290,7 @@ module Aws::Batch
|
|
7269
7290
|
# greater on your container instance. To check the Docker Remote API
|
7270
7291
|
# version on your container instance, log in to your container
|
7271
7292
|
# instance and run the following command: sudo docker version
|
7272
|
-
# `--format '
|
7293
|
+
# `--format '{{.Server.APIVersion}}'`
|
7273
7294
|
#
|
7274
7295
|
# <note markdown="1"> The Amazon ECS container agent running on a container instance must
|
7275
7296
|
# register the logging drivers available on that instance with the
|
@@ -7385,7 +7406,7 @@ module Aws::Batch
|
|
7385
7406
|
# greater on your container instance. To check the Docker Remote API
|
7386
7407
|
# version on your container instance, log in to your container
|
7387
7408
|
# instance and run the following command: sudo docker version
|
7388
|
-
# `--format '
|
7409
|
+
# `--format '{{.Server.APIVersion}}'`
|
7389
7410
|
#
|
7390
7411
|
# <note markdown="1"> This parameter is not supported for Windows containers.
|
7391
7412
|
#
|
@@ -7649,7 +7670,7 @@ module Aws::Batch
|
|
7649
7670
|
# greater on your container instance. To check the Docker Remote API
|
7650
7671
|
# version on your container instance, log in to your container
|
7651
7672
|
# instance and run the following command: sudo docker version
|
7652
|
-
# `--format '
|
7673
|
+
# `--format '{{.Server.APIVersion}}'`
|
7653
7674
|
#
|
7654
7675
|
# <note markdown="1"> The Amazon ECS container agent running on a container instance must
|
7655
7676
|
# register the logging drivers available on that instance with the
|
@@ -7766,7 +7787,7 @@ module Aws::Batch
|
|
7766
7787
|
# greater on your container instance. To check the Docker Remote API
|
7767
7788
|
# version on your container instance, log in to your container
|
7768
7789
|
# instance and run the following command: sudo docker version
|
7769
|
-
# `--format '
|
7790
|
+
# `--format '{{.Server.APIVersion}}'`
|
7770
7791
|
#
|
7771
7792
|
# <note markdown="1"> This parameter is not supported for Windows containers.
|
7772
7793
|
#
|
@@ -7856,8 +7877,10 @@ module Aws::Batch
|
|
7856
7877
|
# @!attribute [rw] reason
|
7857
7878
|
# A message to attach to the job that explains the reason for
|
7858
7879
|
# canceling it. This message is returned by future DescribeJobs
|
7859
|
-
# operations on the job.
|
7860
|
-
#
|
7880
|
+
# operations on the job. It is also recorded in the Batch activity
|
7881
|
+
# logs.
|
7882
|
+
#
|
7883
|
+
# This parameter has as limit of 1024 characters.
|
7861
7884
|
# @return [String]
|
7862
7885
|
#
|
7863
7886
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/TerminateJobRequest AWS API Documentation
|
@@ -8174,7 +8197,8 @@ module Aws::Batch
|
|
8174
8197
|
# The set of actions that Batch perform on jobs that remain at the
|
8175
8198
|
# head of the job queue in the specified state longer than specified
|
8176
8199
|
# times. Batch will perform each action after `maxTimeSeconds` has
|
8177
|
-
# passed.
|
8200
|
+
# passed. (**Note**: The minimum value for maxTimeSeconds is 600 (10
|
8201
|
+
# minutes) and its maximum value is 86,400 (24 hours).)
|
8178
8202
|
# @return [Array<Types::JobStateTimeLimitAction>]
|
8179
8203
|
#
|
8180
8204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/UpdateJobQueueRequest AWS API Documentation
|
data/lib/aws-sdk-batch.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -437,6 +437,7 @@ module Aws::Batch
|
|
437
437
|
|
438
438
|
class EksAttemptContainerDetail
|
439
439
|
attr_accessor name: ::String
|
440
|
+
attr_accessor container_id: ::String
|
440
441
|
attr_accessor exit_code: ::Integer
|
441
442
|
attr_accessor reason: ::String
|
442
443
|
SENSITIVE: []
|
@@ -447,6 +448,7 @@ module Aws::Batch
|
|
447
448
|
attr_accessor init_containers: ::Array[Types::EksAttemptContainerDetail]
|
448
449
|
attr_accessor eks_cluster_arn: ::String
|
449
450
|
attr_accessor pod_name: ::String
|
451
|
+
attr_accessor pod_namespace: ::String
|
450
452
|
attr_accessor node_name: ::String
|
451
453
|
attr_accessor started_at: ::Integer
|
452
454
|
attr_accessor stopped_at: ::Integer
|
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.
|
4
|
+
version: 1.104.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: 2024-
|
11
|
+
date: 2024-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|