@aws-sdk/client-batch 3.927.0 → 3.929.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/dist-cjs/index.js +2306 -1659
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/BatchClient.js +2 -0
- package/dist-es/commands/CancelJobCommand.js +3 -9
- package/dist-es/commands/CreateComputeEnvironmentCommand.js +3 -9
- package/dist-es/commands/CreateConsumableResourceCommand.js +3 -9
- package/dist-es/commands/CreateJobQueueCommand.js +3 -9
- package/dist-es/commands/CreateSchedulingPolicyCommand.js +3 -9
- package/dist-es/commands/CreateServiceEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteComputeEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteConsumableResourceCommand.js +3 -9
- package/dist-es/commands/DeleteJobQueueCommand.js +3 -9
- package/dist-es/commands/DeleteSchedulingPolicyCommand.js +3 -9
- package/dist-es/commands/DeleteServiceEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeregisterJobDefinitionCommand.js +3 -9
- package/dist-es/commands/DescribeComputeEnvironmentsCommand.js +3 -9
- package/dist-es/commands/DescribeConsumableResourceCommand.js +3 -9
- package/dist-es/commands/DescribeJobDefinitionsCommand.js +3 -9
- package/dist-es/commands/DescribeJobQueuesCommand.js +3 -9
- package/dist-es/commands/DescribeJobsCommand.js +3 -9
- package/dist-es/commands/DescribeSchedulingPoliciesCommand.js +3 -9
- package/dist-es/commands/DescribeServiceEnvironmentsCommand.js +3 -9
- package/dist-es/commands/DescribeServiceJobCommand.js +3 -9
- package/dist-es/commands/GetJobQueueSnapshotCommand.js +3 -9
- package/dist-es/commands/ListConsumableResourcesCommand.js +3 -9
- package/dist-es/commands/ListJobsByConsumableResourceCommand.js +3 -9
- package/dist-es/commands/ListJobsCommand.js +3 -9
- package/dist-es/commands/ListSchedulingPoliciesCommand.js +3 -9
- package/dist-es/commands/ListServiceJobsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RegisterJobDefinitionCommand.js +3 -9
- package/dist-es/commands/SubmitJobCommand.js +3 -9
- package/dist-es/commands/SubmitServiceJobCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/TerminateJobCommand.js +3 -9
- package/dist-es/commands/TerminateServiceJobCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateComputeEnvironmentCommand.js +3 -9
- package/dist-es/commands/UpdateConsumableResourceCommand.js +3 -9
- package/dist-es/commands/UpdateJobQueueCommand.js +3 -9
- package/dist-es/commands/UpdateSchedulingPolicyCommand.js +3 -9
- package/dist-es/commands/UpdateServiceEnvironmentCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +2236 -0
- package/dist-types/BatchClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +45 -57
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +301 -0
- package/dist-types/ts3.4/BatchClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +306 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -1382
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -353
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -473
|
@@ -1,353 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CancelJobCommandInput, CancelJobCommandOutput } from "../commands/CancelJobCommand";
|
|
4
|
-
import { CreateComputeEnvironmentCommandInput, CreateComputeEnvironmentCommandOutput } from "../commands/CreateComputeEnvironmentCommand";
|
|
5
|
-
import { CreateConsumableResourceCommandInput, CreateConsumableResourceCommandOutput } from "../commands/CreateConsumableResourceCommand";
|
|
6
|
-
import { CreateJobQueueCommandInput, CreateJobQueueCommandOutput } from "../commands/CreateJobQueueCommand";
|
|
7
|
-
import { CreateSchedulingPolicyCommandInput, CreateSchedulingPolicyCommandOutput } from "../commands/CreateSchedulingPolicyCommand";
|
|
8
|
-
import { CreateServiceEnvironmentCommandInput, CreateServiceEnvironmentCommandOutput } from "../commands/CreateServiceEnvironmentCommand";
|
|
9
|
-
import { DeleteComputeEnvironmentCommandInput, DeleteComputeEnvironmentCommandOutput } from "../commands/DeleteComputeEnvironmentCommand";
|
|
10
|
-
import { DeleteConsumableResourceCommandInput, DeleteConsumableResourceCommandOutput } from "../commands/DeleteConsumableResourceCommand";
|
|
11
|
-
import { DeleteJobQueueCommandInput, DeleteJobQueueCommandOutput } from "../commands/DeleteJobQueueCommand";
|
|
12
|
-
import { DeleteSchedulingPolicyCommandInput, DeleteSchedulingPolicyCommandOutput } from "../commands/DeleteSchedulingPolicyCommand";
|
|
13
|
-
import { DeleteServiceEnvironmentCommandInput, DeleteServiceEnvironmentCommandOutput } from "../commands/DeleteServiceEnvironmentCommand";
|
|
14
|
-
import { DeregisterJobDefinitionCommandInput, DeregisterJobDefinitionCommandOutput } from "../commands/DeregisterJobDefinitionCommand";
|
|
15
|
-
import { DescribeComputeEnvironmentsCommandInput, DescribeComputeEnvironmentsCommandOutput } from "../commands/DescribeComputeEnvironmentsCommand";
|
|
16
|
-
import { DescribeConsumableResourceCommandInput, DescribeConsumableResourceCommandOutput } from "../commands/DescribeConsumableResourceCommand";
|
|
17
|
-
import { DescribeJobDefinitionsCommandInput, DescribeJobDefinitionsCommandOutput } from "../commands/DescribeJobDefinitionsCommand";
|
|
18
|
-
import { DescribeJobQueuesCommandInput, DescribeJobQueuesCommandOutput } from "../commands/DescribeJobQueuesCommand";
|
|
19
|
-
import { DescribeJobsCommandInput, DescribeJobsCommandOutput } from "../commands/DescribeJobsCommand";
|
|
20
|
-
import { DescribeSchedulingPoliciesCommandInput, DescribeSchedulingPoliciesCommandOutput } from "../commands/DescribeSchedulingPoliciesCommand";
|
|
21
|
-
import { DescribeServiceEnvironmentsCommandInput, DescribeServiceEnvironmentsCommandOutput } from "../commands/DescribeServiceEnvironmentsCommand";
|
|
22
|
-
import { DescribeServiceJobCommandInput, DescribeServiceJobCommandOutput } from "../commands/DescribeServiceJobCommand";
|
|
23
|
-
import { GetJobQueueSnapshotCommandInput, GetJobQueueSnapshotCommandOutput } from "../commands/GetJobQueueSnapshotCommand";
|
|
24
|
-
import { ListConsumableResourcesCommandInput, ListConsumableResourcesCommandOutput } from "../commands/ListConsumableResourcesCommand";
|
|
25
|
-
import { ListJobsByConsumableResourceCommandInput, ListJobsByConsumableResourceCommandOutput } from "../commands/ListJobsByConsumableResourceCommand";
|
|
26
|
-
import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
|
|
27
|
-
import { ListSchedulingPoliciesCommandInput, ListSchedulingPoliciesCommandOutput } from "../commands/ListSchedulingPoliciesCommand";
|
|
28
|
-
import { ListServiceJobsCommandInput, ListServiceJobsCommandOutput } from "../commands/ListServiceJobsCommand";
|
|
29
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
30
|
-
import { RegisterJobDefinitionCommandInput, RegisterJobDefinitionCommandOutput } from "../commands/RegisterJobDefinitionCommand";
|
|
31
|
-
import { SubmitJobCommandInput, SubmitJobCommandOutput } from "../commands/SubmitJobCommand";
|
|
32
|
-
import { SubmitServiceJobCommandInput, SubmitServiceJobCommandOutput } from "../commands/SubmitServiceJobCommand";
|
|
33
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
34
|
-
import { TerminateJobCommandInput, TerminateJobCommandOutput } from "../commands/TerminateJobCommand";
|
|
35
|
-
import { TerminateServiceJobCommandInput, TerminateServiceJobCommandOutput } from "../commands/TerminateServiceJobCommand";
|
|
36
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
37
|
-
import { UpdateComputeEnvironmentCommandInput, UpdateComputeEnvironmentCommandOutput } from "../commands/UpdateComputeEnvironmentCommand";
|
|
38
|
-
import { UpdateConsumableResourceCommandInput, UpdateConsumableResourceCommandOutput } from "../commands/UpdateConsumableResourceCommand";
|
|
39
|
-
import { UpdateJobQueueCommandInput, UpdateJobQueueCommandOutput } from "../commands/UpdateJobQueueCommand";
|
|
40
|
-
import { UpdateSchedulingPolicyCommandInput, UpdateSchedulingPolicyCommandOutput } from "../commands/UpdateSchedulingPolicyCommand";
|
|
41
|
-
import { UpdateServiceEnvironmentCommandInput, UpdateServiceEnvironmentCommandOutput } from "../commands/UpdateServiceEnvironmentCommand";
|
|
42
|
-
/**
|
|
43
|
-
* serializeAws_restJson1CancelJobCommand
|
|
44
|
-
*/
|
|
45
|
-
export declare const se_CancelJobCommand: (input: CancelJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
-
/**
|
|
47
|
-
* serializeAws_restJson1CreateComputeEnvironmentCommand
|
|
48
|
-
*/
|
|
49
|
-
export declare const se_CreateComputeEnvironmentCommand: (input: CreateComputeEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
-
/**
|
|
51
|
-
* serializeAws_restJson1CreateConsumableResourceCommand
|
|
52
|
-
*/
|
|
53
|
-
export declare const se_CreateConsumableResourceCommand: (input: CreateConsumableResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
-
/**
|
|
55
|
-
* serializeAws_restJson1CreateJobQueueCommand
|
|
56
|
-
*/
|
|
57
|
-
export declare const se_CreateJobQueueCommand: (input: CreateJobQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
-
/**
|
|
59
|
-
* serializeAws_restJson1CreateSchedulingPolicyCommand
|
|
60
|
-
*/
|
|
61
|
-
export declare const se_CreateSchedulingPolicyCommand: (input: CreateSchedulingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
-
/**
|
|
63
|
-
* serializeAws_restJson1CreateServiceEnvironmentCommand
|
|
64
|
-
*/
|
|
65
|
-
export declare const se_CreateServiceEnvironmentCommand: (input: CreateServiceEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
-
/**
|
|
67
|
-
* serializeAws_restJson1DeleteComputeEnvironmentCommand
|
|
68
|
-
*/
|
|
69
|
-
export declare const se_DeleteComputeEnvironmentCommand: (input: DeleteComputeEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
-
/**
|
|
71
|
-
* serializeAws_restJson1DeleteConsumableResourceCommand
|
|
72
|
-
*/
|
|
73
|
-
export declare const se_DeleteConsumableResourceCommand: (input: DeleteConsumableResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
-
/**
|
|
75
|
-
* serializeAws_restJson1DeleteJobQueueCommand
|
|
76
|
-
*/
|
|
77
|
-
export declare const se_DeleteJobQueueCommand: (input: DeleteJobQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
/**
|
|
79
|
-
* serializeAws_restJson1DeleteSchedulingPolicyCommand
|
|
80
|
-
*/
|
|
81
|
-
export declare const se_DeleteSchedulingPolicyCommand: (input: DeleteSchedulingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
-
/**
|
|
83
|
-
* serializeAws_restJson1DeleteServiceEnvironmentCommand
|
|
84
|
-
*/
|
|
85
|
-
export declare const se_DeleteServiceEnvironmentCommand: (input: DeleteServiceEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
-
/**
|
|
87
|
-
* serializeAws_restJson1DeregisterJobDefinitionCommand
|
|
88
|
-
*/
|
|
89
|
-
export declare const se_DeregisterJobDefinitionCommand: (input: DeregisterJobDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
-
/**
|
|
91
|
-
* serializeAws_restJson1DescribeComputeEnvironmentsCommand
|
|
92
|
-
*/
|
|
93
|
-
export declare const se_DescribeComputeEnvironmentsCommand: (input: DescribeComputeEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
-
/**
|
|
95
|
-
* serializeAws_restJson1DescribeConsumableResourceCommand
|
|
96
|
-
*/
|
|
97
|
-
export declare const se_DescribeConsumableResourceCommand: (input: DescribeConsumableResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
-
/**
|
|
99
|
-
* serializeAws_restJson1DescribeJobDefinitionsCommand
|
|
100
|
-
*/
|
|
101
|
-
export declare const se_DescribeJobDefinitionsCommand: (input: DescribeJobDefinitionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
|
-
/**
|
|
103
|
-
* serializeAws_restJson1DescribeJobQueuesCommand
|
|
104
|
-
*/
|
|
105
|
-
export declare const se_DescribeJobQueuesCommand: (input: DescribeJobQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
-
/**
|
|
107
|
-
* serializeAws_restJson1DescribeJobsCommand
|
|
108
|
-
*/
|
|
109
|
-
export declare const se_DescribeJobsCommand: (input: DescribeJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
-
/**
|
|
111
|
-
* serializeAws_restJson1DescribeSchedulingPoliciesCommand
|
|
112
|
-
*/
|
|
113
|
-
export declare const se_DescribeSchedulingPoliciesCommand: (input: DescribeSchedulingPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
-
/**
|
|
115
|
-
* serializeAws_restJson1DescribeServiceEnvironmentsCommand
|
|
116
|
-
*/
|
|
117
|
-
export declare const se_DescribeServiceEnvironmentsCommand: (input: DescribeServiceEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
-
/**
|
|
119
|
-
* serializeAws_restJson1DescribeServiceJobCommand
|
|
120
|
-
*/
|
|
121
|
-
export declare const se_DescribeServiceJobCommand: (input: DescribeServiceJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
122
|
-
/**
|
|
123
|
-
* serializeAws_restJson1GetJobQueueSnapshotCommand
|
|
124
|
-
*/
|
|
125
|
-
export declare const se_GetJobQueueSnapshotCommand: (input: GetJobQueueSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
|
-
/**
|
|
127
|
-
* serializeAws_restJson1ListConsumableResourcesCommand
|
|
128
|
-
*/
|
|
129
|
-
export declare const se_ListConsumableResourcesCommand: (input: ListConsumableResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
-
/**
|
|
131
|
-
* serializeAws_restJson1ListJobsCommand
|
|
132
|
-
*/
|
|
133
|
-
export declare const se_ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
134
|
-
/**
|
|
135
|
-
* serializeAws_restJson1ListJobsByConsumableResourceCommand
|
|
136
|
-
*/
|
|
137
|
-
export declare const se_ListJobsByConsumableResourceCommand: (input: ListJobsByConsumableResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
138
|
-
/**
|
|
139
|
-
* serializeAws_restJson1ListSchedulingPoliciesCommand
|
|
140
|
-
*/
|
|
141
|
-
export declare const se_ListSchedulingPoliciesCommand: (input: ListSchedulingPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
|
-
/**
|
|
143
|
-
* serializeAws_restJson1ListServiceJobsCommand
|
|
144
|
-
*/
|
|
145
|
-
export declare const se_ListServiceJobsCommand: (input: ListServiceJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
146
|
-
/**
|
|
147
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
148
|
-
*/
|
|
149
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
150
|
-
/**
|
|
151
|
-
* serializeAws_restJson1RegisterJobDefinitionCommand
|
|
152
|
-
*/
|
|
153
|
-
export declare const se_RegisterJobDefinitionCommand: (input: RegisterJobDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
|
-
/**
|
|
155
|
-
* serializeAws_restJson1SubmitJobCommand
|
|
156
|
-
*/
|
|
157
|
-
export declare const se_SubmitJobCommand: (input: SubmitJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
158
|
-
/**
|
|
159
|
-
* serializeAws_restJson1SubmitServiceJobCommand
|
|
160
|
-
*/
|
|
161
|
-
export declare const se_SubmitServiceJobCommand: (input: SubmitServiceJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
162
|
-
/**
|
|
163
|
-
* serializeAws_restJson1TagResourceCommand
|
|
164
|
-
*/
|
|
165
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
|
-
/**
|
|
167
|
-
* serializeAws_restJson1TerminateJobCommand
|
|
168
|
-
*/
|
|
169
|
-
export declare const se_TerminateJobCommand: (input: TerminateJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
170
|
-
/**
|
|
171
|
-
* serializeAws_restJson1TerminateServiceJobCommand
|
|
172
|
-
*/
|
|
173
|
-
export declare const se_TerminateServiceJobCommand: (input: TerminateServiceJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
174
|
-
/**
|
|
175
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
176
|
-
*/
|
|
177
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
178
|
-
/**
|
|
179
|
-
* serializeAws_restJson1UpdateComputeEnvironmentCommand
|
|
180
|
-
*/
|
|
181
|
-
export declare const se_UpdateComputeEnvironmentCommand: (input: UpdateComputeEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
182
|
-
/**
|
|
183
|
-
* serializeAws_restJson1UpdateConsumableResourceCommand
|
|
184
|
-
*/
|
|
185
|
-
export declare const se_UpdateConsumableResourceCommand: (input: UpdateConsumableResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
186
|
-
/**
|
|
187
|
-
* serializeAws_restJson1UpdateJobQueueCommand
|
|
188
|
-
*/
|
|
189
|
-
export declare const se_UpdateJobQueueCommand: (input: UpdateJobQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
190
|
-
/**
|
|
191
|
-
* serializeAws_restJson1UpdateSchedulingPolicyCommand
|
|
192
|
-
*/
|
|
193
|
-
export declare const se_UpdateSchedulingPolicyCommand: (input: UpdateSchedulingPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
194
|
-
/**
|
|
195
|
-
* serializeAws_restJson1UpdateServiceEnvironmentCommand
|
|
196
|
-
*/
|
|
197
|
-
export declare const se_UpdateServiceEnvironmentCommand: (input: UpdateServiceEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
198
|
-
/**
|
|
199
|
-
* deserializeAws_restJson1CancelJobCommand
|
|
200
|
-
*/
|
|
201
|
-
export declare const de_CancelJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelJobCommandOutput>;
|
|
202
|
-
/**
|
|
203
|
-
* deserializeAws_restJson1CreateComputeEnvironmentCommand
|
|
204
|
-
*/
|
|
205
|
-
export declare const de_CreateComputeEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComputeEnvironmentCommandOutput>;
|
|
206
|
-
/**
|
|
207
|
-
* deserializeAws_restJson1CreateConsumableResourceCommand
|
|
208
|
-
*/
|
|
209
|
-
export declare const de_CreateConsumableResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConsumableResourceCommandOutput>;
|
|
210
|
-
/**
|
|
211
|
-
* deserializeAws_restJson1CreateJobQueueCommand
|
|
212
|
-
*/
|
|
213
|
-
export declare const de_CreateJobQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateJobQueueCommandOutput>;
|
|
214
|
-
/**
|
|
215
|
-
* deserializeAws_restJson1CreateSchedulingPolicyCommand
|
|
216
|
-
*/
|
|
217
|
-
export declare const de_CreateSchedulingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSchedulingPolicyCommandOutput>;
|
|
218
|
-
/**
|
|
219
|
-
* deserializeAws_restJson1CreateServiceEnvironmentCommand
|
|
220
|
-
*/
|
|
221
|
-
export declare const de_CreateServiceEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceEnvironmentCommandOutput>;
|
|
222
|
-
/**
|
|
223
|
-
* deserializeAws_restJson1DeleteComputeEnvironmentCommand
|
|
224
|
-
*/
|
|
225
|
-
export declare const de_DeleteComputeEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComputeEnvironmentCommandOutput>;
|
|
226
|
-
/**
|
|
227
|
-
* deserializeAws_restJson1DeleteConsumableResourceCommand
|
|
228
|
-
*/
|
|
229
|
-
export declare const de_DeleteConsumableResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConsumableResourceCommandOutput>;
|
|
230
|
-
/**
|
|
231
|
-
* deserializeAws_restJson1DeleteJobQueueCommand
|
|
232
|
-
*/
|
|
233
|
-
export declare const de_DeleteJobQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteJobQueueCommandOutput>;
|
|
234
|
-
/**
|
|
235
|
-
* deserializeAws_restJson1DeleteSchedulingPolicyCommand
|
|
236
|
-
*/
|
|
237
|
-
export declare const de_DeleteSchedulingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSchedulingPolicyCommandOutput>;
|
|
238
|
-
/**
|
|
239
|
-
* deserializeAws_restJson1DeleteServiceEnvironmentCommand
|
|
240
|
-
*/
|
|
241
|
-
export declare const de_DeleteServiceEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceEnvironmentCommandOutput>;
|
|
242
|
-
/**
|
|
243
|
-
* deserializeAws_restJson1DeregisterJobDefinitionCommand
|
|
244
|
-
*/
|
|
245
|
-
export declare const de_DeregisterJobDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterJobDefinitionCommandOutput>;
|
|
246
|
-
/**
|
|
247
|
-
* deserializeAws_restJson1DescribeComputeEnvironmentsCommand
|
|
248
|
-
*/
|
|
249
|
-
export declare const de_DescribeComputeEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeComputeEnvironmentsCommandOutput>;
|
|
250
|
-
/**
|
|
251
|
-
* deserializeAws_restJson1DescribeConsumableResourceCommand
|
|
252
|
-
*/
|
|
253
|
-
export declare const de_DescribeConsumableResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeConsumableResourceCommandOutput>;
|
|
254
|
-
/**
|
|
255
|
-
* deserializeAws_restJson1DescribeJobDefinitionsCommand
|
|
256
|
-
*/
|
|
257
|
-
export declare const de_DescribeJobDefinitionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobDefinitionsCommandOutput>;
|
|
258
|
-
/**
|
|
259
|
-
* deserializeAws_restJson1DescribeJobQueuesCommand
|
|
260
|
-
*/
|
|
261
|
-
export declare const de_DescribeJobQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobQueuesCommandOutput>;
|
|
262
|
-
/**
|
|
263
|
-
* deserializeAws_restJson1DescribeJobsCommand
|
|
264
|
-
*/
|
|
265
|
-
export declare const de_DescribeJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobsCommandOutput>;
|
|
266
|
-
/**
|
|
267
|
-
* deserializeAws_restJson1DescribeSchedulingPoliciesCommand
|
|
268
|
-
*/
|
|
269
|
-
export declare const de_DescribeSchedulingPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSchedulingPoliciesCommandOutput>;
|
|
270
|
-
/**
|
|
271
|
-
* deserializeAws_restJson1DescribeServiceEnvironmentsCommand
|
|
272
|
-
*/
|
|
273
|
-
export declare const de_DescribeServiceEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeServiceEnvironmentsCommandOutput>;
|
|
274
|
-
/**
|
|
275
|
-
* deserializeAws_restJson1DescribeServiceJobCommand
|
|
276
|
-
*/
|
|
277
|
-
export declare const de_DescribeServiceJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeServiceJobCommandOutput>;
|
|
278
|
-
/**
|
|
279
|
-
* deserializeAws_restJson1GetJobQueueSnapshotCommand
|
|
280
|
-
*/
|
|
281
|
-
export declare const de_GetJobQueueSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetJobQueueSnapshotCommandOutput>;
|
|
282
|
-
/**
|
|
283
|
-
* deserializeAws_restJson1ListConsumableResourcesCommand
|
|
284
|
-
*/
|
|
285
|
-
export declare const de_ListConsumableResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConsumableResourcesCommandOutput>;
|
|
286
|
-
/**
|
|
287
|
-
* deserializeAws_restJson1ListJobsCommand
|
|
288
|
-
*/
|
|
289
|
-
export declare const de_ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
|
|
290
|
-
/**
|
|
291
|
-
* deserializeAws_restJson1ListJobsByConsumableResourceCommand
|
|
292
|
-
*/
|
|
293
|
-
export declare const de_ListJobsByConsumableResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsByConsumableResourceCommandOutput>;
|
|
294
|
-
/**
|
|
295
|
-
* deserializeAws_restJson1ListSchedulingPoliciesCommand
|
|
296
|
-
*/
|
|
297
|
-
export declare const de_ListSchedulingPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchedulingPoliciesCommandOutput>;
|
|
298
|
-
/**
|
|
299
|
-
* deserializeAws_restJson1ListServiceJobsCommand
|
|
300
|
-
*/
|
|
301
|
-
export declare const de_ListServiceJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServiceJobsCommandOutput>;
|
|
302
|
-
/**
|
|
303
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
304
|
-
*/
|
|
305
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
306
|
-
/**
|
|
307
|
-
* deserializeAws_restJson1RegisterJobDefinitionCommand
|
|
308
|
-
*/
|
|
309
|
-
export declare const de_RegisterJobDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterJobDefinitionCommandOutput>;
|
|
310
|
-
/**
|
|
311
|
-
* deserializeAws_restJson1SubmitJobCommand
|
|
312
|
-
*/
|
|
313
|
-
export declare const de_SubmitJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubmitJobCommandOutput>;
|
|
314
|
-
/**
|
|
315
|
-
* deserializeAws_restJson1SubmitServiceJobCommand
|
|
316
|
-
*/
|
|
317
|
-
export declare const de_SubmitServiceJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubmitServiceJobCommandOutput>;
|
|
318
|
-
/**
|
|
319
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
320
|
-
*/
|
|
321
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
322
|
-
/**
|
|
323
|
-
* deserializeAws_restJson1TerminateJobCommand
|
|
324
|
-
*/
|
|
325
|
-
export declare const de_TerminateJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TerminateJobCommandOutput>;
|
|
326
|
-
/**
|
|
327
|
-
* deserializeAws_restJson1TerminateServiceJobCommand
|
|
328
|
-
*/
|
|
329
|
-
export declare const de_TerminateServiceJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TerminateServiceJobCommandOutput>;
|
|
330
|
-
/**
|
|
331
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
332
|
-
*/
|
|
333
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
334
|
-
/**
|
|
335
|
-
* deserializeAws_restJson1UpdateComputeEnvironmentCommand
|
|
336
|
-
*/
|
|
337
|
-
export declare const de_UpdateComputeEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComputeEnvironmentCommandOutput>;
|
|
338
|
-
/**
|
|
339
|
-
* deserializeAws_restJson1UpdateConsumableResourceCommand
|
|
340
|
-
*/
|
|
341
|
-
export declare const de_UpdateConsumableResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConsumableResourceCommandOutput>;
|
|
342
|
-
/**
|
|
343
|
-
* deserializeAws_restJson1UpdateJobQueueCommand
|
|
344
|
-
*/
|
|
345
|
-
export declare const de_UpdateJobQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateJobQueueCommandOutput>;
|
|
346
|
-
/**
|
|
347
|
-
* deserializeAws_restJson1UpdateSchedulingPolicyCommand
|
|
348
|
-
*/
|
|
349
|
-
export declare const de_UpdateSchedulingPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSchedulingPolicyCommandOutput>;
|
|
350
|
-
/**
|
|
351
|
-
* deserializeAws_restJson1UpdateServiceEnvironmentCommand
|
|
352
|
-
*/
|
|
353
|
-
export declare const de_UpdateServiceEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceEnvironmentCommandOutput>;
|