@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Batch.d.ts +436 -125
- package/dist-types/ts3.4/BatchClient.d.ts +273 -97
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +24 -24
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/BatchServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1418 -1345
- package/dist-types/ts3.4/pagination/DescribeComputeEnvironmentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeJobDefinitionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeJobQueuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSchedulingPoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|