@aws-sdk/client-batch 3.533.0 → 3.540.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.
Files changed (59) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/Batch.d.ts +6 -1
  6. package/dist-types/BatchClient.d.ts +1 -1
  7. package/dist-types/commands/CancelJobCommand.d.ts +2 -1
  8. package/dist-types/commands/CreateComputeEnvironmentCommand.d.ts +2 -1
  9. package/dist-types/commands/CreateJobQueueCommand.d.ts +2 -1
  10. package/dist-types/commands/CreateSchedulingPolicyCommand.d.ts +2 -1
  11. package/dist-types/commands/DeleteComputeEnvironmentCommand.d.ts +2 -1
  12. package/dist-types/commands/DeleteJobQueueCommand.d.ts +2 -1
  13. package/dist-types/commands/DeleteSchedulingPolicyCommand.d.ts +2 -1
  14. package/dist-types/commands/DeregisterJobDefinitionCommand.d.ts +2 -1
  15. package/dist-types/commands/DescribeComputeEnvironmentsCommand.d.ts +2 -1
  16. package/dist-types/commands/DescribeJobDefinitionsCommand.d.ts +2 -1
  17. package/dist-types/commands/DescribeJobQueuesCommand.d.ts +2 -1
  18. package/dist-types/commands/DescribeJobsCommand.d.ts +2 -1
  19. package/dist-types/commands/DescribeSchedulingPoliciesCommand.d.ts +2 -1
  20. package/dist-types/commands/ListJobsCommand.d.ts +2 -1
  21. package/dist-types/commands/ListSchedulingPoliciesCommand.d.ts +2 -1
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  23. package/dist-types/commands/RegisterJobDefinitionCommand.d.ts +2 -1
  24. package/dist-types/commands/SubmitJobCommand.d.ts +2 -1
  25. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  26. package/dist-types/commands/TerminateJobCommand.d.ts +2 -1
  27. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  28. package/dist-types/commands/UpdateComputeEnvironmentCommand.d.ts +2 -1
  29. package/dist-types/commands/UpdateJobQueueCommand.d.ts +2 -1
  30. package/dist-types/commands/UpdateSchedulingPolicyCommand.d.ts +2 -1
  31. package/dist-types/index.d.ts +0 -1
  32. package/dist-types/models/models_0.d.ts +680 -680
  33. package/dist-types/ts3.4/Batch.d.ts +5 -0
  34. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +9 -0
  43. package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +9 -0
  44. package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +9 -0
  45. package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +9 -0
  46. package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +9 -0
  47. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +9 -0
  48. package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +9 -0
  49. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  50. package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +9 -0
  51. package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +9 -0
  52. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  53. package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +9 -0
  54. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  55. package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +9 -0
  56. package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +9 -0
  57. package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +9 -0
  58. package/dist-types/ts3.4/index.d.ts +0 -1
  59. package/package.json +40 -40
@@ -201,6 +201,7 @@ export interface Batch {
201
201
  options: __HttpHandlerOptions,
202
202
  cb: (err: any, data?: DeregisterJobDefinitionCommandOutput) => void
203
203
  ): void;
