aws-sdk-batch 1.132.0 → 1.133.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78c3877e4589317ce96dd25cab71458c20a9c431bedc4e3791ccc6d7a10266cd
4
- data.tar.gz: bec006d029e27e00a1c1ca8c7886fd4326754ae728f9c5450bf3f56ed30123f2
3
+ metadata.gz: '08628b53a5256cd5d36529ef12d2d77d658a4dd1f10c86592d42ed4973b37983'
4
+ data.tar.gz: a4508b0eeb1c20d0b2fd05fee3b11d90321fb2c87d12f95435db6b5c82558237
5
5
  SHA512:
6
- metadata.gz: ed915fe39ed0960e5381c7051cd549335d5ef552c5a52178cb6f1626b09f09df4ba83ecedf66d7177f7743542f0d1f1fcafe5c511c11a9ad04e6ba1678f9634e
7
- data.tar.gz: 5adef80d5712a5dd5678781e0135aecd0232c669678762694a9710a5a19aa324213b98280636c4895e31b997ebb306f2d22a5a2f9986d54ec23dde2b0dab2510
6
+ metadata.gz: f7cda5f5afb8b0c5f36938c222a13757526d2c4584604830d09073151141cf8162f5d62b1cfa8dbaaddb084720d8a5d43fd198445e7b47bb452e4583ead22a8b
7
+ data.tar.gz: 5e873ec2d65a2c4d372d6c27196d0026d876aa6e0fb1b9d3002e8c291219e5171b5d56f9806ca8ce04e5101990c9d8a1f322b1a1162cb7d30d8de7f3fdb6c760
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.133.0 (2026-02-03)
5
+ ------------------
6
+
7
+ * Feature - AWS Batch Array Job Visibility feature support. Includes new statusSummaryLastUpdatedAt for array job parent DescribeJobs responses for the last time the statusSummary was updated. Includes both statusSummary and statusSummaryLastUpdatedAt in ListJobs responses for array job parents.
8
+
4
9
  1.132.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.132.0
1
+ 1.133.0
@@ -2806,6 +2806,7 @@ module Aws::Batch
2806
2806
  # resp.jobs[0].node_properties.node_range_properties[0].consumable_resource_properties.consumable_resource_list[0].quantity #=> Integer
2807
2807
  # resp.jobs[0].array_properties.status_summary #=> Hash
2808
2808
  # resp.jobs[0].array_properties.status_summary["String"] #=> Integer
2809
+ # resp.jobs[0].array_properties.status_summary_last_updated_at #=> Integer
2809
2810
  # resp.jobs[0].array_properties.size #=> Integer
2810
2811
  # resp.jobs[0].array_properties.index #=> Integer
2811
2812
  # resp.jobs[0].timeout.attempt_duration_seconds #=> Integer
@@ -3357,6 +3358,13 @@ module Aws::Batch
3357
3358
  # and jobs with any status are returned. If you don't specify a status,
3358
3359
  # only `RUNNING` jobs are returned.
3359
3360
  #
3361
+ # <note markdown="1"> Array job parents are updated to `PENDING` when any child job is
3362
+ # updated to `RUNNABLE` and remain in `PENDING` status while child jobs
3363
+ # are running. To view these jobs, filter by `PENDING` status until all
3364
+ # child jobs reach a terminal state.
3365
+ #
3366
+ # </note>
3367
+ #
3360
3368
  # @option params [Integer] :max_results
3361
3369
  # The maximum number of results returned by `ListJobs` in a paginated
3362
3370
  # output. When this parameter is used, `ListJobs` returns up to
@@ -3514,6 +3522,9 @@ module Aws::Batch
3514
3522
  # resp.job_summary_list[0].container.reason #=> String
3515
3523
  # resp.job_summary_list[0].array_properties.size #=> Integer
3516
3524
  # resp.job_summary_list[0].array_properties.index #=> Integer
3525
+ # resp.job_summary_list[0].array_properties.status_summary #=> Hash
3526
+ # resp.job_summary_list[0].array_properties.status_summary["String"] #=> Integer
3527
+ # resp.job_summary_list[0].array_properties.status_summary_last_updated_at #=> Integer
3517
3528
  # resp.job_summary_list[0].node_properties.is_main_node #=> Boolean
3518
3529
  # resp.job_summary_list[0].node_properties.num_nodes #=> Integer
3519
3530
  # resp.job_summary_list[0].node_properties.node_index #=> Integer
@@ -6130,7 +6141,7 @@ module Aws::Batch
6130
6141
  tracer: tracer
6131
6142
  )
6132
6143
  context[:gem_name] = 'aws-sdk-batch'
6133
- context[:gem_version] = '1.132.0'
6144
+ context[:gem_version] = '1.133.0'
6134
6145
  Seahorse::Client::Request.new(handlers, context)
6135
6146
  end
6136
6147
 
@@ -326,12 +326,15 @@ module Aws::Batch
326
326
  ArrayProperties.struct_class = Types::ArrayProperties
327
327
 
328
328
  ArrayPropertiesDetail.add_member(:status_summary, Shapes::ShapeRef.new(shape: ArrayJobStatusSummary, location_name: "statusSummary"))
