@aws-sdk/client-batch 3.169.0 → 3.171.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 +412 -125
- package/dist-types/ts3.4/BatchClient.d.ts +248 -97
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateComputeEnvironmentCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateJobQueueCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateSchedulingPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteComputeEnvironmentCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteJobQueueCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteSchedulingPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeregisterJobDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeComputeEnvironmentsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeJobDefinitionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeJobQueuesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeJobsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeSchedulingPoliciesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListSchedulingPoliciesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/RegisterJobDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/SubmitJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TerminateJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateComputeEnvironmentCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateJobQueueCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateSchedulingPolicyCommand.d.ts +39 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +951 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
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
|
+
export declare class RegisterJobDefinitionCommand extends $Command<
|
|
23
|
+
RegisterJobDefinitionCommandInput,
|
|
24
|
+
RegisterJobDefinitionCommandOutput,
|
|
25
|
+
BatchClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: RegisterJobDefinitionCommandInput;
|
|
28
|
+
constructor(input: RegisterJobDefinitionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BatchClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
RegisterJobDefinitionCommandInput,
|
|
35
|
+
RegisterJobDefinitionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { SubmitJobRequest, SubmitJobResponse } from "../models/models_0";
|
|
14
|
+
export interface SubmitJobCommandInput extends SubmitJobRequest {}
|
|
15
|
+
export interface SubmitJobCommandOutput
|
|
16
|
+
extends SubmitJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class SubmitJobCommand extends $Command<
|
|
19
|
+
SubmitJobCommandInput,
|
|
20
|
+
SubmitJobCommandOutput,
|
|
21
|
+
BatchClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: SubmitJobCommandInput;
|
|
24
|
+
constructor(input: SubmitJobCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: BatchClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<SubmitJobCommandInput, SubmitJobCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
BatchClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: BatchClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { TerminateJobRequest, TerminateJobResponse } from "../models/models_0";
|
|
14
|
+
export interface TerminateJobCommandInput extends TerminateJobRequest {}
|
|
15
|
+
export interface TerminateJobCommandOutput
|
|
16
|
+
extends TerminateJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TerminateJobCommand extends $Command<
|
|
19
|
+
TerminateJobCommandInput,
|
|
20
|
+
TerminateJobCommandOutput,
|
|
21
|
+
BatchClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TerminateJobCommandInput;
|
|
24
|
+
constructor(input: TerminateJobCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: BatchClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TerminateJobCommandInput, TerminateJobCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
BatchClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BatchClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
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
|
+
export declare class UpdateComputeEnvironmentCommand extends $Command<
|
|
23
|
+
UpdateComputeEnvironmentCommandInput,
|
|
24
|
+
UpdateComputeEnvironmentCommandOutput,
|
|
25
|
+
BatchClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateComputeEnvironmentCommandInput;
|
|
28
|
+
constructor(input: UpdateComputeEnvironmentCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BatchClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateComputeEnvironmentCommandInput,
|
|
35
|
+
UpdateComputeEnvironmentCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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
|
+
UpdateJobQueueRequest,
|
|
15
|
+
UpdateJobQueueResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateJobQueueCommandInput extends UpdateJobQueueRequest {}
|
|
18
|
+
export interface UpdateJobQueueCommandOutput
|
|
19
|
+
extends UpdateJobQueueResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UpdateJobQueueCommand extends $Command<
|
|
22
|
+
UpdateJobQueueCommandInput,
|
|
23
|
+
UpdateJobQueueCommandOutput,
|
|
24
|
+
BatchClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UpdateJobQueueCommandInput;
|
|
27
|
+
constructor(input: UpdateJobQueueCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: BatchClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateJobQueueCommandInput, UpdateJobQueueCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
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
|
+
export declare class UpdateSchedulingPolicyCommand extends $Command<
|
|
23
|
+
UpdateSchedulingPolicyCommandInput,
|
|
24
|
+
UpdateSchedulingPolicyCommandOutput,
|
|
25
|
+
BatchClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateSchedulingPolicyCommandInput;
|
|
28
|
+
constructor(input: UpdateSchedulingPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: BatchClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
UpdateSchedulingPolicyCommandInput,
|
|
35
|
+
UpdateSchedulingPolicyCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class BatchServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|