204
+ describeComputeEnvironments(): Promise<DescribeComputeEnvironmentsCommandOutput>;
204
205
  describeComputeEnvironments(
205
206
  args: DescribeComputeEnvironmentsCommandInput,
206
207
  options?: __HttpHandlerOptions
@@ -214,6 +215,7 @@ export interface Batch {
214
215
  options: __HttpHandlerOptions,
215
216
  cb: (err: any, data?: DescribeComputeEnvironmentsCommandOutput) => void
216
217
  ): void;
218
+ describeJobDefinitions(): Promise<DescribeJobDefinitionsCommandOutput>;
217
219
  describeJobDefinitions(
218
220
  args: DescribeJobDefinitionsCommandInput,
219
221
  options?: __HttpHandlerOptions
@@ -227,6 +229,7 @@ export interface Batch {
227
229
  options: __HttpHandlerOptions,
228
230
  cb: (err: any, data?: DescribeJobDefinitionsCommandOutput) => void
229
231
  ): void;
232
+ describeJobQueues(): Promise<DescribeJobQueuesCommandOutput>;
230
233
  describeJobQueues(
231
234
  args: DescribeJobQueuesCommandInput,
232
235
  options?: __HttpHandlerOptions
@@ -266,6 +269,7 @@ export interface Batch {
266
269
  options: __HttpHandlerOptions,
267
270
  cb: (err: any, data?: DescribeSchedulingPoliciesCommandOutput) => void
268
271
  ): void;
272
+ listJobs(): Promise<ListJobsCommandOutput>;
269
273
  listJobs(
270
274
  args: ListJobsCommandInput,
271
275
  options?: __HttpHandlerOptions
@@ -279,6 +283,7 @@ export interface Batch {
279
283
  options: __HttpHandlerOptions,
280
284
  cb: (err: any, data?: ListJobsCommandOutput) => void
281
285
  ): void;
286
+ listSchedulingPolicies(): Promise<ListSchedulingPoliciesCommandOutput>;
282
287
  listSchedulingPolicies(
283
288
  args: ListSchedulingPoliciesCommandInput,
284
289
  options?: __HttpHandlerOptions
@@ -21,6 +21,15 @@ declare const CancelJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: CancelJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CancelJobCommandInput,
28
+ CancelJobCommandOutput,
29
+ BatchClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class CancelJobCommand extends CancelJobCommand_base {}
@@ -25,6 +25,15 @@ declare const CreateComputeEnvironmentCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateComputeEnvironmentCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateComputeEnvironmentCommandInput,
32
+ CreateComputeEnvironmentCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateComputeEnvironmentCommand extends CreateComputeEnvironmentCommand_base {}
@@ -24,6 +24,15 @@ declare const CreateJobQueueCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: CreateJobQueueCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ CreateJobQueueCommandInput,
31
+ CreateJobQueueCommandOutput,
32
+ BatchClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class CreateJobQueueCommand extends CreateJobQueueCommand_base {}
@@ -25,6 +25,15 @@ declare const CreateSchedulingPolicyCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: CreateSchedulingPolicyCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateSchedulingPolicyCommandInput,
32
+ CreateSchedulingPolicyCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class CreateSchedulingPolicyCommand extends CreateSchedulingPolicyCommand_base {}
@@ -25,6 +25,15 @@ declare const DeleteComputeEnvironmentCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DeleteComputeEnvironmentCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteComputeEnvironmentCommandInput,
32
+ DeleteComputeEnvironmentCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DeleteComputeEnvironmentCommand extends DeleteComputeEnvironmentCommand_base {}
@@ -24,6 +24,15 @@ declare const DeleteJobQueueCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: DeleteJobQueueCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DeleteJobQueueCommandInput,
31
+ DeleteJobQueueCommandOutput,
32
+ BatchClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class DeleteJobQueueCommand extends DeleteJobQueueCommand_base {}
@@ -25,6 +25,15 @@ declare const DeleteSchedulingPolicyCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DeleteSchedulingPolicyCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteSchedulingPolicyCommandInput,
32
+ DeleteSchedulingPolicyCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DeleteSchedulingPolicyCommand extends DeleteSchedulingPolicyCommand_base {}
@@ -25,6 +25,15 @@ declare const DeregisterJobDefinitionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DeregisterJobDefinitionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeregisterJobDefinitionCommandInput,
32
+ DeregisterJobDefinitionCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DeregisterJobDefinitionCommand extends DeregisterJobDefinitionCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeComputeEnvironmentsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [DescribeComputeEnvironmentsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeComputeEnvironmentsCommandInput,
32
+ DescribeComputeEnvironmentsCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeComputeEnvironmentsCommand extends DescribeComputeEnvironmentsCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeJobDefinitionsCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [DescribeJobDefinitionsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeJobDefinitionsCommandInput,
32
+ DescribeJobDefinitionsCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeJobDefinitionsCommand extends DescribeJobDefinitionsCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeJobQueuesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [DescribeJobQueuesCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeJobQueuesCommandInput,
32
+ DescribeJobQueuesCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeJobQueuesCommand extends DescribeJobQueuesCommand_base {}
@@ -21,6 +21,15 @@ declare const DescribeJobsCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: DescribeJobsCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DescribeJobsCommandInput,
28
+ DescribeJobsCommandOutput,
29
+ BatchClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class DescribeJobsCommand extends DescribeJobsCommand_base {}
@@ -25,6 +25,15 @@ declare const DescribeSchedulingPoliciesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: DescribeSchedulingPoliciesCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DescribeSchedulingPoliciesCommandInput,
32
+ DescribeSchedulingPoliciesCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class DescribeSchedulingPoliciesCommand extends DescribeSchedulingPoliciesCommand_base {}
@@ -21,6 +21,15 @@ declare const ListJobsCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ ...[input]: [] | [ListJobsCommandInput]
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ ListJobsCommandInput,
28
+ ListJobsCommandOutput,
29
+ BatchClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class ListJobsCommand extends ListJobsCommand_base {}
@@ -25,6 +25,15 @@ declare const ListSchedulingPoliciesCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ ...[input]: [] | [ListSchedulingPoliciesCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListSchedulingPoliciesCommandInput,
32
+ ListSchedulingPoliciesCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListSchedulingPoliciesCommand extends ListSchedulingPoliciesCommand_base {}
@@ -25,6 +25,15 @@ declare const ListTagsForResourceCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: ListTagsForResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -25,6 +25,15 @@ declare const RegisterJobDefinitionCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: RegisterJobDefinitionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ RegisterJobDefinitionCommandInput,
32
+ RegisterJobDefinitionCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class RegisterJobDefinitionCommand extends RegisterJobDefinitionCommand_base {}
@@ -21,6 +21,15 @@ declare const SubmitJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: SubmitJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ SubmitJobCommandInput,
28
+ SubmitJobCommandOutput,
29
+ BatchClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class SubmitJobCommand extends SubmitJobCommand_base {}
@@ -21,6 +21,15 @@ declare const TagResourceCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: TagResourceCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ TagResourceCommandInput,
28
+ TagResourceCommandOutput,
29
+ BatchClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -21,6 +21,15 @@ declare const TerminateJobCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: TerminateJobCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ TerminateJobCommandInput,
28
+ TerminateJobCommandOutput,
29
+ BatchClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class TerminateJobCommand extends TerminateJobCommand_base {}
@@ -24,6 +24,15 @@ declare const UntagResourceCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: UntagResourceCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ UntagResourceCommandInput,
31
+ UntagResourceCommandOutput,
32
+ BatchClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class UntagResourceCommand extends UntagResourceCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateComputeEnvironmentCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateComputeEnvironmentCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateComputeEnvironmentCommandInput,
32
+ UpdateComputeEnvironmentCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateComputeEnvironmentCommand extends UpdateComputeEnvironmentCommand_base {}
@@ -24,6 +24,15 @@ declare const UpdateJobQueueCommand_base: {
24
24
  ServiceInputTypes,
25
25
  ServiceOutputTypes
26
26
  >;
27
+ new (
28
+ __0_0: UpdateJobQueueCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ UpdateJobQueueCommandInput,
31
+ UpdateJobQueueCommandOutput,
32
+ BatchClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
27
36
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
37
  };
29
38
  export declare class UpdateJobQueueCommand extends UpdateJobQueueCommand_base {}
@@ -25,6 +25,15 @@ declare const UpdateSchedulingPolicyCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: UpdateSchedulingPolicyCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateSchedulingPolicyCommandInput,
32
+ UpdateSchedulingPolicyCommandOutput,
33
+ BatchClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class UpdateSchedulingPolicyCommand extends UpdateSchedulingPolicyCommand_base {}
@@ -6,5 +6,4 @@ export { BatchExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./models";
9
- import "@aws-sdk/util-endpoints";
10
9
  export { BatchServiceException } from "./models/BatchServiceException";
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.533.0",
4
+ "version": "3.540.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-batch",
@@ -20,47 +20,47 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.533.0",
24
- "@aws-sdk/core": "3.533.0",
25
- "@aws-sdk/credential-provider-node": "3.533.0",
26
- "@aws-sdk/middleware-host-header": "3.533.0",
27
- "@aws-sdk/middleware-logger": "3.533.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.533.0",
29
- "@aws-sdk/middleware-user-agent": "3.533.0",
30
- "@aws-sdk/region-config-resolver": "3.533.0",
31
- "@aws-sdk/types": "3.533.0",
32
- "@aws-sdk/util-endpoints": "3.533.0",
33
- "@aws-sdk/util-user-agent-browser": "3.533.0",
34
- "@aws-sdk/util-user-agent-node": "3.533.0",
35
- "@smithy/config-resolver": "^2.1.5",
36
- "@smithy/core": "^1.3.8",
37
- "@smithy/fetch-http-handler": "^2.4.5",
38
- "@smithy/hash-node": "^2.1.4",
39
- "@smithy/invalid-dependency": "^2.1.4",
40
- "@smithy/middleware-content-length": "^2.1.4",
41
- "@smithy/middleware-endpoint": "^2.4.6",
42
- "@smithy/middleware-retry": "^2.1.7",
43
- "@smithy/middleware-serde": "^2.2.1",
44
- "@smithy/middleware-stack": "^2.1.4",
45
- "@smithy/node-config-provider": "^2.2.5",
46
- "@smithy/node-http-handler": "^2.4.3",
47
- "@smithy/protocol-http": "^3.2.2",
48
- "@smithy/smithy-client": "^2.4.5",
49
- "@smithy/types": "^2.11.0",
50
- "@smithy/url-parser": "^2.1.4",
51
- "@smithy/util-base64": "^2.2.1",
52
- "@smithy/util-body-length-browser": "^2.1.1",
53
- "@smithy/util-body-length-node": "^2.2.2",
54
- "@smithy/util-defaults-mode-browser": "^2.1.7",
55
- "@smithy/util-defaults-mode-node": "^2.2.7",
56
- "@smithy/util-endpoints": "^1.1.5",
57
- "@smithy/util-middleware": "^2.1.4",
58
- "@smithy/util-retry": "^2.1.4",
59
- "@smithy/util-utf8": "^2.2.0",
60
- "tslib": "^2.5.0"
23
+ "@aws-sdk/client-sts": "3.540.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/fetch-http-handler": "^2.5.0",
38
+ "@smithy/hash-node": "^2.2.0",
39
+ "@smithy/invalid-dependency": "^2.2.0",
40
+ "@smithy/middleware-content-length": "^2.2.0",
41
+ "@smithy/middleware-endpoint": "^2.5.0",
42
+ "@smithy/middleware-retry": "^2.2.0",
43
+ "@smithy/middleware-serde": "^2.3.0",
44
+ "@smithy/middleware-stack": "^2.2.0",
45
+ "@smithy/node-config-provider": "^2.3.0",
46
+ "@smithy/node-http-handler": "^2.5.0",
47
+ "@smithy/protocol-http": "^3.3.0",
48
+ "@smithy/smithy-client": "^2.5.0",
49
+ "@smithy/types": "^2.12.0",
50
+ "@smithy/url-parser": "^2.2.0",
51
+ "@smithy/util-base64": "^2.3.0",
52
+ "@smithy/util-body-length-browser": "^2.2.0",
53
+ "@smithy/util-body-length-node": "^2.3.0",
54
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
55
+ "@smithy/util-defaults-mode-node": "^2.3.0",
56
+ "@smithy/util-endpoints": "^1.2.0",
57
+ "@smithy/util-middleware": "^2.2.0",
58
+ "@smithy/util-retry": "^2.2.0",
59
+ "@smithy/util-utf8": "^2.3.0",
60
+ "tslib": "^2.6.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@smithy/service-client-documentation-generator": "^2.1.1",
63
+ "@smithy/service-client-documentation-generator": "^2.2.0",
64
64
  "@tsconfig/node14": "1.0.3",
65
65
  "@types/node": "^14.14.31",
66
66
  "concurrently": "7.0.0",