@aws-sdk/client-batch 3.980.0 → 3.982.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.
package/dist-cjs/index.js CHANGED
@@ -671,6 +671,7 @@ const _sRI = "serviceResourceId";
671
671
  const _sRP = "serviceRequestPayload";
672
672
  const _sRe = "serviceRole";
673
673
  const _sS = "statusSummary";
674
+ const _sSLUA = "statusSummaryLastUpdatedAt";
674
675
  const _sV = "sourceVolume";
675
676
  const _se = "secrets";
676
677
  const _sec = "secret";
@@ -718,13 +719,13 @@ var ArrayProperties$ = [3, n0, _AP,
718
719
  ];
719
720
  var ArrayPropertiesDetail$ = [3, n0, _APD,
720
721
  0,
721
- [_sS, _s, _i],
722
- [128 | 1, 1, 1]
722
+ [_sS, _sSLUA, _s, _i],
723
+ [128 | 1, 1, 1, 1]
723
724
  ];
724
725
  var ArrayPropertiesSummary$ = [3, n0, _APS,
725
726
  0,
726
- [_s, _i],
727
- [1, 1]
727
+ [_s, _i, _sS, _sSLUA],
728
+ [1, 1, 128 | 1, 1]
728
729
  ];
729
730
  var AttemptContainerDetail$ = [3, n0, _ACD,
730
731
  0,
@@ -527,6 +527,7 @@ const _sRI = "serviceResourceId";
527
527
  const _sRP = "serviceRequestPayload";
528
528
  const _sRe = "serviceRole";
529
529
  const _sS = "statusSummary";
530
+ const _sSLUA = "statusSummaryLastUpdatedAt";
530
531
  const _sV = "sourceVolume";
531
532
  const _se = "secrets";
532
533
  const _sec = "secret";
@@ -577,13 +578,13 @@ export var ArrayProperties$ = [3, n0, _AP,
577
578
  ];
578
579
  export var ArrayPropertiesDetail$ = [3, n0, _APD,
579
580
  0,
580
- [_sS, _s, _i],
581
- [128 | 1, 1, 1]
581
+ [_sS, _sSLUA, _s, _i],
582
+ [128 | 1, 1, 1, 1]
582
583
  ];
583
584
  export var ArrayPropertiesSummary$ = [3, n0, _APS,
584
585
  0,
585
- [_s, _i],
586
- [1, 1]
586
+ [_s, _i, _sS, _sSLUA],
587
+ [1, 1, 128 | 1, 1]
587
588
  ];
588
589
  export var AttemptContainerDetail$ = [3, n0, _ACD,
589
590
  0,
@@ -541,6 +541,7 @@ declare const DescribeJobsCommand_base: {
541
541
  * // statusSummary: { // ArrayJobStatusSummary
542
542
  * // "<keys>": Number("int"),
543
543
  * // },
544
+ * // statusSummaryLastUpdatedAt: Number("long"),
544
545
  * // size: Number("int"),
545
546
  * // index: Number("int"),
546
547
  * // },
@@ -86,6 +86,10 @@ declare const ListJobsCommand_base: {
86
86
  * // arrayProperties: { // ArrayPropertiesSummary
87
87
  * // size: Number("int"),
88
88
  * // index: Number("int"),
89
+ * // statusSummary: { // ArrayJobStatusSummary
90
+ * // "<keys>": Number("int"),
91
+ * // },
92
+ * // statusSummaryLastUpdatedAt: Number("long"),
89
93
  * // },
90
94
  * // nodeProperties: { // NodePropertiesSummary
91
95
  * // isMainNode: true || false,
@@ -21,6 +21,11 @@ export interface ArrayPropertiesDetail {
21
21
  * @public
22
22
  */
23
23
  statusSummary?: Record<string, number> | undefined;
24
+ /**
25
+ * <p>The Unix timestamp (in milliseconds) for when the <code>statusSummary</code> was last updated.</p>
26
+ * @public
27
+ */
28
+ statusSummaryLastUpdatedAt?: number | undefined;
24
29
  /**
25
30
  * <p>The size of the array job. This parameter is returned for parent array jobs.</p>
26
31
  * @public
@@ -49,6 +54,17 @@ export interface ArrayPropertiesSummary {
49
54
  * @public
50
55
  */
51
56
  index?: number | undefined;
57
+ /**
58
+ * <p>A summary of the number of array job children in each available job status. This parameter
59
+ * is returned for parent array jobs.</p>
60
+ * @public
61
+ */
62
+ statusSummary?: Record<string, number> | undefined;
63
+ /**
64
+ * <p>The Unix timestamp (in milliseconds) for when the <code>statusSummary</code> was last updated.</p>
65
+ * @public
66
+ */
67
+ statusSummaryLastUpdatedAt?: number | undefined;
52
68
  }
53
69
  /**
54
70
  * <p>An object that represents the elastic network interface for a multi-node parallel job
@@ -5981,6 +5997,9 @@ export interface ListJobsRequest {
5981
5997
  * parameter is specified, the <code>jobStatus</code> parameter is ignored and jobs with any
5982
5998
  * status are returned. If you don't specify a status, only <code>RUNNING</code> jobs are
5983
5999
  * returned.</p>
6000
+ * <note>
6001
+ * <p>Array job parents are updated to <code>PENDING</code> when any child job is updated to <code>RUNNABLE</code> and remain in <code>PENDING</code> status while child jobs are running. To view these jobs, filter by <code>PENDING</code> status until all child jobs reach a terminal state.</p>
6002
+ * </note>
5984
6003
  * @public
5985
6004
  */
5986
6005
  jobStatus?: JobStatus | undefined;
@@ -37,12 +37,15 @@ export interface ArrayProperties {
37
37
  }
38
38
  export interface ArrayPropertiesDetail {
39
39
  statusSummary?: Record<string, number> | undefined;
40
+ statusSummaryLastUpdatedAt?: number | undefined;
40
41
  size?: number | undefined;
41
42
  index?: number | undefined;
42
43
  }
43
44
  export interface ArrayPropertiesSummary {
44
45
  size?: number | undefined;
45
46
  index?: number | undefined;
47
+ statusSummary?: Record<string, number> | undefined;
48
+ statusSummaryLastUpdatedAt?: number | undefined;
46
49
  }
47
50
  export interface NetworkInterface {
48
51
  attachmentId?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-batch",
3
3
  "description": "AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native",
4
- "version": "3.980.0",
4
+ "version": "3.982.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-batch",
@@ -21,17 +21,17 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.5",
25
- "@aws-sdk/credential-provider-node": "^3.972.4",
24
+ "@aws-sdk/core": "^3.973.6",
25
+ "@aws-sdk/credential-provider-node": "^3.972.5",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.3",
27
27
  "@aws-sdk/middleware-logger": "^3.972.3",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.3",
29
- "@aws-sdk/middleware-user-agent": "^3.972.5",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.6",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.3",
31
31
  "@aws-sdk/types": "^3.973.1",
32
- "@aws-sdk/util-endpoints": "3.980.0",
32
+ "@aws-sdk/util-endpoints": "3.982.0",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.3",
34
- "@aws-sdk/util-user-agent-node": "^3.972.3",
34
+ "@aws-sdk/util-user-agent-node": "^3.972.4",
35
35
  "@smithy/config-resolver": "^4.4.6",
36
36
  "@smithy/core": "^3.22.0",
37
37
  "@smithy/fetch-http-handler": "^5.3.9",