@aws-sdk/client-batch 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/Batch.d.ts +0 -24
- package/dist-types/ts3.4/BatchClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/BatchServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -467
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-batch
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-batch
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-batch
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: BatchClientConfig) => {
|
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
32
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
34
34
|
signingEscapePath?: boolean | undefined;
|
|
35
35
|
systemClockOffset?: number | undefined;
|
|
36
36
|
signingRegion?: string | undefined;
|
|
@@ -96,7 +96,6 @@ import {
|
|
|
96
96
|
UpdateSchedulingPolicyCommandInput,
|
|
97
97
|
UpdateSchedulingPolicyCommandOutput,
|
|
98
98
|
} from "./commands/UpdateSchedulingPolicyCommand";
|
|
99
|
-
|
|
100
99
|
export declare class Batch extends BatchClient {
|
|
101
100
|
cancelJob(
|
|
102
101
|
args: CancelJobCommandInput,
|
|
@@ -111,7 +110,6 @@ export declare class Batch extends BatchClient {
|
|
|
111
110
|
options: __HttpHandlerOptions,
|
|
112
111
|
cb: (err: any, data?: CancelJobCommandOutput) => void
|
|
113
112
|
): void;
|
|
114
|
-
|
|
115
113
|
createComputeEnvironment(
|
|
116
114
|
args: CreateComputeEnvironmentCommandInput,
|
|
117
115
|
options?: __HttpHandlerOptions
|
|
@@ -125,7 +123,6 @@ export declare class Batch extends BatchClient {
|
|
|
125
123
|
options: __HttpHandlerOptions,
|
|
126
124
|
cb: (err: any, data?: CreateComputeEnvironmentCommandOutput) => void
|
|
127
125
|
): void;
|
|
128
|
-
|
|
129
126
|
createJobQueue(
|
|
130
127
|
args: CreateJobQueueCommandInput,
|
|
131
128
|
options?: __HttpHandlerOptions
|
|
@@ -139,7 +136,6 @@ export declare class Batch extends BatchClient {
|
|
|
139
136
|
options: __HttpHandlerOptions,
|
|
140
137
|
cb: (err: any, data?: CreateJobQueueCommandOutput) => void
|
|
141
138
|
): void;
|
|
142
|
-
|
|
143
139
|
createSchedulingPolicy(
|
|
144
140
|
args: CreateSchedulingPolicyCommandInput,
|
|
145
141
|
options?: __HttpHandlerOptions
|
|
@@ -153,7 +149,6 @@ export declare class Batch extends BatchClient {
|
|
|
153
149
|
options: __HttpHandlerOptions,
|
|
154
150
|
cb: (err: any, data?: CreateSchedulingPolicyCommandOutput) => void
|
|
155
151
|
): void;
|
|
156
|
-
|
|
157
152
|
deleteComputeEnvironment(
|
|
158
153
|
args: DeleteComputeEnvironmentCommandInput,
|
|
159
154
|
options?: __HttpHandlerOptions
|
|
@@ -167,7 +162,6 @@ export declare class Batch extends BatchClient {
|
|
|
167
162
|
options: __HttpHandlerOptions,
|
|
168
163
|
cb: (err: any, data?: DeleteComputeEnvironmentCommandOutput) => void
|
|
169
164
|
): void;
|
|
170
|
-
|
|
171
165
|
deleteJobQueue(
|
|
172
166
|
args: DeleteJobQueueCommandInput,
|
|
173
167
|
options?: __HttpHandlerOptions
|
|
@@ -181,7 +175,6 @@ export declare class Batch extends BatchClient {
|
|
|
181
175
|
options: __HttpHandlerOptions,
|
|
182
176
|
cb: (err: any, data?: DeleteJobQueueCommandOutput) => void
|
|
183
177
|
): void;
|
|
184
|
-
|
|
185
178
|
deleteSchedulingPolicy(
|
|
186
179
|
args: DeleteSchedulingPolicyCommandInput,
|
|
187
180
|
options?: __HttpHandlerOptions
|
|
@@ -195,7 +188,6 @@ export declare class Batch extends BatchClient {
|
|
|
195
188
|
options: __HttpHandlerOptions,
|
|
196
189
|
cb: (err: any, data?: DeleteSchedulingPolicyCommandOutput) => void
|
|
197
190
|
): void;
|
|
198
|
-
|
|
199
191
|
deregisterJobDefinition(
|
|
200
192
|
args: DeregisterJobDefinitionCommandInput,
|
|
201
193
|
options?: __HttpHandlerOptions
|
|
@@ -209,7 +201,6 @@ export declare class Batch extends BatchClient {
|
|
|
209
201
|
options: __HttpHandlerOptions,
|
|
210
202
|
cb: (err: any, data?: DeregisterJobDefinitionCommandOutput) => void
|
|
211
203
|
): void;
|
|
212
|
-
|
|
213
204
|
describeComputeEnvironments(
|
|
214
205
|
args: DescribeComputeEnvironmentsCommandInput,
|
|
215
206
|
options?: __HttpHandlerOptions
|
|
@@ -223,7 +214,6 @@ export declare class Batch extends BatchClient {
|
|
|
223
214
|
options: __HttpHandlerOptions,
|
|
224
215
|
cb: (err: any, data?: DescribeComputeEnvironmentsCommandOutput) => void
|
|
225
216
|
): void;
|
|
226
|
-
|
|
227
217
|
describeJobDefinitions(
|
|
228
218
|
args: DescribeJobDefinitionsCommandInput,
|
|
229
219
|
options?: __HttpHandlerOptions
|
|
@@ -237,7 +227,6 @@ export declare class Batch extends BatchClient {
|
|
|
237
227
|
options: __HttpHandlerOptions,
|
|
238
228
|
cb: (err: any, data?: DescribeJobDefinitionsCommandOutput) => void
|
|
239
229
|
): void;
|
|
240
|
-
|
|
241
230
|
describeJobQueues(
|
|
242
231
|
args: DescribeJobQueuesCommandInput,
|
|
243
232
|
options?: __HttpHandlerOptions
|
|
@@ -251,7 +240,6 @@ export declare class Batch extends BatchClient {
|
|
|
251
240
|
options: __HttpHandlerOptions,
|
|
252
241
|
cb: (err: any, data?: DescribeJobQueuesCommandOutput) => void
|
|
253
242
|
): void;
|
|
254
|
-
|
|
255
243
|
describeJobs(
|
|
256
244
|
args: DescribeJobsCommandInput,
|
|
257
245
|
options?: __HttpHandlerOptions
|
|
@@ -265,7 +253,6 @@ export declare class Batch extends BatchClient {
|
|
|
265
253
|
options: __HttpHandlerOptions,
|
|
266
254
|
cb: (err: any, data?: DescribeJobsCommandOutput) => void
|
|
267
255
|
): void;
|
|
268
|
-
|
|
269
256
|
describeSchedulingPolicies(
|
|
270
257
|
args: DescribeSchedulingPoliciesCommandInput,
|
|
271
258
|
options?: __HttpHandlerOptions
|
|
@@ -279,7 +266,6 @@ export declare class Batch extends BatchClient {
|
|
|
279
266
|
options: __HttpHandlerOptions,
|
|
280
267
|
cb: (err: any, data?: DescribeSchedulingPoliciesCommandOutput) => void
|
|
281
268
|
): void;
|
|
282
|
-
|
|
283
269
|
listJobs(
|
|
284
270
|
args: ListJobsCommandInput,
|
|
285
271
|
options?: __HttpHandlerOptions
|
|
@@ -293,7 +279,6 @@ export declare class Batch extends BatchClient {
|
|
|
293
279
|
options: __HttpHandlerOptions,
|
|
294
280
|
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
295
281
|
): void;
|
|
296
|
-
|
|
297
282
|
listSchedulingPolicies(
|
|
298
283
|
args: ListSchedulingPoliciesCommandInput,
|
|
299
284
|
options?: __HttpHandlerOptions
|
|
@@ -307,7 +292,6 @@ export declare class Batch extends BatchClient {
|
|
|
307
292
|
options: __HttpHandlerOptions,
|
|
308
293
|
cb: (err: any, data?: ListSchedulingPoliciesCommandOutput) => void
|
|
309
294
|
): void;
|
|
310
|
-
|
|
311
295
|
listTagsForResource(
|
|
312
296
|
args: ListTagsForResourceCommandInput,
|
|
313
297
|
options?: __HttpHandlerOptions
|
|
@@ -321,7 +305,6 @@ export declare class Batch extends BatchClient {
|
|
|
321
305
|
options: __HttpHandlerOptions,
|
|
322
306
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
323
307
|
): void;
|
|
324
|
-
|
|
325
308
|
registerJobDefinition(
|
|
326
309
|
args: RegisterJobDefinitionCommandInput,
|
|
327
310
|
options?: __HttpHandlerOptions
|
|
@@ -335,7 +318,6 @@ export declare class Batch extends BatchClient {
|
|
|
335
318
|
options: __HttpHandlerOptions,
|
|
336
319
|
cb: (err: any, data?: RegisterJobDefinitionCommandOutput) => void
|
|
337
320
|
): void;
|
|
338
|
-
|
|
339
321
|
submitJob(
|
|
340
322
|
args: SubmitJobCommandInput,
|
|
341
323
|
options?: __HttpHandlerOptions
|
|
@@ -349,7 +331,6 @@ export declare class Batch extends BatchClient {
|
|
|
349
331
|
options: __HttpHandlerOptions,
|
|
350
332
|
cb: (err: any, data?: SubmitJobCommandOutput) => void
|
|
351
333
|
): void;
|
|
352
|
-
|
|
353
334
|
tagResource(
|
|
354
335
|
args: TagResourceCommandInput,
|
|
355
336
|
options?: __HttpHandlerOptions
|
|
@@ -363,7 +344,6 @@ export declare class Batch extends BatchClient {
|
|
|
363
344
|
options: __HttpHandlerOptions,
|
|
364
345
|
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
365
346
|
): void;
|
|
366
|
-
|
|
367
347
|
terminateJob(
|
|
368
348
|
args: TerminateJobCommandInput,
|
|
369
349
|
options?: __HttpHandlerOptions
|
|
@@ -377,7 +357,6 @@ export declare class Batch extends BatchClient {
|
|
|
377
357
|
options: __HttpHandlerOptions,
|
|
378
358
|
cb: (err: any, data?: TerminateJobCommandOutput) => void
|
|
379
359
|
): void;
|
|
380
|
-
|
|
381
360
|
untagResource(
|
|
382
361
|
args: UntagResourceCommandInput,
|
|
383
362
|
options?: __HttpHandlerOptions
|
|
@@ -391,7 +370,6 @@ export declare class Batch extends BatchClient {
|
|
|
391
370
|
options: __HttpHandlerOptions,
|
|
392
371
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
393
372
|
): void;
|
|
394
|
-
|
|
395
373
|
updateComputeEnvironment(
|
|
396
374
|
args: UpdateComputeEnvironmentCommandInput,
|
|
397
375
|
options?: __HttpHandlerOptions
|
|
@@ -405,7 +383,6 @@ export declare class Batch extends BatchClient {
|
|
|
405
383
|
options: __HttpHandlerOptions,
|
|
406
384
|
cb: (err: any, data?: UpdateComputeEnvironmentCommandOutput) => void
|
|
407
385
|
): void;
|
|
408
|
-
|
|
409
386
|
updateJobQueue(
|
|
410
387
|
args: UpdateJobQueueCommandInput,
|
|
411
388
|
options?: __HttpHandlerOptions
|
|
@@ -419,7 +396,6 @@ export declare class Batch extends BatchClient {
|
|
|
419
396
|
options: __HttpHandlerOptions,
|
|
420
397
|
cb: (err: any, data?: UpdateJobQueueCommandOutput) => void
|
|
421
398
|
): void;
|
|
422
|
-
|
|
423
399
|
updateSchedulingPolicy(
|
|
424
400
|
args: UpdateSchedulingPolicyCommandInput,
|
|
425
401
|
options?: __HttpHandlerOptions
|
|
@@ -191,47 +191,26 @@ export declare type ServiceOutputTypes =
|
|
|
191
191
|
export interface ClientDefaults
|
|
192
192
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
193
193
|
requestHandler?: __HttpHandler;
|
|
194
|
-
|
|
195
194
|
sha256?: __HashConstructor;
|
|
196
|
-
|
|
197
195
|
urlParser?: __UrlParser;
|
|
198
|
-
|
|
199
196
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
200
|
-
|
|
201
197
|
streamCollector?: __StreamCollector;
|
|
202
|
-
|
|
203
198
|
base64Decoder?: __Decoder;
|
|
204
|
-
|
|
205
199
|
base64Encoder?: __Encoder;
|
|
206
|
-
|
|
207
200
|
utf8Decoder?: __Decoder;
|
|
208
|
-
|
|
209
201
|
utf8Encoder?: __Encoder;
|
|
210
|
-
|
|
211
202
|
runtime?: string;
|
|
212
|
-
|
|
213
203
|
disableHostPrefix?: boolean;
|
|
214
|
-
|
|
215
204
|
maxAttempts?: number | __Provider<number>;
|
|
216
|
-
|
|
217
205
|
retryMode?: string | __Provider<string>;
|
|
218
|
-
|
|
219
206
|
logger?: __Logger;
|
|
220
|
-
|
|
221
207
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
222
|
-
|
|
223
208
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
224
|
-
|
|
225
209
|
serviceId?: string;
|
|
226
|
-
|
|
227
210
|
region?: string | __Provider<string>;
|
|
228
|
-
|
|
229
211
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
230
|
-
|
|
231
212
|
regionInfoProvider?: RegionInfoProvider;
|
|
232
|
-
|
|
233
213
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
234
|
-
|
|
235
214
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
236
215
|
}
|
|
237
216
|
declare type BatchClientConfigType = Partial<
|
|
@@ -244,7 +223,6 @@ declare type BatchClientConfigType = Partial<
|
|
|
244
223
|
HostHeaderInputConfig &
|
|
245
224
|
AwsAuthInputConfig &
|
|
246
225
|
UserAgentInputConfig;
|
|
247
|
-
|
|
248
226
|
export interface BatchClientConfig extends BatchClientConfigType {}
|
|
249
227
|
declare type BatchClientResolvedConfigType =
|
|
250
228
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
@@ -255,10 +233,8 @@ declare type BatchClientResolvedConfigType =
|
|
|
255
233
|
HostHeaderResolvedConfig &
|
|
256
234
|
AwsAuthResolvedConfig &
|
|
257
235
|
UserAgentResolvedConfig;
|
|
258
|
-
|
|
259
236
|
export interface BatchClientResolvedConfig
|
|
260
237
|
extends BatchClientResolvedConfigType {}
|
|
261
|
-
|
|
262
238
|
export declare class BatchClient extends __Client<
|
|
263
239
|
__HttpHandlerOptions,
|
|
264
240
|
ServiceInputTypes,
|
|
@@ -267,7 +243,6 @@ export declare class BatchClient extends __Client<
|
|
|
267
243
|
> {
|
|
268
244
|
readonly config: BatchClientResolvedConfig;
|
|
269
245
|
constructor(configuration: BatchClientConfig);
|
|
270
|
-
|
|
271
246
|
destroy(): void;
|
|
272
247
|
}
|
|
273
248
|
export {};
|
|
@@ -15,7 +15,6 @@ export interface CancelJobCommandInput extends CancelJobRequest {}
|
|
|
15
15
|
export interface CancelJobCommandOutput
|
|
16
16
|
extends CancelJobResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class CancelJobCommand extends $Command<
|
|
20
19
|
CancelJobCommandInput,
|
|
21
20
|
CancelJobCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class CancelJobCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: CancelJobCommandInput;
|
|
25
24
|
constructor(input: CancelJobCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface CreateComputeEnvironmentCommandInput
|
|
|
19
19
|
export interface CreateComputeEnvironmentCommandOutput
|
|
20
20
|
extends CreateComputeEnvironmentResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class CreateComputeEnvironmentCommand extends $Command<
|
|
24
23
|
CreateComputeEnvironmentCommandInput,
|
|
25
24
|
CreateComputeEnvironmentCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class CreateComputeEnvironmentCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: CreateComputeEnvironmentCommandInput;
|
|
29
28
|
constructor(input: CreateComputeEnvironmentCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface CreateJobQueueCommandInput extends CreateJobQueueRequest {}
|
|
|
18
18
|
export interface CreateJobQueueCommandOutput
|
|
19
19
|
extends CreateJobQueueResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class CreateJobQueueCommand extends $Command<
|
|
23
22
|
CreateJobQueueCommandInput,
|
|
24
23
|
CreateJobQueueCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class CreateJobQueueCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: CreateJobQueueCommandInput;
|
|
28
27
|
constructor(input: CreateJobQueueCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface CreateSchedulingPolicyCommandInput
|
|
|
19
19
|
export interface CreateSchedulingPolicyCommandOutput
|
|
20
20
|
extends CreateSchedulingPolicyResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class CreateSchedulingPolicyCommand extends $Command<
|
|
24
23
|
CreateSchedulingPolicyCommandInput,
|
|
25
24
|
CreateSchedulingPolicyCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class CreateSchedulingPolicyCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: CreateSchedulingPolicyCommandInput;
|
|
29
28
|
constructor(input: CreateSchedulingPolicyCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DeleteComputeEnvironmentCommandInput
|
|
|
19
19
|
export interface DeleteComputeEnvironmentCommandOutput
|
|
20
20
|
extends DeleteComputeEnvironmentResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DeleteComputeEnvironmentCommand extends $Command<
|
|
24
23
|
DeleteComputeEnvironmentCommandInput,
|
|
25
24
|
DeleteComputeEnvironmentCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DeleteComputeEnvironmentCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DeleteComputeEnvironmentCommandInput;
|
|
29
28
|
constructor(input: DeleteComputeEnvironmentCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface DeleteJobQueueCommandInput extends DeleteJobQueueRequest {}
|
|
|
18
18
|
export interface DeleteJobQueueCommandOutput
|
|
19
19
|
extends DeleteJobQueueResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class DeleteJobQueueCommand extends $Command<
|
|
23
22
|
DeleteJobQueueCommandInput,
|
|
24
23
|
DeleteJobQueueCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class DeleteJobQueueCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: DeleteJobQueueCommandInput;
|
|
28
27
|
constructor(input: DeleteJobQueueCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DeleteSchedulingPolicyCommandInput
|
|
|
19
19
|
export interface DeleteSchedulingPolicyCommandOutput
|
|
20
20
|
extends DeleteSchedulingPolicyResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DeleteSchedulingPolicyCommand extends $Command<
|
|
24
23
|
DeleteSchedulingPolicyCommandInput,
|
|
25
24
|
DeleteSchedulingPolicyCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DeleteSchedulingPolicyCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DeleteSchedulingPolicyCommandInput;
|
|
29
28
|
constructor(input: DeleteSchedulingPolicyCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DeregisterJobDefinitionCommandInput
|
|
|
19
19
|
export interface DeregisterJobDefinitionCommandOutput
|
|
20
20
|
extends DeregisterJobDefinitionResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DeregisterJobDefinitionCommand extends $Command<
|
|
24
23
|
DeregisterJobDefinitionCommandInput,
|
|
25
24
|
DeregisterJobDefinitionCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DeregisterJobDefinitionCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DeregisterJobDefinitionCommandInput;
|
|
29
28
|
constructor(input: DeregisterJobDefinitionCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeComputeEnvironmentsCommandInput
|
|
|
19
19
|
export interface DescribeComputeEnvironmentsCommandOutput
|
|
20
20
|
extends DescribeComputeEnvironmentsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeComputeEnvironmentsCommand extends $Command<
|
|
24
23
|
DescribeComputeEnvironmentsCommandInput,
|
|
25
24
|
DescribeComputeEnvironmentsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeComputeEnvironmentsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeComputeEnvironmentsCommandInput;
|
|
29
28
|
constructor(input: DescribeComputeEnvironmentsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeJobDefinitionsCommandInput
|
|
|
19
19
|
export interface DescribeJobDefinitionsCommandOutput
|
|
20
20
|
extends DescribeJobDefinitionsResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeJobDefinitionsCommand extends $Command<
|
|
24
23
|
DescribeJobDefinitionsCommandInput,
|
|
25
24
|
DescribeJobDefinitionsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeJobDefinitionsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeJobDefinitionsCommandInput;
|
|
29
28
|
constructor(input: DescribeJobDefinitionsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeJobQueuesCommandInput
|
|
|
19
19
|
export interface DescribeJobQueuesCommandOutput
|
|
20
20
|
extends DescribeJobQueuesResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeJobQueuesCommand extends $Command<
|
|
24
23
|
DescribeJobQueuesCommandInput,
|
|
25
24
|
DescribeJobQueuesCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeJobQueuesCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeJobQueuesCommandInput;
|
|
29
28
|
constructor(input: DescribeJobQueuesCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface DescribeJobsCommandInput extends DescribeJobsRequest {}
|
|
|
15
15
|
export interface DescribeJobsCommandOutput
|
|
16
16
|
extends DescribeJobsResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class DescribeJobsCommand extends $Command<
|
|
20
19
|
DescribeJobsCommandInput,
|
|
21
20
|
DescribeJobsCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class DescribeJobsCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: DescribeJobsCommandInput;
|
|
25
24
|
constructor(input: DescribeJobsCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DescribeSchedulingPoliciesCommandInput
|
|
|
19
19
|
export interface DescribeSchedulingPoliciesCommandOutput
|
|
20
20
|
extends DescribeSchedulingPoliciesResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DescribeSchedulingPoliciesCommand extends $Command<
|
|
24
23
|
DescribeSchedulingPoliciesCommandInput,
|
|
25
24
|
DescribeSchedulingPoliciesCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DescribeSchedulingPoliciesCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DescribeSchedulingPoliciesCommandInput;
|
|
29
28
|
constructor(input: DescribeSchedulingPoliciesCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListJobsCommandInput extends ListJobsRequest {}
|
|
|
15
15
|
export interface ListJobsCommandOutput
|
|
16
16
|
extends ListJobsResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListJobsCommand extends $Command<
|
|
20
19
|
ListJobsCommandInput,
|
|
21
20
|
ListJobsCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListJobsCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListJobsCommandInput;
|
|
25
24
|
constructor(input: ListJobsCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListSchedulingPoliciesCommandInput
|
|
|
19
19
|
export interface ListSchedulingPoliciesCommandOutput
|
|
20
20
|
extends ListSchedulingPoliciesResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListSchedulingPoliciesCommand extends $Command<
|
|
24
23
|
ListSchedulingPoliciesCommandInput,
|
|
25
24
|
ListSchedulingPoliciesCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListSchedulingPoliciesCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListSchedulingPoliciesCommandInput;
|
|
29
28
|
constructor(input: ListSchedulingPoliciesCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListTagsForResourceCommandInput
|
|
|
19
19
|
export interface ListTagsForResourceCommandOutput
|
|
20
20
|
extends ListTagsForResourceResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
23
|
ListTagsForResourceCommandInput,
|
|
25
24
|
ListTagsForResourceCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
28
|
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface RegisterJobDefinitionCommandInput
|
|
|
19
19
|
export interface RegisterJobDefinitionCommandOutput
|
|
20
20
|
extends RegisterJobDefinitionResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class RegisterJobDefinitionCommand extends $Command<
|
|
24
23
|
RegisterJobDefinitionCommandInput,
|
|
25
24
|
RegisterJobDefinitionCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class RegisterJobDefinitionCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: RegisterJobDefinitionCommandInput;
|
|
29
28
|
constructor(input: RegisterJobDefinitionCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: BatchClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface SubmitJobCommandInput extends SubmitJobRequest {}
|
|
|
15
15
|
export interface SubmitJobCommandOutput
|
|
16
16
|
extends SubmitJobResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class SubmitJobCommand extends $Command<
|
|
20
19
|
SubmitJobCommandInput,
|
|
21
20
|
SubmitJobCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class SubmitJobCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: SubmitJobCommandInput;
|
|
25
24
|
constructor(input: SubmitJobCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: BatchClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
15
15
|
export interface TagResourceCommandOutput
|
|
16
16
|
extends TagResourceResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class TagResourceCommand extends $Command<
|
|
20
19
|
TagResourceCommandInput,
|
|
21
20
|
TagResourceCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class TagResourceCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: TagResourceCommandInput;
|
|
25
24
|
constructor(input: TagResourceCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: BatchClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface TerminateJobCommandInput extends TerminateJobRequest {}
|
|
|
15
15
|
export interface TerminateJobCommandOutput
|
|
16
16
|
extends TerminateJobResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class TerminateJobCommand extends $Command<
|
|
20
19
|
TerminateJobCommandInput,
|
|
21
20
|
TerminateJobCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class TerminateJobCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: TerminateJobCommandInput;
|
|
25
24
|
constructor(input: TerminateJobCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: BatchClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
|
18
18
|
export interface UntagResourceCommandOutput
|
|
19
19
|
extends UntagResourceResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class UntagResourceCommand extends $Command<
|
|
23
22
|
UntagResourceCommandInput,
|
|
24
23
|
UntagResourceCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: UntagResourceCommandInput;
|
|
28
27
|
constructor(input: UntagResourceCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: BatchClientResolvedConfig,
|