329
+ ArrayPropertiesDetail.add_member(:status_summary_last_updated_at, Shapes::ShapeRef.new(shape: Long, location_name: "statusSummaryLastUpdatedAt"))
329
330
  ArrayPropertiesDetail.add_member(:size, Shapes::ShapeRef.new(shape: Integer, location_name: "size"))
330
331
  ArrayPropertiesDetail.add_member(:index, Shapes::ShapeRef.new(shape: Integer, location_name: "index"))
331
332
  ArrayPropertiesDetail.struct_class = Types::ArrayPropertiesDetail
332
333
 
333
334
  ArrayPropertiesSummary.add_member(:size, Shapes::ShapeRef.new(shape: Integer, location_name: "size"))
334
335
  ArrayPropertiesSummary.add_member(:index, Shapes::ShapeRef.new(shape: Integer, location_name: "index"))
336
+ ArrayPropertiesSummary.add_member(:status_summary, Shapes::ShapeRef.new(shape: ArrayJobStatusSummary, location_name: "statusSummary"))
337
+ ArrayPropertiesSummary.add_member(:status_summary_last_updated_at, Shapes::ShapeRef.new(shape: Long, location_name: "statusSummaryLastUpdatedAt"))
335
338
  ArrayPropertiesSummary.struct_class = Types::ArrayPropertiesSummary
336
339
 
337
340
  AttemptContainerDetail.add_member(:container_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "containerInstanceArn"))
@@ -31,6 +31,11 @@ module Aws::Batch
31
31
  # status. This parameter is returned for parent array jobs.
32
32
  # @return [Hash<String,Integer>]
33
33
  #
34
+ # @!attribute [rw] status_summary_last_updated_at
35
+ # The Unix timestamp (in milliseconds) for when the `statusSummary`
36
+ # was last updated.
37
+ # @return [Integer]
38
+ #
34
39
  # @!attribute [rw] size
35
40
  # The size of the array job. This parameter is returned for parent
36
41
  # array jobs.
@@ -45,6 +50,7 @@ module Aws::Batch
45
50
  #
46
51
  class ArrayPropertiesDetail < Struct.new(
47
52
  :status_summary,
53
+ :status_summary_last_updated_at,
48
54
  :size,
49
55
  :index)
50
56
  SENSITIVE = []
@@ -63,11 +69,23 @@ module Aws::Batch
63
69
  # This parameter is returned for children of array jobs.
64
70
  # @return [Integer]
65
71
  #
72
+ # @!attribute [rw] status_summary
73
+ # A summary of the number of array job children in each available job
74
+ # status. This parameter is returned for parent array jobs.
75
+ # @return [Hash<String,Integer>]
76
+ #
77
+ # @!attribute [rw] status_summary_last_updated_at
78
+ # The Unix timestamp (in milliseconds) for when the `statusSummary`
79
+ # was last updated.
80
+ # @return [Integer]
81
+ #
66
82
  # @see http://docs.aws.amazon.com/goto/WebAPI/batch-2016-08-10/ArrayPropertiesSummary AWS API Documentation
67
83
  #
68
84
  class ArrayPropertiesSummary < Struct.new(
69
85
  :size,
70
- :index)
86
+ :index,
87
+ :status_summary,
88
+ :status_summary_last_updated_at)
71
89
  SENSITIVE = []
72
90
  include Aws::Structure
73
91
  end
@@ -6960,6 +6978,13 @@ module Aws::Batch
6960
6978
  # `filters` parameter is specified, the `jobStatus` parameter is
6961
6979
  # ignored and jobs with any status are returned. If you don't specify
6962
6980
  # a status, only `RUNNING` jobs are returned.
6981
+ #
6982
+ # <note markdown="1"> Array job parents are updated to `PENDING` when any child job is
6983
+ # updated to `RUNNABLE` and remain in `PENDING` status while child
6984
+ # jobs are running. To view these jobs, filter by `PENDING` status
6985
+ # until all child jobs reach a terminal state.
6986
+ #
6987
+ # </note>
6963
6988
  # @return [String]
6964
6989
  #
6965
6990
  # @!attribute [rw] max_results
data/lib/aws-sdk-batch.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Batch
54
54
  autoload :EndpointProvider, 'aws-sdk-batch/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-batch/endpoints'
56
56
 
57
- GEM_VERSION = '1.132.0'
57
+ GEM_VERSION = '1.133.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws::Batch
15
15
 
16
16
  class ArrayPropertiesDetail
17
17
  attr_accessor status_summary: ::Hash[::String, ::Integer]
18
+ attr_accessor status_summary_last_updated_at: ::Integer
18
19
  attr_accessor size: ::Integer
19
20
  attr_accessor index: ::Integer
20
21
  SENSITIVE: []
@@ -23,6 +24,8 @@ module Aws::Batch
23
24
  class ArrayPropertiesSummary
24
25
  attr_accessor size: ::Integer
25
26
  attr_accessor index: ::Integer
27
+ attr_accessor status_summary: ::Hash[::String, ::Integer]
28
+ attr_accessor status_summary_last_updated_at: ::Integer
26
29
  SENSITIVE: []
27
30
  end
28
31
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-batch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.132.0
4
+ version: 1.133.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services