@aws-sdk/client-batch 3.1129.0 → 3.1131.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/README.md +21 -0
- package/dist-cjs/index.js +123 -14
- package/dist-es/Batch.js +6 -0
- package/dist-es/commands/CancelJobsCommand.js +4 -0
- package/dist-es/commands/TerminateJobsCommand.js +4 -0
- package/dist-es/commands/TerminateServiceJobsCommand.js +4 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +95 -13
- package/dist-types/Batch.d.ts +21 -0
- package/dist-types/BatchClient.d.ts +5 -2
- package/dist-types/commands/CancelJobCommand.d.ts +6 -6
- package/dist-types/commands/CancelJobsCommand.d.ts +138 -0
- package/dist-types/commands/ListJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListServiceJobsCommand.d.ts +1 -0
- package/dist-types/commands/TerminateJobsCommand.d.ts +128 -0
- package/dist-types/commands/TerminateServiceJobsCommand.d.ts +120 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +260 -6
- package/dist-types/schemas/schemas_0.d.ts +12 -0
- package/dist-types/ts3.4/Batch.d.ts +48 -0
- package/dist-types/ts3.4/BatchClient.d.ts +15 -0
- package/dist-types/ts3.4/commands/CancelJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TerminateJobsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/TerminateServiceJobsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
} from "@smithy/types";
|
|
6
6
|
import { BatchClient } from "./BatchClient";
|
|
7
7
|
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
8
|
+
import { CancelJobsCommandInput, CancelJobsCommandOutput } from "./commands/CancelJobsCommand";
|
|
8
9
|
import {
|
|
9
10
|
CreateComputeEnvironmentCommandInput,
|
|
10
11
|
CreateComputeEnvironmentCommandOutput,
|
|
@@ -136,10 +137,18 @@ import {
|
|
|
136
137
|
TerminateJobCommandInput,
|
|
137
138
|
TerminateJobCommandOutput,
|
|
138
139
|
} from "./commands/TerminateJobCommand";
|
|
140
|
+
import {
|
|
141
|
+
TerminateJobsCommandInput,
|
|
142
|
+
TerminateJobsCommandOutput,
|
|
143
|
+
} from "./commands/TerminateJobsCommand";
|
|
139
144
|
import {
|
|
140
145
|
TerminateServiceJobCommandInput,
|
|
141
146
|
TerminateServiceJobCommandOutput,
|
|
142
147
|
} from "./commands/TerminateServiceJobCommand";
|
|
148
|
+
import {
|
|
149
|
+
TerminateServiceJobsCommandInput,
|
|
150
|
+
TerminateServiceJobsCommandOutput,
|
|
151
|
+
} from "./commands/TerminateServiceJobsCommand";
|
|
143
152
|
import {
|
|
144
153
|
UntagResourceCommandInput,
|
|
145
154
|
UntagResourceCommandOutput,
|
|
@@ -186,6 +195,19 @@ export interface Batch {
|
|
|
186
195
|
options: __HttpHandlerOptions,
|
|
187
196
|
cb: (err: any, data?: CancelJobCommandOutput) => void,
|
|
188
197
|
): void;
|
|
198
|
+
cancelJobs(
|
|
199
|
+
args: CancelJobsCommandInput,
|
|
200
|
+
options?: __HttpHandlerOptions,
|
|
201
|
+
): Promise<CancelJobsCommandOutput>;
|
|
202
|
+
cancelJobs(
|
|
203
|
+
args: CancelJobsCommandInput,
|
|
204
|
+
cb: (err: any, data?: CancelJobsCommandOutput) => void,
|
|
205
|
+
): void;
|
|
206
|
+
cancelJobs(
|
|
207
|
+
args: CancelJobsCommandInput,
|
|
208
|
+
options: __HttpHandlerOptions,
|
|
209
|
+
cb: (err: any, data?: CancelJobsCommandOutput) => void,
|
|
210
|
+
): void;
|
|
189
211
|
createComputeEnvironment(
|
|
190
212
|
args: CreateComputeEnvironmentCommandInput,
|
|
191
213
|
options?: __HttpHandlerOptions,
|
|
@@ -646,6 +668,19 @@ export interface Batch {
|
|
|
646
668
|
options: __HttpHandlerOptions,
|
|
647
669
|
cb: (err: any, data?: TerminateJobCommandOutput) => void,
|
|
648
670
|
): void;
|
|
671
|
+
terminateJobs(
|
|
672
|
+
args: TerminateJobsCommandInput,
|
|
673
|
+
options?: __HttpHandlerOptions,
|
|
674
|
+
): Promise<TerminateJobsCommandOutput>;
|
|
675
|
+
terminateJobs(
|
|
676
|
+
args: TerminateJobsCommandInput,
|
|
677
|
+
cb: (err: any, data?: TerminateJobsCommandOutput) => void,
|
|
678
|
+
): void;
|
|
679
|
+
terminateJobs(
|
|
680
|
+
args: TerminateJobsCommandInput,
|
|
681
|
+
options: __HttpHandlerOptions,
|
|
682
|
+
cb: (err: any, data?: TerminateJobsCommandOutput) => void,
|
|
683
|
+
): void;
|
|
649
684
|
terminateServiceJob(
|
|
650
685
|
args: TerminateServiceJobCommandInput,
|
|
651
686
|
options?: __HttpHandlerOptions,
|
|
@@ -659,6 +694,19 @@ export interface Batch {
|
|
|
659
694
|
options: __HttpHandlerOptions,
|
|
660
695
|
cb: (err: any, data?: TerminateServiceJobCommandOutput) => void,
|
|
661
696
|
): void;
|
|
697
|
+
terminateServiceJobs(
|
|
698
|
+
args: TerminateServiceJobsCommandInput,
|
|
699
|
+
options?: __HttpHandlerOptions,
|
|
700
|
+
): Promise<TerminateServiceJobsCommandOutput>;
|
|
701
|
+
terminateServiceJobs(
|
|
702
|
+
args: TerminateServiceJobsCommandInput,
|
|
703
|
+
cb: (err: any, data?: TerminateServiceJobsCommandOutput) => void,
|
|
704
|
+
): void;
|
|
705
|
+
terminateServiceJobs(
|
|
706
|
+
args: TerminateServiceJobsCommandInput,
|
|
707
|
+
options: __HttpHandlerOptions,
|
|
708
|
+
cb: (err: any, data?: TerminateServiceJobsCommandOutput) => void,
|
|
709
|
+
): void;
|
|
662
710
|
untagResource(
|
|
663
711
|
args: UntagResourceCommandInput,
|
|
664
712
|
options?: __HttpHandlerOptions,
|
|
@@ -34,6 +34,7 @@ import {
|
|
|
34
34
|
HttpAuthSchemeResolvedConfig,
|
|
35
35
|
} from "./auth/httpAuthSchemeProvider";
|
|
36
36
|
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
37
|
+
import { CancelJobsCommandInput, CancelJobsCommandOutput } from "./commands/CancelJobsCommand";
|
|
37
38
|
import {
|
|
38
39
|
CreateComputeEnvironmentCommandInput,
|
|
39
40
|
CreateComputeEnvironmentCommandOutput,
|
|
@@ -165,10 +166,18 @@ import {
|
|
|
165
166
|
TerminateJobCommandInput,
|
|
166
167
|
TerminateJobCommandOutput,
|
|
167
168
|
} from "./commands/TerminateJobCommand";
|
|
169
|
+
import {
|
|
170
|
+
TerminateJobsCommandInput,
|
|
171
|
+
TerminateJobsCommandOutput,
|
|
172
|
+
} from "./commands/TerminateJobsCommand";
|
|
168
173
|
import {
|
|
169
174
|
TerminateServiceJobCommandInput,
|
|
170
175
|
TerminateServiceJobCommandOutput,
|
|
171
176
|
} from "./commands/TerminateServiceJobCommand";
|
|
177
|
+
import {
|
|
178
|
+
TerminateServiceJobsCommandInput,
|
|
179
|
+
TerminateServiceJobsCommandOutput,
|
|
180
|
+
} from "./commands/TerminateServiceJobsCommand";
|
|
172
181
|
import {
|
|
173
182
|
UntagResourceCommandInput,
|
|
174
183
|
UntagResourceCommandOutput,
|
|
@@ -210,6 +219,7 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
210
219
|
export { __Client };
|
|
211
220
|
export type ServiceInputTypes =
|
|
212
221
|
| CancelJobCommandInput
|
|
222
|
+
| CancelJobsCommandInput
|
|
213
223
|
| CreateComputeEnvironmentCommandInput
|
|
214
224
|
| CreateConsumableResourceCommandInput
|
|
215
225
|
| CreateJobQueueCommandInput
|
|
@@ -245,7 +255,9 @@ export type ServiceInputTypes =
|
|
|
245
255
|
| SubmitServiceJobCommandInput
|
|
246
256
|
| TagResourceCommandInput
|
|
247
257
|
| TerminateJobCommandInput
|
|
258
|
+
| TerminateJobsCommandInput
|
|
248
259
|
| TerminateServiceJobCommandInput
|
|
260
|
+
| TerminateServiceJobsCommandInput
|
|
249
261
|
| UntagResourceCommandInput
|
|
250
262
|
| UpdateComputeEnvironmentCommandInput
|
|
251
263
|
| UpdateConsumableResourceCommandInput
|
|
@@ -256,6 +268,7 @@ export type ServiceInputTypes =
|
|
|
256
268
|
| UpdateServiceJobCommandInput;
|
|
257
269
|
export type ServiceOutputTypes =
|
|
258
270
|
| CancelJobCommandOutput
|
|
271
|
+
| CancelJobsCommandOutput
|
|
259
272
|
| CreateComputeEnvironmentCommandOutput
|
|
260
273
|
| CreateConsumableResourceCommandOutput
|
|
261
274
|
| CreateJobQueueCommandOutput
|
|
@@ -291,7 +304,9 @@ export type ServiceOutputTypes =
|
|
|
291
304
|
| SubmitServiceJobCommandOutput
|
|
292
305
|
| TagResourceCommandOutput
|
|
293
306
|
| TerminateJobCommandOutput
|
|
307
|
+
| TerminateJobsCommandOutput
|
|
294
308
|
| TerminateServiceJobCommandOutput
|
|
309
|
+
| TerminateServiceJobsCommandOutput
|
|
295
310
|
| UntagResourceCommandOutput
|
|
296
311
|
| UpdateComputeEnvironmentCommandOutput
|
|
297
312
|
| UpdateConsumableResourceCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { CancelJobsRequest, CancelJobsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface CancelJobsCommandInput extends CancelJobsRequest {}
|
|
5
|
+
export interface CancelJobsCommandOutput extends CancelJobsResponse, __MetadataBearer {}
|
|
6
|
+
declare const CancelJobsCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: CancelJobsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
CancelJobsCommandInput,
|
|
11
|
+
CancelJobsCommandOutput,
|
|
12
|
+
import("..").BatchClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: CancelJobsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CancelJobsCommandInput,
|
|
20
|
+
CancelJobsCommandOutput,
|
|
21
|
+
import("..").BatchClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class CancelJobsCommand extends CancelJobsCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: CancelJobsRequest;
|
|
31
|
+
output: CancelJobsResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: CancelJobsCommandInput;
|
|
35
|
+
output: CancelJobsCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { TerminateJobsRequest, TerminateJobsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface TerminateJobsCommandInput extends TerminateJobsRequest {}
|
|
5
|
+
export interface TerminateJobsCommandOutput extends TerminateJobsResponse, __MetadataBearer {}
|
|
6
|
+
declare const TerminateJobsCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: TerminateJobsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
TerminateJobsCommandInput,
|
|
11
|
+
TerminateJobsCommandOutput,
|
|
12
|
+
import("..").BatchClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: TerminateJobsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
TerminateJobsCommandInput,
|
|
20
|
+
TerminateJobsCommandOutput,
|
|
21
|
+
import("..").BatchClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class TerminateJobsCommand extends TerminateJobsCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: TerminateJobsRequest;
|
|
31
|
+
output: TerminateJobsResponse;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: TerminateJobsCommandInput;
|
|
35
|
+
output: TerminateJobsCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { TerminateServiceJobsRequest, TerminateServiceJobsResponse } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface TerminateServiceJobsCommandInput extends TerminateServiceJobsRequest {}
|
|
5
|
+
export interface TerminateServiceJobsCommandOutput
|
|
6
|
+
extends TerminateServiceJobsResponse, __MetadataBearer {}
|
|
7
|
+
declare const TerminateServiceJobsCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: TerminateServiceJobsCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
TerminateServiceJobsCommandInput,
|
|
12
|
+
TerminateServiceJobsCommandOutput,
|
|
13
|
+
import("..").BatchClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: TerminateServiceJobsCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
TerminateServiceJobsCommandInput,
|
|
21
|
+
TerminateServiceJobsCommandOutput,
|
|
22
|
+
import("..").BatchClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class TerminateServiceJobsCommand extends TerminateServiceJobsCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: TerminateServiceJobsRequest;
|
|
32
|
+
output: TerminateServiceJobsResponse;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: TerminateServiceJobsCommandInput;
|
|
36
|
+
output: TerminateServiceJobsCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./CancelJobCommand";
|
|
2
|
+
export * from "./CancelJobsCommand";
|
|
2
3
|
export * from "./CreateComputeEnvironmentCommand";
|
|
3
4
|
export * from "./CreateConsumableResourceCommand";
|
|
4
5
|
export * from "./CreateJobQueueCommand";
|
|
@@ -34,7 +35,9 @@ export * from "./SubmitJobCommand";
|
|
|
34
35
|
export * from "./SubmitServiceJobCommand";
|
|
35
36
|
export * from "./TagResourceCommand";
|
|
36
37
|
export * from "./TerminateJobCommand";
|
|
38
|
+
export * from "./TerminateJobsCommand";
|
|
37
39
|
export * from "./TerminateServiceJobCommand";
|
|
40
|
+
export * from "./TerminateServiceJobsCommand";
|
|
38
41
|
export * from "./UntagResourceCommand";
|
|
39
42
|
export * from "./UpdateComputeEnvironmentCommand";
|
|
40
43
|
export * from "./UpdateConsumableResourceCommand";
|
|
@@ -90,6 +90,19 @@ export interface CancelJobRequest {
|
|
|
90
90
|
reason: string | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface CancelJobResponse {}
|
|
93
|
+
export interface CancelJobsRequest {
|
|
94
|
+
jobs: string[] | undefined;
|
|
95
|
+
reason: string | undefined;
|
|
96
|
+
}
|
|
97
|
+
export interface CancelJobsErrorDetail {
|
|
98
|
+
job: string | undefined;
|
|
99
|
+
code: string | undefined;
|
|
100
|
+
message: string | undefined;
|
|
101
|
+
}
|
|
102
|
+
export interface CancelJobsResponse {
|
|
103
|
+
successful: string[] | undefined;
|
|
104
|
+
errors: CancelJobsErrorDetail[] | undefined;
|
|
105
|
+
}
|
|
93
106
|
export interface Ec2Configuration {
|
|
94
107
|
imageType: string | undefined;
|
|
95
108
|
imageIdOverride?: string | undefined;
|
|
@@ -1090,6 +1103,8 @@ export interface JobSummary {
|
|
|
1090
1103
|
arrayProperties?: ArrayPropertiesSummary | undefined;
|
|
1091
1104
|
nodeProperties?: NodePropertiesSummary | undefined;
|
|
1092
1105
|
jobDefinition?: string | undefined;
|
|
1106
|
+
isCancelled?: boolean | undefined;
|
|
1107
|
+
isTerminated?: boolean | undefined;
|
|
1093
1108
|
}
|
|
1094
1109
|
export interface ListJobsResponse {
|
|
1095
1110
|
jobSummaryList: JobSummary[] | undefined;
|
|
@@ -1174,6 +1189,7 @@ export interface ServiceJobSummary {
|
|
|
1174
1189
|
statusReason?: string | undefined;
|
|
1175
1190
|
startedAt?: number | undefined;
|
|
1176
1191
|
stoppedAt?: number | undefined;
|
|
1192
|
+
isTerminated?: boolean | undefined;
|
|
1177
1193
|
}
|
|
1178
1194
|
export interface ListServiceJobsResponse {
|
|
1179
1195
|
jobSummaryList: ServiceJobSummary[] | undefined;
|
|
@@ -1307,11 +1323,37 @@ export interface TerminateJobRequest {
|
|
|
1307
1323
|
reason: string | undefined;
|
|
1308
1324
|
}
|
|
1309
1325
|
export interface TerminateJobResponse {}
|
|
1326
|
+
export interface TerminateJobsRequest {
|
|
1327
|
+
jobs: string[] | undefined;
|
|
1328
|
+
reason: string | undefined;
|
|
1329
|
+
}
|
|
1330
|
+
export interface TerminateJobsErrorDetail {
|
|
1331
|
+
job: string | undefined;
|
|
1332
|
+
code: string | undefined;
|
|
1333
|
+
message: string | undefined;
|
|
1334
|
+
}
|
|
1335
|
+
export interface TerminateJobsResponse {
|
|
1336
|
+
successful: string[] | undefined;
|
|
1337
|
+
errors: TerminateJobsErrorDetail[] | undefined;
|
|
1338
|
+
}
|
|
1310
1339
|
export interface TerminateServiceJobRequest {
|
|
1311
1340
|
jobId: string | undefined;
|
|
1312
1341
|
reason: string | undefined;
|
|
1313
1342
|
}
|
|
1314
1343
|
export interface TerminateServiceJobResponse {}
|
|
1344
|
+
export interface TerminateServiceJobsRequest {
|
|
1345
|
+
jobs: string[] | undefined;
|
|
1346
|
+
reason: string | undefined;
|
|
1347
|
+
}
|
|
1348
|
+
export interface TerminateServiceJobsErrorDetail {
|
|
1349
|
+
job: string | undefined;
|
|
1350
|
+
code: string | undefined;
|
|
1351
|
+
message: string | undefined;
|
|
1352
|
+
}
|
|
1353
|
+
export interface TerminateServiceJobsResponse {
|
|
1354
|
+
successful: string[] | undefined;
|
|
1355
|
+
errors: TerminateServiceJobsErrorDetail[] | undefined;
|
|
1356
|
+
}
|
|
1315
1357
|
export interface UntagResourceRequest {
|
|
1316
1358
|
resourceArn: string | undefined;
|
|
1317
1359
|
tagKeys: string[] | undefined;
|
|
@@ -13,6 +13,9 @@ export declare var AttemptEcsTaskDetails$: StaticStructureSchema;
|
|
|
13
13
|
export declare var AttemptTaskContainerDetails$: StaticStructureSchema;
|
|
14
14
|
export declare var CancelJobRequest$: StaticStructureSchema;
|
|
15
15
|
export declare var CancelJobResponse$: StaticStructureSchema;
|
|
16
|
+
export declare var CancelJobsErrorDetail$: StaticStructureSchema;
|
|
17
|
+
export declare var CancelJobsRequest$: StaticStructureSchema;
|
|
18
|
+
export declare var CancelJobsResponse$: StaticStructureSchema;
|
|
16
19
|
export declare var CapacityLimit$: StaticStructureSchema;
|
|
17
20
|
export declare var CapacityReservationRequest$: StaticStructureSchema;
|
|
18
21
|
export declare var ComputeEnvironmentDetail$: StaticStructureSchema;
|
|
@@ -213,8 +216,14 @@ export declare var TaskContainerProperties$: StaticStructureSchema;
|
|
|
213
216
|
export declare var TaskPropertiesOverride$: StaticStructureSchema;
|
|
214
217
|
export declare var TerminateJobRequest$: StaticStructureSchema;
|
|
215
218
|
export declare var TerminateJobResponse$: StaticStructureSchema;
|
|
219
|
+
export declare var TerminateJobsErrorDetail$: StaticStructureSchema;
|
|
220
|
+
export declare var TerminateJobsRequest$: StaticStructureSchema;
|
|
221
|
+
export declare var TerminateJobsResponse$: StaticStructureSchema;
|
|
216
222
|
export declare var TerminateServiceJobRequest$: StaticStructureSchema;
|
|
217
223
|
export declare var TerminateServiceJobResponse$: StaticStructureSchema;
|
|
224
|
+
export declare var TerminateServiceJobsErrorDetail$: StaticStructureSchema;
|
|
225
|
+
export declare var TerminateServiceJobsRequest$: StaticStructureSchema;
|
|
226
|
+
export declare var TerminateServiceJobsResponse$: StaticStructureSchema;
|
|
218
227
|
export declare var Tmpfs$: StaticStructureSchema;
|
|
219
228
|
export declare var Ulimit$: StaticStructureSchema;
|
|
220
229
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
@@ -237,6 +246,7 @@ export declare var UpdateServiceJobRequest$: StaticStructureSchema;
|
|
|
237
246
|
export declare var UpdateServiceJobResponse$: StaticStructureSchema;
|
|
238
247
|
export declare var Volume$: StaticStructureSchema;
|
|
239
248
|
export declare var CancelJob$: StaticOperationSchema;
|
|
249
|
+
export declare var CancelJobs$: StaticOperationSchema;
|
|
240
250
|
export declare var CreateComputeEnvironment$: StaticOperationSchema;
|
|
241
251
|
export declare var CreateConsumableResource$: StaticOperationSchema;
|
|
242
252
|
export declare var CreateJobQueue$: StaticOperationSchema;
|
|
@@ -272,7 +282,9 @@ export declare var SubmitJob$: StaticOperationSchema;
|
|
|
272
282
|
export declare var SubmitServiceJob$: StaticOperationSchema;
|
|
273
283
|
export declare var TagResource$: StaticOperationSchema;
|
|
274
284
|
export declare var TerminateJob$: StaticOperationSchema;
|
|
285
|
+
export declare var TerminateJobs$: StaticOperationSchema;
|
|
275
286
|
export declare var TerminateServiceJob$: StaticOperationSchema;
|
|
287
|
+
export declare var TerminateServiceJobs$: StaticOperationSchema;
|
|
276
288
|
export declare var UntagResource$: StaticOperationSchema;
|
|
277
289
|
export declare var UpdateComputeEnvironment$: StaticOperationSchema;
|
|
278
290
|
export declare var UpdateConsumableResource$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-batch",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1131.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-batch",
|
|
6
6
|
"license": "Apache-2.0",
|