@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
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-batch
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-batch
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-batch
|
|
@@ -1,125 +1,412 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { BatchClient } from "./BatchClient";
|
|
3
|
-
import {
|
|
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
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { BatchClient } from "./BatchClient";
|
|
3
|
+
import {
|
|
4
|
+
CancelJobCommandInput,
|
|
5
|
+
CancelJobCommandOutput,
|
|
6
|
+
} from "./commands/CancelJobCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreateComputeEnvironmentCommandInput,
|
|
9
|
+
CreateComputeEnvironmentCommandOutput,
|
|
10
|
+
} from "./commands/CreateComputeEnvironmentCommand";
|
|
11
|
+
import {
|
|
12
|
+
CreateJobQueueCommandInput,
|
|
13
|
+
CreateJobQueueCommandOutput,
|
|
14
|
+
} from "./commands/CreateJobQueueCommand";
|
|
15
|
+
import {
|
|
16
|
+
CreateSchedulingPolicyCommandInput,
|
|
17
|
+
CreateSchedulingPolicyCommandOutput,
|
|
18
|
+
} from "./commands/CreateSchedulingPolicyCommand";
|
|
19
|
+
import {
|
|
20
|
+
DeleteComputeEnvironmentCommandInput,
|
|
21
|
+
DeleteComputeEnvironmentCommandOutput,
|
|
22
|
+
} from "./commands/DeleteComputeEnvironmentCommand";
|
|
23
|
+
import {
|
|
24
|
+
DeleteJobQueueCommandInput,
|
|
25
|
+
DeleteJobQueueCommandOutput,
|
|
26
|
+
} from "./commands/DeleteJobQueueCommand";
|
|
27
|
+
import {
|
|
28
|
+
DeleteSchedulingPolicyCommandInput,
|
|
29
|
+
DeleteSchedulingPolicyCommandOutput,
|
|
30
|
+
} from "./commands/DeleteSchedulingPolicyCommand";
|
|
31
|
+
import {
|
|
32
|
+
DeregisterJobDefinitionCommandInput,
|
|
33
|
+
DeregisterJobDefinitionCommandOutput,
|
|
34
|
+
} from "./commands/DeregisterJobDefinitionCommand";
|
|
35
|
+
import {
|
|
36
|
+
DescribeComputeEnvironmentsCommandInput,
|
|
37
|
+
DescribeComputeEnvironmentsCommandOutput,
|
|
38
|
+
} from "./commands/DescribeComputeEnvironmentsCommand";
|
|
39
|
+
import {
|
|
40
|
+
DescribeJobDefinitionsCommandInput,
|
|
41
|
+
DescribeJobDefinitionsCommandOutput,
|
|
42
|
+
} from "./commands/DescribeJobDefinitionsCommand";
|
|
43
|
+
import {
|
|
44
|
+
DescribeJobQueuesCommandInput,
|
|
45
|
+
DescribeJobQueuesCommandOutput,
|
|
46
|
+
} from "./commands/DescribeJobQueuesCommand";
|
|
47
|
+
import {
|
|
48
|
+
DescribeJobsCommandInput,
|
|
49
|
+
DescribeJobsCommandOutput,
|
|
50
|
+
} from "./commands/DescribeJobsCommand";
|
|
51
|
+
import {
|
|
52
|
+
DescribeSchedulingPoliciesCommandInput,
|
|
53
|
+
DescribeSchedulingPoliciesCommandOutput,
|
|
54
|
+
} from "./commands/DescribeSchedulingPoliciesCommand";
|
|
55
|
+
import {
|
|
56
|
+
ListJobsCommandInput,
|
|
57
|
+
ListJobsCommandOutput,
|
|
58
|
+
} from "./commands/ListJobsCommand";
|
|
59
|
+
import {
|
|
60
|
+
ListSchedulingPoliciesCommandInput,
|
|
61
|
+
ListSchedulingPoliciesCommandOutput,
|
|
62
|
+
} from "./commands/ListSchedulingPoliciesCommand";
|
|
63
|
+
import {
|
|
64
|
+
ListTagsForResourceCommandInput,
|
|
65
|
+
ListTagsForResourceCommandOutput,
|
|
66
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
67
|
+
import {
|
|
68
|
+
RegisterJobDefinitionCommandInput,
|
|
69
|
+
RegisterJobDefinitionCommandOutput,
|
|
70
|
+
} from "./commands/RegisterJobDefinitionCommand";
|
|
71
|
+
import {
|
|
72
|
+
SubmitJobCommandInput,
|
|
73
|
+
SubmitJobCommandOutput,
|
|
74
|
+
} from "./commands/SubmitJobCommand";
|
|
75
|
+
import {
|
|
76
|
+
TagResourceCommandInput,
|
|
77
|
+
TagResourceCommandOutput,
|
|
78
|
+
} from "./commands/TagResourceCommand";
|
|
79
|
+
import {
|
|
80
|
+
TerminateJobCommandInput,
|
|
81
|
+
TerminateJobCommandOutput,
|
|
82
|
+
} from "./commands/TerminateJobCommand";
|
|
83
|
+
import {
|
|
84
|
+
UntagResourceCommandInput,
|
|
85
|
+
UntagResourceCommandOutput,
|
|
86
|
+
} from "./commands/UntagResourceCommand";
|
|
87
|
+
import {
|
|
88
|
+
UpdateComputeEnvironmentCommandInput,
|
|
89
|
+
UpdateComputeEnvironmentCommandOutput,
|
|
90
|
+
} from "./commands/UpdateComputeEnvironmentCommand";
|
|
91
|
+
import {
|
|
92
|
+
UpdateJobQueueCommandInput,
|
|
93
|
+
UpdateJobQueueCommandOutput,
|
|
94
|
+
} from "./commands/UpdateJobQueueCommand";
|
|
95
|
+
import {
|
|
96
|
+
UpdateSchedulingPolicyCommandInput,
|
|
97
|
+
UpdateSchedulingPolicyCommandOutput,
|
|
98
|
+
} from "./commands/UpdateSchedulingPolicyCommand";
|
|
99
|
+
export declare class Batch extends BatchClient {
|
|
100
|
+
cancelJob(
|
|
101
|
+
args: CancelJobCommandInput,
|
|
102
|
+
options?: __HttpHandlerOptions
|
|
103
|
+
): Promise<CancelJobCommandOutput>;
|
|
104
|
+
cancelJob(
|
|
105
|
+
args: CancelJobCommandInput,
|
|
106
|
+
cb: (err: any, data?: CancelJobCommandOutput) => void
|
|
107
|
+
): void;
|
|
108
|
+
cancelJob(
|
|
109
|
+
args: CancelJobCommandInput,
|
|
110
|
+
options: __HttpHandlerOptions,
|
|
111
|
+
cb: (err: any, data?: CancelJobCommandOutput) => void
|
|
112
|
+
): void;
|
|
113
|
+
createComputeEnvironment(
|
|
114
|
+
args: CreateComputeEnvironmentCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<CreateComputeEnvironmentCommandOutput>;
|
|
117
|
+
createComputeEnvironment(
|
|
118
|
+
args: CreateComputeEnvironmentCommandInput,
|
|
119
|
+
cb: (err: any, data?: CreateComputeEnvironmentCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
createComputeEnvironment(
|
|
122
|
+
args: CreateComputeEnvironmentCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: CreateComputeEnvironmentCommandOutput) => void
|
|
125
|
+
): void;
|
|
126
|
+
createJobQueue(
|
|
127
|
+
args: CreateJobQueueCommandInput,
|
|
128
|
+
options?: __HttpHandlerOptions
|
|
129
|
+
): Promise<CreateJobQueueCommandOutput>;
|
|
130
|
+
createJobQueue(
|
|
131
|
+
args: CreateJobQueueCommandInput,
|
|
132
|
+
cb: (err: any, data?: CreateJobQueueCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
createJobQueue(
|
|
135
|
+
args: CreateJobQueueCommandInput,
|
|
136
|
+
options: __HttpHandlerOptions,
|
|
137
|
+
cb: (err: any, data?: CreateJobQueueCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
createSchedulingPolicy(
|
|
140
|
+
args: CreateSchedulingPolicyCommandInput,
|
|
141
|
+
options?: __HttpHandlerOptions
|
|
142
|
+
): Promise<CreateSchedulingPolicyCommandOutput>;
|
|
143
|
+
createSchedulingPolicy(
|
|
144
|
+
args: CreateSchedulingPolicyCommandInput,
|
|
145
|
+
cb: (err: any, data?: CreateSchedulingPolicyCommandOutput) => void
|
|
146
|
+
): void;
|
|
147
|
+
createSchedulingPolicy(
|
|
148
|
+
args: CreateSchedulingPolicyCommandInput,
|
|
149
|
+
options: __HttpHandlerOptions,
|
|
150
|
+
cb: (err: any, data?: CreateSchedulingPolicyCommandOutput) => void
|
|
151
|
+
): void;
|
|
152
|
+
deleteComputeEnvironment(
|
|
153
|
+
args: DeleteComputeEnvironmentCommandInput,
|
|
154
|
+
options?: __HttpHandlerOptions
|
|
155
|
+
): Promise<DeleteComputeEnvironmentCommandOutput>;
|
|
156
|
+
deleteComputeEnvironment(
|
|
157
|
+
args: DeleteComputeEnvironmentCommandInput,
|
|
158
|
+
cb: (err: any, data?: DeleteComputeEnvironmentCommandOutput) => void
|
|
159
|
+
): void;
|
|
160
|
+
deleteComputeEnvironment(
|
|
161
|
+
args: DeleteComputeEnvironmentCommandInput,
|
|
162
|
+
options: __HttpHandlerOptions,
|
|
163
|
+
cb: (err: any, data?: DeleteComputeEnvironmentCommandOutput) => void
|
|
164
|
+
): void;
|
|
165
|
+
deleteJobQueue(
|
|
166
|
+
args: DeleteJobQueueCommandInput,
|
|
167
|
+
options?: __HttpHandlerOptions
|
|
168
|
+
): Promise<DeleteJobQueueCommandOutput>;
|
|
169
|
+
deleteJobQueue(
|
|
170
|
+
args: DeleteJobQueueCommandInput,
|
|
171
|
+
cb: (err: any, data?: DeleteJobQueueCommandOutput) => void
|
|
172
|
+
): void;
|
|
173
|
+
deleteJobQueue(
|
|
174
|
+
args: DeleteJobQueueCommandInput,
|
|
175
|
+
options: __HttpHandlerOptions,
|
|
176
|
+
cb: (err: any, data?: DeleteJobQueueCommandOutput) => void
|
|
177
|
+
): void;
|
|
178
|
+
deleteSchedulingPolicy(
|
|
179
|
+
args: DeleteSchedulingPolicyCommandInput,
|
|
180
|
+
options?: __HttpHandlerOptions
|
|
181
|
+
): Promise<DeleteSchedulingPolicyCommandOutput>;
|
|
182
|
+
deleteSchedulingPolicy(
|
|
183
|
+
args: DeleteSchedulingPolicyCommandInput,
|
|
184
|
+
cb: (err: any, data?: DeleteSchedulingPolicyCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
deleteSchedulingPolicy(
|
|
187
|
+
args: DeleteSchedulingPolicyCommandInput,
|
|
188
|
+
options: __HttpHandlerOptions,
|
|
189
|
+
cb: (err: any, data?: DeleteSchedulingPolicyCommandOutput) => void
|
|
190
|
+
): void;
|
|
191
|
+
deregisterJobDefinition(
|
|
192
|
+
args: DeregisterJobDefinitionCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<DeregisterJobDefinitionCommandOutput>;
|
|
195
|
+
deregisterJobDefinition(
|
|
196
|
+
args: DeregisterJobDefinitionCommandInput,
|
|
197
|
+
cb: (err: any, data?: DeregisterJobDefinitionCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
deregisterJobDefinition(
|
|
200
|
+
args: DeregisterJobDefinitionCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: DeregisterJobDefinitionCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
describeComputeEnvironments(
|
|
205
|
+
args: DescribeComputeEnvironmentsCommandInput,
|
|
206
|
+
options?: __HttpHandlerOptions
|
|
207
|
+
): Promise<DescribeComputeEnvironmentsCommandOutput>;
|
|
208
|
+
describeComputeEnvironments(
|
|
209
|
+
args: DescribeComputeEnvironmentsCommandInput,
|
|
210
|
+
cb: (err: any, data?: DescribeComputeEnvironmentsCommandOutput) => void
|
|
211
|
+
): void;
|
|
212
|
+
describeComputeEnvironments(
|
|
213
|
+
args: DescribeComputeEnvironmentsCommandInput,
|
|
214
|
+
options: __HttpHandlerOptions,
|
|
215
|
+
cb: (err: any, data?: DescribeComputeEnvironmentsCommandOutput) => void
|
|
216
|
+
): void;
|
|
217
|
+
describeJobDefinitions(
|
|
218
|
+
args: DescribeJobDefinitionsCommandInput,
|
|
219
|
+
options?: __HttpHandlerOptions
|
|
220
|
+
): Promise<DescribeJobDefinitionsCommandOutput>;
|
|
221
|
+
describeJobDefinitions(
|
|
222
|
+
args: DescribeJobDefinitionsCommandInput,
|
|
223
|
+
cb: (err: any, data?: DescribeJobDefinitionsCommandOutput) => void
|
|
224
|
+
): void;
|
|
225
|
+
describeJobDefinitions(
|
|
226
|
+
args: DescribeJobDefinitionsCommandInput,
|
|
227
|
+
options: __HttpHandlerOptions,
|
|
228
|
+
cb: (err: any, data?: DescribeJobDefinitionsCommandOutput) => void
|
|
229
|
+
): void;
|
|
230
|
+
describeJobQueues(
|
|
231
|
+
args: DescribeJobQueuesCommandInput,
|
|
232
|
+
options?: __HttpHandlerOptions
|
|
233
|
+
): Promise<DescribeJobQueuesCommandOutput>;
|
|
234
|
+
describeJobQueues(
|
|
235
|
+
args: DescribeJobQueuesCommandInput,
|
|
236
|
+
cb: (err: any, data?: DescribeJobQueuesCommandOutput) => void
|
|
237
|
+
): void;
|
|
238
|
+
describeJobQueues(
|
|
239
|
+
args: DescribeJobQueuesCommandInput,
|
|
240
|
+
options: __HttpHandlerOptions,
|
|
241
|
+
cb: (err: any, data?: DescribeJobQueuesCommandOutput) => void
|
|
242
|
+
): void;
|
|
243
|
+
describeJobs(
|
|
244
|
+
args: DescribeJobsCommandInput,
|
|
245
|
+
options?: __HttpHandlerOptions
|
|
246
|
+
): Promise<DescribeJobsCommandOutput>;
|
|
247
|
+
describeJobs(
|
|
248
|
+
args: DescribeJobsCommandInput,
|
|
249
|
+
cb: (err: any, data?: DescribeJobsCommandOutput) => void
|
|
250
|
+
): void;
|
|
251
|
+
describeJobs(
|
|
252
|
+
args: DescribeJobsCommandInput,
|
|
253
|
+
options: __HttpHandlerOptions,
|
|
254
|
+
cb: (err: any, data?: DescribeJobsCommandOutput) => void
|
|
255
|
+
): void;
|
|
256
|
+
describeSchedulingPolicies(
|
|
257
|
+
args: DescribeSchedulingPoliciesCommandInput,
|
|
258
|
+
options?: __HttpHandlerOptions
|
|
259
|
+
): Promise<DescribeSchedulingPoliciesCommandOutput>;
|
|
260
|
+
describeSchedulingPolicies(
|
|
261
|
+
args: DescribeSchedulingPoliciesCommandInput,
|
|
262
|
+
cb: (err: any, data?: DescribeSchedulingPoliciesCommandOutput) => void
|
|
263
|
+
): void;
|
|
264
|
+
describeSchedulingPolicies(
|
|
265
|
+
args: DescribeSchedulingPoliciesCommandInput,
|
|
266
|
+
options: __HttpHandlerOptions,
|
|
267
|
+
cb: (err: any, data?: DescribeSchedulingPoliciesCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
listJobs(
|
|
270
|
+
args: ListJobsCommandInput,
|
|
271
|
+
options?: __HttpHandlerOptions
|
|
272
|
+
): Promise<ListJobsCommandOutput>;
|
|
273
|
+
listJobs(
|
|
274
|
+
args: ListJobsCommandInput,
|
|
275
|
+
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
276
|
+
): void;
|
|
277
|
+
listJobs(
|
|
278
|
+
args: ListJobsCommandInput,
|
|
279
|
+
options: __HttpHandlerOptions,
|
|
280
|
+
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
281
|
+
): void;
|
|
282
|
+
listSchedulingPolicies(
|
|
283
|
+
args: ListSchedulingPoliciesCommandInput,
|
|
284
|
+
options?: __HttpHandlerOptions
|
|
285
|
+
): Promise<ListSchedulingPoliciesCommandOutput>;
|
|
286
|
+
listSchedulingPolicies(
|
|
287
|
+
args: ListSchedulingPoliciesCommandInput,
|
|
288
|
+
cb: (err: any, data?: ListSchedulingPoliciesCommandOutput) => void
|
|
289
|
+
): void;
|
|
290
|
+
listSchedulingPolicies(
|
|
291
|
+
args: ListSchedulingPoliciesCommandInput,
|
|
292
|
+
options: __HttpHandlerOptions,
|
|
293
|
+
cb: (err: any, data?: ListSchedulingPoliciesCommandOutput) => void
|
|
294
|
+
): void;
|
|
295
|
+
listTagsForResource(
|
|
296
|
+
args: ListTagsForResourceCommandInput,
|
|
297
|
+
options?: __HttpHandlerOptions
|
|
298
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
299
|
+
listTagsForResource(
|
|
300
|
+
args: ListTagsForResourceCommandInput,
|
|
301
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
302
|
+
): void;
|
|
303
|
+
listTagsForResource(
|
|
304
|
+
args: ListTagsForResourceCommandInput,
|
|
305
|
+
options: __HttpHandlerOptions,
|
|
306
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
307
|
+
): void;
|
|
308
|
+
registerJobDefinition(
|
|
309
|
+
args: RegisterJobDefinitionCommandInput,
|
|
310
|
+
options?: __HttpHandlerOptions
|
|
311
|
+
): Promise<RegisterJobDefinitionCommandOutput>;
|
|
312
|
+
registerJobDefinition(
|
|
313
|
+
args: RegisterJobDefinitionCommandInput,
|
|
314
|
+
cb: (err: any, data?: RegisterJobDefinitionCommandOutput) => void
|
|
315
|
+
): void;
|
|
316
|
+
registerJobDefinition(
|
|
317
|
+
args: RegisterJobDefinitionCommandInput,
|
|
318
|
+
options: __HttpHandlerOptions,
|
|
319
|
+
cb: (err: any, data?: RegisterJobDefinitionCommandOutput) => void
|
|
320
|
+
): void;
|
|
321
|
+
submitJob(
|
|
322
|
+
args: SubmitJobCommandInput,
|
|
323
|
+
options?: __HttpHandlerOptions
|
|
324
|
+
): Promise<SubmitJobCommandOutput>;
|
|
325
|
+
submitJob(
|
|
326
|
+
args: SubmitJobCommandInput,
|
|
327
|
+
cb: (err: any, data?: SubmitJobCommandOutput) => void
|
|
328
|
+
): void;
|
|
329
|
+
submitJob(
|
|
330
|
+
args: SubmitJobCommandInput,
|
|
331
|
+
options: __HttpHandlerOptions,
|
|
332
|
+
cb: (err: any, data?: SubmitJobCommandOutput) => void
|
|
333
|
+
): void;
|
|
334
|
+
tagResource(
|
|
335
|
+
args: TagResourceCommandInput,
|
|
336
|
+
options?: __HttpHandlerOptions
|
|
337
|
+
): Promise<TagResourceCommandOutput>;
|
|
338
|
+
tagResource(
|
|
339
|
+
args: TagResourceCommandInput,
|
|
340
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
341
|
+
): void;
|
|
342
|
+
tagResource(
|
|
343
|
+
args: TagResourceCommandInput,
|
|
344
|
+
options: __HttpHandlerOptions,
|
|
345
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
346
|
+
): void;
|
|
347
|
+
terminateJob(
|
|
348
|
+
args: TerminateJobCommandInput,
|
|
349
|
+
options?: __HttpHandlerOptions
|
|
350
|
+
): Promise<TerminateJobCommandOutput>;
|
|
351
|
+
terminateJob(
|
|
352
|
+
args: TerminateJobCommandInput,
|
|
353
|
+
cb: (err: any, data?: TerminateJobCommandOutput) => void
|
|
354
|
+
): void;
|
|
355
|
+
terminateJob(
|
|
356
|
+
args: TerminateJobCommandInput,
|
|
357
|
+
options: __HttpHandlerOptions,
|
|
358
|
+
cb: (err: any, data?: TerminateJobCommandOutput) => void
|
|
359
|
+
): void;
|
|
360
|
+
untagResource(
|
|
361
|
+
args: UntagResourceCommandInput,
|
|
362
|
+
options?: __HttpHandlerOptions
|
|
363
|
+
): Promise<UntagResourceCommandOutput>;
|
|
364
|
+
untagResource(
|
|
365
|
+
args: UntagResourceCommandInput,
|
|
366
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
367
|
+
): void;
|
|
368
|
+
untagResource(
|
|
369
|
+
args: UntagResourceCommandInput,
|
|
370
|
+
options: __HttpHandlerOptions,
|
|
371
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
372
|
+
): void;
|
|
373
|
+
updateComputeEnvironment(
|
|
374
|
+
args: UpdateComputeEnvironmentCommandInput,
|
|
375
|
+
options?: __HttpHandlerOptions
|
|
376
|
+
): Promise<UpdateComputeEnvironmentCommandOutput>;
|
|
377
|
+
updateComputeEnvironment(
|
|
378
|
+
args: UpdateComputeEnvironmentCommandInput,
|
|
379
|
+
cb: (err: any, data?: UpdateComputeEnvironmentCommandOutput) => void
|
|
380
|
+
): void;
|
|
381
|
+
updateComputeEnvironment(
|
|
382
|
+
args: UpdateComputeEnvironmentCommandInput,
|
|
383
|
+
options: __HttpHandlerOptions,
|
|
384
|
+
cb: (err: any, data?: UpdateComputeEnvironmentCommandOutput) => void
|
|
385
|
+
): void;
|
|
386
|
+
updateJobQueue(
|
|
387
|
+
args: UpdateJobQueueCommandInput,
|
|
388
|
+
options?: __HttpHandlerOptions
|
|
389
|
+
): Promise<UpdateJobQueueCommandOutput>;
|
|
390
|
+
updateJobQueue(
|
|
391
|
+
args: UpdateJobQueueCommandInput,
|
|
392
|
+
cb: (err: any, data?: UpdateJobQueueCommandOutput) => void
|
|
393
|
+
): void;
|
|
394
|
+
updateJobQueue(
|
|
395
|
+
args: UpdateJobQueueCommandInput,
|
|
396
|
+
options: __HttpHandlerOptions,
|
|
397
|
+
cb: (err: any, data?: UpdateJobQueueCommandOutput) => void
|
|
398
|
+
): void;
|
|
399
|
+
updateSchedulingPolicy(
|
|
400
|
+
args: UpdateSchedulingPolicyCommandInput,
|
|
401
|
+
options?: __HttpHandlerOptions
|
|
402
|
+
): Promise<UpdateSchedulingPolicyCommandOutput>;
|
|
403
|
+
updateSchedulingPolicy(
|
|
404
|
+
args: UpdateSchedulingPolicyCommandInput,
|
|
405
|
+
cb: (err: any, data?: UpdateSchedulingPolicyCommandOutput) => void
|
|
406
|
+
): void;
|
|
407
|
+
updateSchedulingPolicy(
|
|
408
|
+
args: UpdateSchedulingPolicyCommandInput,
|
|
409
|
+
options: __HttpHandlerOptions,
|
|
410
|
+
cb: (err: any, data?: UpdateSchedulingPolicyCommandOutput) => void
|
|
411
|
+
): void;
|
|
412
|
+
}
|