@aws-sdk/client-batch 3.168.0 → 3.170.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 (46) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Batch.d.ts +436 -125
  3. package/dist-types/ts3.4/BatchClient.d.ts +273 -97
  4. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/index.d.ts +24 -24
  29. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  30. package/dist-types/ts3.4/index.d.ts +6 -6
  31. package/dist-types/ts3.4/models/BatchServiceException.d.ts +8 -6
  32. package/dist-types/ts3.4/models/index.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +1418 -1345
  34. package/dist-types/ts3.4/pagination/DescribeComputeEnvironmentsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/DescribeJobDefinitionsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/DescribeJobQueuesPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  38. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListSchedulingPoliciesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  41. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  46. package/package.json +34 -34
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { RegisterJobDefinitionRequest, RegisterJobDefinitionResponse } from "../models/models_0";
5
- export interface RegisterJobDefinitionCommandInput extends RegisterJobDefinitionRequest {
6
- }
7
- export interface RegisterJobDefinitionCommandOutput extends RegisterJobDefinitionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class RegisterJobDefinitionCommand extends $Command<RegisterJobDefinitionCommandInput, RegisterJobDefinitionCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: RegisterJobDefinitionCommandInput;
12
- constructor(input: RegisterJobDefinitionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterJobDefinitionCommandInput, RegisterJobDefinitionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import {
14
+ RegisterJobDefinitionRequest,
15
+ RegisterJobDefinitionResponse,
16
+ } from "../models/models_0";
17
+ export interface RegisterJobDefinitionCommandInput
18
+ extends RegisterJobDefinitionRequest {}
19
+ export interface RegisterJobDefinitionCommandOutput
20
+ extends RegisterJobDefinitionResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class RegisterJobDefinitionCommand extends $Command<
24
+ RegisterJobDefinitionCommandInput,
25
+ RegisterJobDefinitionCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: RegisterJobDefinitionCommandInput;
29
+ constructor(input: RegisterJobDefinitionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ RegisterJobDefinitionCommandInput,
37
+ RegisterJobDefinitionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { SubmitJobRequest, SubmitJobResponse } from "../models/models_0";
5
- export interface SubmitJobCommandInput extends SubmitJobRequest {
6
- }
7
- export interface SubmitJobCommandOutput extends SubmitJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SubmitJobCommand extends $Command<SubmitJobCommandInput, SubmitJobCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: SubmitJobCommandInput;
12
- constructor(input: SubmitJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SubmitJobCommandInput, SubmitJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import { SubmitJobRequest, SubmitJobResponse } from "../models/models_0";
14
+ export interface SubmitJobCommandInput extends SubmitJobRequest {}
15
+ export interface SubmitJobCommandOutput
16
+ extends SubmitJobResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class SubmitJobCommand extends $Command<
20
+ SubmitJobCommandInput,
21
+ SubmitJobCommandOutput,
22
+ BatchClientResolvedConfig
23
+ > {
24
+ readonly input: SubmitJobCommandInput;
25
+ constructor(input: SubmitJobCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: BatchClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<SubmitJobCommandInput, SubmitJobCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ BatchClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: BatchClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { TerminateJobRequest, TerminateJobResponse } from "../models/models_0";
5
- export interface TerminateJobCommandInput extends TerminateJobRequest {
6
- }
7
- export interface TerminateJobCommandOutput extends TerminateJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TerminateJobCommand extends $Command<TerminateJobCommandInput, TerminateJobCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: TerminateJobCommandInput;
12
- constructor(input: TerminateJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TerminateJobCommandInput, TerminateJobCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import { TerminateJobRequest, TerminateJobResponse } from "../models/models_0";
14
+ export interface TerminateJobCommandInput extends TerminateJobRequest {}
15
+ export interface TerminateJobCommandOutput
16
+ extends TerminateJobResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TerminateJobCommand extends $Command<
20
+ TerminateJobCommandInput,
21
+ TerminateJobCommandOutput,
22
+ BatchClientResolvedConfig
23
+ > {
24
+ readonly input: TerminateJobCommandInput;
25
+ constructor(input: TerminateJobCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: BatchClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TerminateJobCommandInput, TerminateJobCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ BatchClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: BatchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { UpdateComputeEnvironmentRequest, UpdateComputeEnvironmentResponse } from "../models/models_0";
5
- export interface UpdateComputeEnvironmentCommandInput extends UpdateComputeEnvironmentRequest {
6
- }
7
- export interface UpdateComputeEnvironmentCommandOutput extends UpdateComputeEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateComputeEnvironmentCommand extends $Command<UpdateComputeEnvironmentCommandInput, UpdateComputeEnvironmentCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: UpdateComputeEnvironmentCommandInput;
12
- constructor(input: UpdateComputeEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateComputeEnvironmentCommandInput, UpdateComputeEnvironmentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import {
14
+ UpdateComputeEnvironmentRequest,
15
+ UpdateComputeEnvironmentResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateComputeEnvironmentCommandInput
18
+ extends UpdateComputeEnvironmentRequest {}
19
+ export interface UpdateComputeEnvironmentCommandOutput
20
+ extends UpdateComputeEnvironmentResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateComputeEnvironmentCommand extends $Command<
24
+ UpdateComputeEnvironmentCommandInput,
25
+ UpdateComputeEnvironmentCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateComputeEnvironmentCommandInput;
29
+ constructor(input: UpdateComputeEnvironmentCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateComputeEnvironmentCommandInput,
37
+ UpdateComputeEnvironmentCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { UpdateJobQueueRequest, UpdateJobQueueResponse } from "../models/models_0";
5
- export interface UpdateJobQueueCommandInput extends UpdateJobQueueRequest {
6
- }
7
- export interface UpdateJobQueueCommandOutput extends UpdateJobQueueResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateJobQueueCommand extends $Command<UpdateJobQueueCommandInput, UpdateJobQueueCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: UpdateJobQueueCommandInput;
12
- constructor(input: UpdateJobQueueCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateJobQueueCommandInput, UpdateJobQueueCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import {
14
+ UpdateJobQueueRequest,
15
+ UpdateJobQueueResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateJobQueueCommandInput extends UpdateJobQueueRequest {}
18
+ export interface UpdateJobQueueCommandOutput
19
+ extends UpdateJobQueueResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateJobQueueCommand extends $Command<
23
+ UpdateJobQueueCommandInput,
24
+ UpdateJobQueueCommandOutput,
25
+ BatchClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateJobQueueCommandInput;
28
+ constructor(input: UpdateJobQueueCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: BatchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateJobQueueCommandInput, UpdateJobQueueCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient";
4
- import { UpdateSchedulingPolicyRequest, UpdateSchedulingPolicyResponse } from "../models/models_0";
5
- export interface UpdateSchedulingPolicyCommandInput extends UpdateSchedulingPolicyRequest {
6
- }
7
- export interface UpdateSchedulingPolicyCommandOutput extends UpdateSchedulingPolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSchedulingPolicyCommand extends $Command<UpdateSchedulingPolicyCommandInput, UpdateSchedulingPolicyCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: UpdateSchedulingPolicyCommandInput;
12
- constructor(input: UpdateSchedulingPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSchedulingPolicyCommandInput, UpdateSchedulingPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ BatchClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../BatchClient";
13
+ import {
14
+ UpdateSchedulingPolicyRequest,
15
+ UpdateSchedulingPolicyResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateSchedulingPolicyCommandInput
18
+ extends UpdateSchedulingPolicyRequest {}
19
+ export interface UpdateSchedulingPolicyCommandOutput
20
+ extends UpdateSchedulingPolicyResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateSchedulingPolicyCommand extends $Command<
24
+ UpdateSchedulingPolicyCommandInput,
25
+ UpdateSchedulingPolicyCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateSchedulingPolicyCommandInput;
29
+ constructor(input: UpdateSchedulingPolicyCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateSchedulingPolicyCommandInput,
37
+ UpdateSchedulingPolicyCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,24 +1,24 @@
1
- export * from "./CancelJobCommand";
2
- export * from "./CreateComputeEnvironmentCommand";
3
- export * from "./CreateJobQueueCommand";
4
- export * from "./CreateSchedulingPolicyCommand";
5
- export * from "./DeleteComputeEnvironmentCommand";
6
- export * from "./DeleteJobQueueCommand";
7
- export * from "./DeleteSchedulingPolicyCommand";
8
- export * from "./DeregisterJobDefinitionCommand";
9
- export * from "./DescribeComputeEnvironmentsCommand";
10
- export * from "./DescribeJobDefinitionsCommand";
11
- export * from "./DescribeJobQueuesCommand";
12
- export * from "./DescribeJobsCommand";
13
- export * from "./DescribeSchedulingPoliciesCommand";
14
- export * from "./ListJobsCommand";
15
- export * from "./ListSchedulingPoliciesCommand";
16
- export * from "./ListTagsForResourceCommand";
17
- export * from "./RegisterJobDefinitionCommand";
18
- export * from "./SubmitJobCommand";
19
- export * from "./TagResourceCommand";
20
- export * from "./TerminateJobCommand";
21
- export * from "./UntagResourceCommand";
22
- export * from "./UpdateComputeEnvironmentCommand";
23
- export * from "./UpdateJobQueueCommand";
24
- export * from "./UpdateSchedulingPolicyCommand";
1
+ export * from "./CancelJobCommand";
2
+ export * from "./CreateComputeEnvironmentCommand";
3
+ export * from "./CreateJobQueueCommand";
4
+ export * from "./CreateSchedulingPolicyCommand";
5
+ export * from "./DeleteComputeEnvironmentCommand";
6
+ export * from "./DeleteJobQueueCommand";
7
+ export * from "./DeleteSchedulingPolicyCommand";
8
+ export * from "./DeregisterJobDefinitionCommand";
9
+ export * from "./DescribeComputeEnvironmentsCommand";
10
+ export * from "./DescribeJobDefinitionsCommand";
11
+ export * from "./DescribeJobQueuesCommand";
12
+ export * from "./DescribeJobsCommand";
13
+ export * from "./DescribeSchedulingPoliciesCommand";
14
+ export * from "./ListJobsCommand";
15
+ export * from "./ListSchedulingPoliciesCommand";
16
+ export * from "./ListTagsForResourceCommand";
17
+ export * from "./RegisterJobDefinitionCommand";
18
+ export * from "./SubmitJobCommand";
19
+ export * from "./TagResourceCommand";
20
+ export * from "./TerminateJobCommand";
21
+ export * from "./UntagResourceCommand";
22
+ export * from "./UpdateComputeEnvironmentCommand";
23
+ export * from "./UpdateJobQueueCommand";
24
+ export * from "./UpdateSchedulingPolicyCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Batch";
2
- export * from "./BatchClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { BatchServiceException } from "./models/BatchServiceException";
1
+ export * from "./Batch";
2
+ export * from "./BatchClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { BatchServiceException } from "./models/BatchServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class BatchServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class BatchServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";