@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,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 { DeleteComputeEnvironmentRequest, DeleteComputeEnvironmentResponse } from "../models/models_0";
5
- export interface DeleteComputeEnvironmentCommandInput extends DeleteComputeEnvironmentRequest {
6
- }
7
- export interface DeleteComputeEnvironmentCommandOutput extends DeleteComputeEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteComputeEnvironmentCommand extends $Command<DeleteComputeEnvironmentCommandInput, DeleteComputeEnvironmentCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DeleteComputeEnvironmentCommandInput;
12
- constructor(input: DeleteComputeEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteComputeEnvironmentCommandInput, DeleteComputeEnvironmentCommandOutput>;
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
+ DeleteComputeEnvironmentRequest,
15
+ DeleteComputeEnvironmentResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteComputeEnvironmentCommandInput
18
+ extends DeleteComputeEnvironmentRequest {}
19
+ export interface DeleteComputeEnvironmentCommandOutput
20
+ extends DeleteComputeEnvironmentResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteComputeEnvironmentCommand extends $Command<
24
+ DeleteComputeEnvironmentCommandInput,
25
+ DeleteComputeEnvironmentCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteComputeEnvironmentCommandInput;
29
+ constructor(input: DeleteComputeEnvironmentCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteComputeEnvironmentCommandInput,
37
+ DeleteComputeEnvironmentCommandOutput
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 { DeleteJobQueueRequest, DeleteJobQueueResponse } from "../models/models_0";
5
- export interface DeleteJobQueueCommandInput extends DeleteJobQueueRequest {
6
- }
7
- export interface DeleteJobQueueCommandOutput extends DeleteJobQueueResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteJobQueueCommand extends $Command<DeleteJobQueueCommandInput, DeleteJobQueueCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DeleteJobQueueCommandInput;
12
- constructor(input: DeleteJobQueueCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteJobQueueCommandInput, DeleteJobQueueCommandOutput>;
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
+ DeleteJobQueueRequest,
15
+ DeleteJobQueueResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteJobQueueCommandInput extends DeleteJobQueueRequest {}
18
+ export interface DeleteJobQueueCommandOutput
19
+ extends DeleteJobQueueResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteJobQueueCommand extends $Command<
23
+ DeleteJobQueueCommandInput,
24
+ DeleteJobQueueCommandOutput,
25
+ BatchClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteJobQueueCommandInput;
28
+ constructor(input: DeleteJobQueueCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: BatchClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteJobQueueCommandInput, DeleteJobQueueCommandOutput>;
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 { DeleteSchedulingPolicyRequest, DeleteSchedulingPolicyResponse } from "../models/models_0";
5
- export interface DeleteSchedulingPolicyCommandInput extends DeleteSchedulingPolicyRequest {
6
- }
7
- export interface DeleteSchedulingPolicyCommandOutput extends DeleteSchedulingPolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteSchedulingPolicyCommand extends $Command<DeleteSchedulingPolicyCommandInput, DeleteSchedulingPolicyCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DeleteSchedulingPolicyCommandInput;
12
- constructor(input: DeleteSchedulingPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSchedulingPolicyCommandInput, DeleteSchedulingPolicyCommandOutput>;
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
+ DeleteSchedulingPolicyRequest,
15
+ DeleteSchedulingPolicyResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteSchedulingPolicyCommandInput
18
+ extends DeleteSchedulingPolicyRequest {}
19
+ export interface DeleteSchedulingPolicyCommandOutput
20
+ extends DeleteSchedulingPolicyResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteSchedulingPolicyCommand extends $Command<
24
+ DeleteSchedulingPolicyCommandInput,
25
+ DeleteSchedulingPolicyCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteSchedulingPolicyCommandInput;
29
+ constructor(input: DeleteSchedulingPolicyCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteSchedulingPolicyCommandInput,
37
+ DeleteSchedulingPolicyCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { DeregisterJobDefinitionRequest, DeregisterJobDefinitionResponse } from "../models/models_0";
5
- export interface DeregisterJobDefinitionCommandInput extends DeregisterJobDefinitionRequest {
6
- }
7
- export interface DeregisterJobDefinitionCommandOutput extends DeregisterJobDefinitionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeregisterJobDefinitionCommand extends $Command<DeregisterJobDefinitionCommandInput, DeregisterJobDefinitionCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DeregisterJobDefinitionCommandInput;
12
- constructor(input: DeregisterJobDefinitionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterJobDefinitionCommandInput, DeregisterJobDefinitionCommandOutput>;
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
+ DeregisterJobDefinitionRequest,
15
+ DeregisterJobDefinitionResponse,
16
+ } from "../models/models_0";
17
+ export interface DeregisterJobDefinitionCommandInput
18
+ extends DeregisterJobDefinitionRequest {}
19
+ export interface DeregisterJobDefinitionCommandOutput
20
+ extends DeregisterJobDefinitionResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeregisterJobDefinitionCommand extends $Command<
24
+ DeregisterJobDefinitionCommandInput,
25
+ DeregisterJobDefinitionCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: DeregisterJobDefinitionCommandInput;
29
+ constructor(input: DeregisterJobDefinitionCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeregisterJobDefinitionCommandInput,
37
+ DeregisterJobDefinitionCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { DescribeComputeEnvironmentsRequest, DescribeComputeEnvironmentsResponse } from "../models/models_0";
5
- export interface DescribeComputeEnvironmentsCommandInput extends DescribeComputeEnvironmentsRequest {
6
- }
7
- export interface DescribeComputeEnvironmentsCommandOutput extends DescribeComputeEnvironmentsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeComputeEnvironmentsCommand extends $Command<DescribeComputeEnvironmentsCommandInput, DescribeComputeEnvironmentsCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DescribeComputeEnvironmentsCommandInput;
12
- constructor(input: DescribeComputeEnvironmentsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeComputeEnvironmentsCommandInput, DescribeComputeEnvironmentsCommandOutput>;
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
+ DescribeComputeEnvironmentsRequest,
15
+ DescribeComputeEnvironmentsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeComputeEnvironmentsCommandInput
18
+ extends DescribeComputeEnvironmentsRequest {}
19
+ export interface DescribeComputeEnvironmentsCommandOutput
20
+ extends DescribeComputeEnvironmentsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeComputeEnvironmentsCommand extends $Command<
24
+ DescribeComputeEnvironmentsCommandInput,
25
+ DescribeComputeEnvironmentsCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeComputeEnvironmentsCommandInput;
29
+ constructor(input: DescribeComputeEnvironmentsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeComputeEnvironmentsCommandInput,
37
+ DescribeComputeEnvironmentsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { DescribeJobDefinitionsRequest, DescribeJobDefinitionsResponse } from "../models/models_0";
5
- export interface DescribeJobDefinitionsCommandInput extends DescribeJobDefinitionsRequest {
6
- }
7
- export interface DescribeJobDefinitionsCommandOutput extends DescribeJobDefinitionsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeJobDefinitionsCommand extends $Command<DescribeJobDefinitionsCommandInput, DescribeJobDefinitionsCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DescribeJobDefinitionsCommandInput;
12
- constructor(input: DescribeJobDefinitionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobDefinitionsCommandInput, DescribeJobDefinitionsCommandOutput>;
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
+ DescribeJobDefinitionsRequest,
15
+ DescribeJobDefinitionsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeJobDefinitionsCommandInput
18
+ extends DescribeJobDefinitionsRequest {}
19
+ export interface DescribeJobDefinitionsCommandOutput
20
+ extends DescribeJobDefinitionsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeJobDefinitionsCommand extends $Command<
24
+ DescribeJobDefinitionsCommandInput,
25
+ DescribeJobDefinitionsCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeJobDefinitionsCommandInput;
29
+ constructor(input: DescribeJobDefinitionsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeJobDefinitionsCommandInput,
37
+ DescribeJobDefinitionsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { DescribeJobQueuesRequest, DescribeJobQueuesResponse } from "../models/models_0";
5
- export interface DescribeJobQueuesCommandInput extends DescribeJobQueuesRequest {
6
- }
7
- export interface DescribeJobQueuesCommandOutput extends DescribeJobQueuesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeJobQueuesCommand extends $Command<DescribeJobQueuesCommandInput, DescribeJobQueuesCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DescribeJobQueuesCommandInput;
12
- constructor(input: DescribeJobQueuesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobQueuesCommandInput, DescribeJobQueuesCommandOutput>;
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
+ DescribeJobQueuesRequest,
15
+ DescribeJobQueuesResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeJobQueuesCommandInput
18
+ extends DescribeJobQueuesRequest {}
19
+ export interface DescribeJobQueuesCommandOutput
20
+ extends DescribeJobQueuesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeJobQueuesCommand extends $Command<
24
+ DescribeJobQueuesCommandInput,
25
+ DescribeJobQueuesCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeJobQueuesCommandInput;
29
+ constructor(input: DescribeJobQueuesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeJobQueuesCommandInput, DescribeJobQueuesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -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 { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0";
5
- export interface DescribeJobsCommandInput extends DescribeJobsRequest {
6
- }
7
- export interface DescribeJobsCommandOutput extends DescribeJobsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeJobsCommand extends $Command<DescribeJobsCommandInput, DescribeJobsCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DescribeJobsCommandInput;
12
- constructor(input: DescribeJobsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobsCommandInput, DescribeJobsCommandOutput>;
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 { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0";
14
+ export interface DescribeJobsCommandInput extends DescribeJobsRequest {}
15
+ export interface DescribeJobsCommandOutput
16
+ extends DescribeJobsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DescribeJobsCommand extends $Command<
20
+ DescribeJobsCommandInput,
21
+ DescribeJobsCommandOutput,
22
+ BatchClientResolvedConfig
23
+ > {
24
+ readonly input: DescribeJobsCommandInput;
25
+ constructor(input: DescribeJobsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: BatchClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DescribeJobsCommandInput, DescribeJobsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { DescribeSchedulingPoliciesRequest, DescribeSchedulingPoliciesResponse } from "../models/models_0";
5
- export interface DescribeSchedulingPoliciesCommandInput extends DescribeSchedulingPoliciesRequest {
6
- }
7
- export interface DescribeSchedulingPoliciesCommandOutput extends DescribeSchedulingPoliciesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeSchedulingPoliciesCommand extends $Command<DescribeSchedulingPoliciesCommandInput, DescribeSchedulingPoliciesCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: DescribeSchedulingPoliciesCommandInput;
12
- constructor(input: DescribeSchedulingPoliciesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSchedulingPoliciesCommandInput, DescribeSchedulingPoliciesCommandOutput>;
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
+ DescribeSchedulingPoliciesRequest,
15
+ DescribeSchedulingPoliciesResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeSchedulingPoliciesCommandInput
18
+ extends DescribeSchedulingPoliciesRequest {}
19
+ export interface DescribeSchedulingPoliciesCommandOutput
20
+ extends DescribeSchedulingPoliciesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeSchedulingPoliciesCommand extends $Command<
24
+ DescribeSchedulingPoliciesCommandInput,
25
+ DescribeSchedulingPoliciesCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeSchedulingPoliciesCommandInput;
29
+ constructor(input: DescribeSchedulingPoliciesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeSchedulingPoliciesCommandInput,
37
+ DescribeSchedulingPoliciesCommandOutput
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 { ListJobsRequest, ListJobsResponse } from "../models/models_0";
5
- export interface ListJobsCommandInput extends ListJobsRequest {
6
- }
7
- export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: ListJobsCommandInput;
12
- constructor(input: ListJobsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
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 { ListJobsRequest, ListJobsResponse } from "../models/models_0";
14
+ export interface ListJobsCommandInput extends ListJobsRequest {}
15
+ export interface ListJobsCommandOutput
16
+ extends ListJobsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListJobsCommand extends $Command<
20
+ ListJobsCommandInput,
21
+ ListJobsCommandOutput,
22
+ BatchClientResolvedConfig
23
+ > {
24
+ readonly input: ListJobsCommandInput;
25
+ constructor(input: ListJobsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: BatchClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { ListSchedulingPoliciesRequest, ListSchedulingPoliciesResponse } from "../models/models_0";
5
- export interface ListSchedulingPoliciesCommandInput extends ListSchedulingPoliciesRequest {
6
- }
7
- export interface ListSchedulingPoliciesCommandOutput extends ListSchedulingPoliciesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListSchedulingPoliciesCommand extends $Command<ListSchedulingPoliciesCommandInput, ListSchedulingPoliciesCommandOutput, BatchClientResolvedConfig> {
11
- readonly input: ListSchedulingPoliciesCommandInput;
12
- constructor(input: ListSchedulingPoliciesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BatchClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSchedulingPoliciesCommandInput, ListSchedulingPoliciesCommandOutput>;
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
+ ListSchedulingPoliciesRequest,
15
+ ListSchedulingPoliciesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListSchedulingPoliciesCommandInput
18
+ extends ListSchedulingPoliciesRequest {}
19
+ export interface ListSchedulingPoliciesCommandOutput
20
+ extends ListSchedulingPoliciesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListSchedulingPoliciesCommand extends $Command<
24
+ ListSchedulingPoliciesCommandInput,
25
+ ListSchedulingPoliciesCommandOutput,
26
+ BatchClientResolvedConfig
27
+ > {
28
+ readonly input: ListSchedulingPoliciesCommandInput;
29
+ constructor(input: ListSchedulingPoliciesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: BatchClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListSchedulingPoliciesCommandInput,
37
+ ListSchedulingPoliciesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }