@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,97 +1,273 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
}
|
|
97
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CancelJobCommandInput,
|
|
47
|
+
CancelJobCommandOutput,
|
|
48
|
+
} from "./commands/CancelJobCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateComputeEnvironmentCommandInput,
|
|
51
|
+
CreateComputeEnvironmentCommandOutput,
|
|
52
|
+
} from "./commands/CreateComputeEnvironmentCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreateJobQueueCommandInput,
|
|
55
|
+
CreateJobQueueCommandOutput,
|
|
56
|
+
} from "./commands/CreateJobQueueCommand";
|
|
57
|
+
import {
|
|
58
|
+
CreateSchedulingPolicyCommandInput,
|
|
59
|
+
CreateSchedulingPolicyCommandOutput,
|
|
60
|
+
} from "./commands/CreateSchedulingPolicyCommand";
|
|
61
|
+
import {
|
|
62
|
+
DeleteComputeEnvironmentCommandInput,
|
|
63
|
+
DeleteComputeEnvironmentCommandOutput,
|
|
64
|
+
} from "./commands/DeleteComputeEnvironmentCommand";
|
|
65
|
+
import {
|
|
66
|
+
DeleteJobQueueCommandInput,
|
|
67
|
+
DeleteJobQueueCommandOutput,
|
|
68
|
+
} from "./commands/DeleteJobQueueCommand";
|
|
69
|
+
import {
|
|
70
|
+
DeleteSchedulingPolicyCommandInput,
|
|
71
|
+
DeleteSchedulingPolicyCommandOutput,
|
|
72
|
+
} from "./commands/DeleteSchedulingPolicyCommand";
|
|
73
|
+
import {
|
|
74
|
+
DeregisterJobDefinitionCommandInput,
|
|
75
|
+
DeregisterJobDefinitionCommandOutput,
|
|
76
|
+
} from "./commands/DeregisterJobDefinitionCommand";
|
|
77
|
+
import {
|
|
78
|
+
DescribeComputeEnvironmentsCommandInput,
|
|
79
|
+
DescribeComputeEnvironmentsCommandOutput,
|
|
80
|
+
} from "./commands/DescribeComputeEnvironmentsCommand";
|
|
81
|
+
import {
|
|
82
|
+
DescribeJobDefinitionsCommandInput,
|
|
83
|
+
DescribeJobDefinitionsCommandOutput,
|
|
84
|
+
} from "./commands/DescribeJobDefinitionsCommand";
|
|
85
|
+
import {
|
|
86
|
+
DescribeJobQueuesCommandInput,
|
|
87
|
+
DescribeJobQueuesCommandOutput,
|
|
88
|
+
} from "./commands/DescribeJobQueuesCommand";
|
|
89
|
+
import {
|
|
90
|
+
DescribeJobsCommandInput,
|
|
91
|
+
DescribeJobsCommandOutput,
|
|
92
|
+
} from "./commands/DescribeJobsCommand";
|
|
93
|
+
import {
|
|
94
|
+
DescribeSchedulingPoliciesCommandInput,
|
|
95
|
+
DescribeSchedulingPoliciesCommandOutput,
|
|
96
|
+
} from "./commands/DescribeSchedulingPoliciesCommand";
|
|
97
|
+
import {
|
|
98
|
+
ListJobsCommandInput,
|
|
99
|
+
ListJobsCommandOutput,
|
|
100
|
+
} from "./commands/ListJobsCommand";
|
|
101
|
+
import {
|
|
102
|
+
ListSchedulingPoliciesCommandInput,
|
|
103
|
+
ListSchedulingPoliciesCommandOutput,
|
|
104
|
+
} from "./commands/ListSchedulingPoliciesCommand";
|
|
105
|
+
import {
|
|
106
|
+
ListTagsForResourceCommandInput,
|
|
107
|
+
ListTagsForResourceCommandOutput,
|
|
108
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
109
|
+
import {
|
|
110
|
+
RegisterJobDefinitionCommandInput,
|
|
111
|
+
RegisterJobDefinitionCommandOutput,
|
|
112
|
+
} from "./commands/RegisterJobDefinitionCommand";
|
|
113
|
+
import {
|
|
114
|
+
SubmitJobCommandInput,
|
|
115
|
+
SubmitJobCommandOutput,
|
|
116
|
+
} from "./commands/SubmitJobCommand";
|
|
117
|
+
import {
|
|
118
|
+
TagResourceCommandInput,
|
|
119
|
+
TagResourceCommandOutput,
|
|
120
|
+
} from "./commands/TagResourceCommand";
|
|
121
|
+
import {
|
|
122
|
+
TerminateJobCommandInput,
|
|
123
|
+
TerminateJobCommandOutput,
|
|
124
|
+
} from "./commands/TerminateJobCommand";
|
|
125
|
+
import {
|
|
126
|
+
UntagResourceCommandInput,
|
|
127
|
+
UntagResourceCommandOutput,
|
|
128
|
+
} from "./commands/UntagResourceCommand";
|
|
129
|
+
import {
|
|
130
|
+
UpdateComputeEnvironmentCommandInput,
|
|
131
|
+
UpdateComputeEnvironmentCommandOutput,
|
|
132
|
+
} from "./commands/UpdateComputeEnvironmentCommand";
|
|
133
|
+
import {
|
|
134
|
+
UpdateJobQueueCommandInput,
|
|
135
|
+
UpdateJobQueueCommandOutput,
|
|
136
|
+
} from "./commands/UpdateJobQueueCommand";
|
|
137
|
+
import {
|
|
138
|
+
UpdateSchedulingPolicyCommandInput,
|
|
139
|
+
UpdateSchedulingPolicyCommandOutput,
|
|
140
|
+
} from "./commands/UpdateSchedulingPolicyCommand";
|
|
141
|
+
export declare type ServiceInputTypes =
|
|
142
|
+
| CancelJobCommandInput
|
|
143
|
+
| CreateComputeEnvironmentCommandInput
|
|
144
|
+
| CreateJobQueueCommandInput
|
|
145
|
+
| CreateSchedulingPolicyCommandInput
|
|
146
|
+
| DeleteComputeEnvironmentCommandInput
|
|
147
|
+
| DeleteJobQueueCommandInput
|
|
148
|
+
| DeleteSchedulingPolicyCommandInput
|
|
149
|
+
| DeregisterJobDefinitionCommandInput
|
|
150
|
+
| DescribeComputeEnvironmentsCommandInput
|
|
151
|
+
| DescribeJobDefinitionsCommandInput
|
|
152
|
+
| DescribeJobQueuesCommandInput
|
|
153
|
+
| DescribeJobsCommandInput
|
|
154
|
+
| DescribeSchedulingPoliciesCommandInput
|
|
155
|
+
| ListJobsCommandInput
|
|
156
|
+
| ListSchedulingPoliciesCommandInput
|
|
157
|
+
| ListTagsForResourceCommandInput
|
|
158
|
+
| RegisterJobDefinitionCommandInput
|
|
159
|
+
| SubmitJobCommandInput
|
|
160
|
+
| TagResourceCommandInput
|
|
161
|
+
| TerminateJobCommandInput
|
|
162
|
+
| UntagResourceCommandInput
|
|
163
|
+
| UpdateComputeEnvironmentCommandInput
|
|
164
|
+
| UpdateJobQueueCommandInput
|
|
165
|
+
| UpdateSchedulingPolicyCommandInput;
|
|
166
|
+
export declare type ServiceOutputTypes =
|
|
167
|
+
| CancelJobCommandOutput
|
|
168
|
+
| CreateComputeEnvironmentCommandOutput
|
|
169
|
+
| CreateJobQueueCommandOutput
|
|
170
|
+
| CreateSchedulingPolicyCommandOutput
|
|
171
|
+
| DeleteComputeEnvironmentCommandOutput
|
|
172
|
+
| DeleteJobQueueCommandOutput
|
|
173
|
+
| DeleteSchedulingPolicyCommandOutput
|
|
174
|
+
| DeregisterJobDefinitionCommandOutput
|
|
175
|
+
| DescribeComputeEnvironmentsCommandOutput
|
|
176
|
+
| DescribeJobDefinitionsCommandOutput
|
|
177
|
+
| DescribeJobQueuesCommandOutput
|
|
178
|
+
| DescribeJobsCommandOutput
|
|
179
|
+
| DescribeSchedulingPoliciesCommandOutput
|
|
180
|
+
| ListJobsCommandOutput
|
|
181
|
+
| ListSchedulingPoliciesCommandOutput
|
|
182
|
+
| ListTagsForResourceCommandOutput
|
|
183
|
+
| RegisterJobDefinitionCommandOutput
|
|
184
|
+
| SubmitJobCommandOutput
|
|
185
|
+
| TagResourceCommandOutput
|
|
186
|
+
| TerminateJobCommandOutput
|
|
187
|
+
| UntagResourceCommandOutput
|
|
188
|
+
| UpdateComputeEnvironmentCommandOutput
|
|
189
|
+
| UpdateJobQueueCommandOutput
|
|
190
|
+
| UpdateSchedulingPolicyCommandOutput;
|
|
191
|
+
export interface ClientDefaults
|
|
192
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
193
|
+
requestHandler?: __HttpHandler;
|
|
194
|
+
|
|
195
|
+
sha256?: __HashConstructor;
|
|
196
|
+
|
|
197
|
+
urlParser?: __UrlParser;
|
|
198
|
+
|
|
199
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
200
|
+
|
|
201
|
+
streamCollector?: __StreamCollector;
|
|
202
|
+
|
|
203
|
+
base64Decoder?: __Decoder;
|
|
204
|
+
|
|
205
|
+
base64Encoder?: __Encoder;
|
|
206
|
+
|
|
207
|
+
utf8Decoder?: __Decoder;
|
|
208
|
+
|
|
209
|
+
utf8Encoder?: __Encoder;
|
|
210
|
+
|
|
211
|
+
runtime?: string;
|
|
212
|
+
|
|
213
|
+
disableHostPrefix?: boolean;
|
|
214
|
+
|
|
215
|
+
maxAttempts?: number | __Provider<number>;
|
|
216
|
+
|
|
217
|
+
retryMode?: string | __Provider<string>;
|
|
218
|
+
|
|
219
|
+
logger?: __Logger;
|
|
220
|
+
|
|
221
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
222
|
+
|
|
223
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
224
|
+
|
|
225
|
+
serviceId?: string;
|
|
226
|
+
|
|
227
|
+
region?: string | __Provider<string>;
|
|
228
|
+
|
|
229
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
230
|
+
|
|
231
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
232
|
+
|
|
233
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
234
|
+
|
|
235
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
236
|
+
}
|
|
237
|
+
declare type BatchClientConfigType = Partial<
|
|
238
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
239
|
+
> &
|
|
240
|
+
ClientDefaults &
|
|
241
|
+
RegionInputConfig &
|
|
242
|
+
EndpointsInputConfig &
|
|
243
|
+
RetryInputConfig &
|
|
244
|
+
HostHeaderInputConfig &
|
|
245
|
+
AwsAuthInputConfig &
|
|
246
|
+
UserAgentInputConfig;
|
|
247
|
+
|
|
248
|
+
export interface BatchClientConfig extends BatchClientConfigType {}
|
|
249
|
+
declare type BatchClientResolvedConfigType =
|
|
250
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
251
|
+
Required<ClientDefaults> &
|
|
252
|
+
RegionResolvedConfig &
|
|
253
|
+
EndpointsResolvedConfig &
|
|
254
|
+
RetryResolvedConfig &
|
|
255
|
+
HostHeaderResolvedConfig &
|
|
256
|
+
AwsAuthResolvedConfig &
|
|
257
|
+
UserAgentResolvedConfig;
|
|
258
|
+
|
|
259
|
+
export interface BatchClientResolvedConfig
|
|
260
|
+
extends BatchClientResolvedConfigType {}
|
|
261
|
+
|
|
262
|
+
export declare class BatchClient extends __Client<
|
|
263
|
+
__HttpHandlerOptions,
|
|
264
|
+
ServiceInputTypes,
|
|
265
|
+
ServiceOutputTypes,
|
|
266
|
+
BatchClientResolvedConfig
|
|
267
|
+
> {
|
|
268
|
+
readonly config: BatchClientResolvedConfig;
|
|
269
|
+
constructor(configuration: BatchClientConfig);
|
|
270
|
+
|
|
271
|
+
destroy(): void;
|
|
272
|
+
}
|
|
273
|
+
export {};
|
|
@@ -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 { CancelJobRequest, CancelJobResponse } from "../models/models_0";
|
|
14
|
+
export interface CancelJobCommandInput extends CancelJobRequest {}
|
|
15
|
+
export interface CancelJobCommandOutput
|
|
16
|
+
extends CancelJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class CancelJobCommand extends $Command<
|
|
20
|
+
CancelJobCommandInput,
|
|
21
|
+
CancelJobCommandOutput,
|
|
22
|
+
BatchClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CancelJobCommandInput;
|
|
25
|
+
constructor(input: CancelJobCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: BatchClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CancelJobCommandInput, CancelJobCommandOutput>;
|
|
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
|
+
CreateComputeEnvironmentRequest,
|
|
15
|
+
CreateComputeEnvironmentResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateComputeEnvironmentCommandInput
|
|
18
|
+
extends CreateComputeEnvironmentRequest {}
|
|
19
|
+
export interface CreateComputeEnvironmentCommandOutput
|
|
20
|
+
extends CreateComputeEnvironmentResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateComputeEnvironmentCommand extends $Command<
|
|
24
|
+
CreateComputeEnvironmentCommandInput,
|
|
25
|
+
CreateComputeEnvironmentCommandOutput,
|
|
26
|
+
BatchClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateComputeEnvironmentCommandInput;
|
|
29
|
+
constructor(input: CreateComputeEnvironmentCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BatchClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateComputeEnvironmentCommandInput,
|
|
37
|
+
CreateComputeEnvironmentCommandOutput
|
|
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
|
+
CreateJobQueueRequest,
|
|
15
|
+
CreateJobQueueResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateJobQueueCommandInput extends CreateJobQueueRequest {}
|
|
18
|
+
export interface CreateJobQueueCommandOutput
|
|
19
|
+
extends CreateJobQueueResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateJobQueueCommand extends $Command<
|
|
23
|
+
CreateJobQueueCommandInput,
|
|
24
|
+
CreateJobQueueCommandOutput,
|
|
25
|
+
BatchClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateJobQueueCommandInput;
|
|
28
|
+
constructor(input: CreateJobQueueCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: BatchClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateJobQueueCommandInput, CreateJobQueueCommandOutput>;
|
|
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
|
+
CreateSchedulingPolicyRequest,
|
|
15
|
+
CreateSchedulingPolicyResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateSchedulingPolicyCommandInput
|
|
18
|
+
extends CreateSchedulingPolicyRequest {}
|
|
19
|
+
export interface CreateSchedulingPolicyCommandOutput
|
|
20
|
+
extends CreateSchedulingPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateSchedulingPolicyCommand extends $Command<
|
|
24
|
+
CreateSchedulingPolicyCommandInput,
|
|
25
|
+
CreateSchedulingPolicyCommandOutput,
|
|
26
|
+
BatchClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateSchedulingPolicyCommandInput;
|
|
29
|
+
constructor(input: CreateSchedulingPolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: BatchClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateSchedulingPolicyCommandInput,
|
|
37
|
+
CreateSchedulingPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|