@@ -9,6 +9,11 @@ import {
9
9
CreateComputeEnvironmentCommandInput ,
10
10
CreateComputeEnvironmentCommandOutput ,
11
11
} from "./commands/CreateComputeEnvironmentCommand" ;
12
+ import {
13
+ CreateConsumableResourceCommand ,
14
+ CreateConsumableResourceCommandInput ,
15
+ CreateConsumableResourceCommandOutput ,
16
+ } from "./commands/CreateConsumableResourceCommand" ;
12
17
import {
13
18
CreateJobQueueCommand ,
14
19
CreateJobQueueCommandInput ,
@@ -24,6 +29,11 @@ import {
24
29
DeleteComputeEnvironmentCommandInput ,
25
30
DeleteComputeEnvironmentCommandOutput ,
26
31
} from "./commands/DeleteComputeEnvironmentCommand" ;
32
+ import {
33
+ DeleteConsumableResourceCommand ,
34
+ DeleteConsumableResourceCommandInput ,
35
+ DeleteConsumableResourceCommandOutput ,
36
+ } from "./commands/DeleteConsumableResourceCommand" ;
27
37
import {
28
38
DeleteJobQueueCommand ,
29
39
DeleteJobQueueCommandInput ,
@@ -44,6 +54,11 @@ import {
44
54
DescribeComputeEnvironmentsCommandInput ,
45
55
DescribeComputeEnvironmentsCommandOutput ,
46
56
} from "./commands/DescribeComputeEnvironmentsCommand" ;
57
+ import {
58
+ DescribeConsumableResourceCommand ,
59
+ DescribeConsumableResourceCommandInput ,
60
+ DescribeConsumableResourceCommandOutput ,
61
+ } from "./commands/DescribeConsumableResourceCommand" ;
47
62
import {
48
63
DescribeJobDefinitionsCommand ,
49
64
DescribeJobDefinitionsCommandInput ,
@@ -69,6 +84,16 @@ import {
69
84
GetJobQueueSnapshotCommandInput ,
70
85
GetJobQueueSnapshotCommandOutput ,
71
86
} from "./commands/GetJobQueueSnapshotCommand" ;
87
+ import {
88
+ ListConsumableResourcesCommand ,
89
+ ListConsumableResourcesCommandInput ,
90
+ ListConsumableResourcesCommandOutput ,
91
+ } from "./commands/ListConsumableResourcesCommand" ;
92
+ import {
93
+ ListJobsByConsumableResourceCommand ,
94
+ ListJobsByConsumableResourceCommandInput ,
95
+ ListJobsByConsumableResourceCommandOutput ,
96
+ } from "./commands/ListJobsByConsumableResourceCommand" ;
72
97
import { ListJobsCommand , ListJobsCommandInput , ListJobsCommandOutput } from "./commands/ListJobsCommand" ;
73
98
import {
74
99
ListSchedulingPoliciesCommand ,
@@ -102,6 +127,11 @@ import {
102
127
UpdateComputeEnvironmentCommandInput ,
103
128
UpdateComputeEnvironmentCommandOutput ,
104
129
} from "./commands/UpdateComputeEnvironmentCommand" ;
130
+ import {
131
+ UpdateConsumableResourceCommand ,
132
+ UpdateConsumableResourceCommandInput ,
133
+ UpdateConsumableResourceCommandOutput ,
134
+ } from "./commands/UpdateConsumableResourceCommand" ;
105
135
import {
106
136
UpdateJobQueueCommand ,
107
137
UpdateJobQueueCommandInput ,
@@ -116,19 +146,24 @@ import {
116
146
const commands = {
117
147
CancelJobCommand,
118
148
CreateComputeEnvironmentCommand,
149
+ CreateConsumableResourceCommand,
119
150
CreateJobQueueCommand,
120
151
CreateSchedulingPolicyCommand,
121
152
DeleteComputeEnvironmentCommand,
153
+ DeleteConsumableResourceCommand,
122
154
DeleteJobQueueCommand,
123
155
DeleteSchedulingPolicyCommand,
124
156
DeregisterJobDefinitionCommand,
125
157
DescribeComputeEnvironmentsCommand,
158
+ DescribeConsumableResourceCommand,
126
159
DescribeJobDefinitionsCommand,
127
160
DescribeJobQueuesCommand,
128
161
DescribeJobsCommand,
129
162
DescribeSchedulingPoliciesCommand,
130
163
GetJobQueueSnapshotCommand,
164
+ ListConsumableResourcesCommand,
131
165
ListJobsCommand,
166
+ ListJobsByConsumableResourceCommand,
132
167
ListSchedulingPoliciesCommand,
133
168
ListTagsForResourceCommand,
134
169
RegisterJobDefinitionCommand,
@@ -137,6 +172,7 @@ const commands = {
137
172
TerminateJobCommand,
138
173
UntagResourceCommand,
139
174
UpdateComputeEnvironmentCommand,
175
+ UpdateConsumableResourceCommand,
140
176
UpdateJobQueueCommand,
141
177
UpdateSchedulingPolicyCommand,
142
178
} ;
@@ -170,6 +206,23 @@ export interface Batch {
170
206
cb : ( err : any , data ?: CreateComputeEnvironmentCommandOutput ) => void
171
207
) : void ;
172
208
209
+ /**
210
+ * @see {@link CreateConsumableResourceCommand }
211
+ */
212
+ createConsumableResource (
213
+ args : CreateConsumableResourceCommandInput ,
214
+ options ?: __HttpHandlerOptions
215
+ ) : Promise < CreateConsumableResourceCommandOutput > ;
216
+ createConsumableResource (
217
+ args : CreateConsumableResourceCommandInput ,
218
+ cb : ( err : any , data ?: CreateConsumableResourceCommandOutput ) => void
219
+ ) : void ;
220
+ createConsumableResource (
221
+ args : CreateConsumableResourceCommandInput ,
222
+ options : __HttpHandlerOptions ,
223
+ cb : ( err : any , data ?: CreateConsumableResourceCommandOutput ) => void
224
+ ) : void ;
225
+
173
226
/**
174
227
* @see {@link CreateJobQueueCommand }
175
228
*/
@@ -218,6 +271,23 @@ export interface Batch {
218
271
cb : ( err : any , data ?: DeleteComputeEnvironmentCommandOutput ) => void
219
272
) : void ;
220
273
274
+ /**
275
+ * @see {@link DeleteConsumableResourceCommand }
276
+ */
277
+ deleteConsumableResource (
278
+ args : DeleteConsumableResourceCommandInput ,
279
+ options ?: __HttpHandlerOptions
280
+ ) : Promise < DeleteConsumableResourceCommandOutput > ;
281
+ deleteConsumableResource (
282
+ args : DeleteConsumableResourceCommandInput ,
283
+ cb : ( err : any , data ?: DeleteConsumableResourceCommandOutput ) => void
284
+ ) : void ;
285
+ deleteConsumableResource (
286
+ args : DeleteConsumableResourceCommandInput ,
287
+ options : __HttpHandlerOptions ,
288
+ cb : ( err : any , data ?: DeleteConsumableResourceCommandOutput ) => void
289
+ ) : void ;
290
+
221
291
/**
222
292
* @see {@link DeleteJobQueueCommand }
223
293
*/
@@ -284,6 +354,23 @@ export interface Batch {
284
354
cb : ( err : any , data ?: DescribeComputeEnvironmentsCommandOutput ) => void
285
355
) : void ;
286
356
357
+ /**
358
+ * @see {@link DescribeConsumableResourceCommand }
359
+ */
360
+ describeConsumableResource (
361
+ args : DescribeConsumableResourceCommandInput ,
362
+ options ?: __HttpHandlerOptions
363
+ ) : Promise < DescribeConsumableResourceCommandOutput > ;
364
+ describeConsumableResource (
365
+ args : DescribeConsumableResourceCommandInput ,
366
+ cb : ( err : any , data ?: DescribeConsumableResourceCommandOutput ) => void
367
+ ) : void ;
368
+ describeConsumableResource (
369
+ args : DescribeConsumableResourceCommandInput ,
370
+ options : __HttpHandlerOptions ,
371
+ cb : ( err : any , data ?: DescribeConsumableResourceCommandOutput ) => void
372
+ ) : void ;
373
+
287
374
/**
288
375
* @see {@link DescribeJobDefinitionsCommand }
289
376
*/
@@ -365,6 +452,24 @@ export interface Batch {
365
452
cb : ( err : any , data ?: GetJobQueueSnapshotCommandOutput ) => void
366
453
) : void ;
367
454
455
+ /**
456
+ * @see {@link ListConsumableResourcesCommand }
457
+ */
458
+ listConsumableResources ( ) : Promise < ListConsumableResourcesCommandOutput > ;
459
+ listConsumableResources (
460
+ args : ListConsumableResourcesCommandInput ,
461
+ options ?: __HttpHandlerOptions
462
+ ) : Promise < ListConsumableResourcesCommandOutput > ;
463
+ listConsumableResources (
464
+ args : ListConsumableResourcesCommandInput ,
465
+ cb : ( err : any , data ?: ListConsumableResourcesCommandOutput ) => void
466
+ ) : void ;
467
+ listConsumableResources (
468
+ args : ListConsumableResourcesCommandInput ,
469
+ options : __HttpHandlerOptions ,
470
+ cb : ( err : any , data ?: ListConsumableResourcesCommandOutput ) => void
471
+ ) : void ;
472
+
368
473
/**
369
474
* @see {@link ListJobsCommand }
370
475
*/
@@ -377,6 +482,23 @@ export interface Batch {
377
482
cb : ( err : any , data ?: ListJobsCommandOutput ) => void
378
483
) : void ;
379
484
485
+ /**
486
+ * @see {@link ListJobsByConsumableResourceCommand }
487
+ */
488
+ listJobsByConsumableResource (
489
+ args : ListJobsByConsumableResourceCommandInput ,
490
+ options ?: __HttpHandlerOptions
491
+ ) : Promise < ListJobsByConsumableResourceCommandOutput > ;
492
+ listJobsByConsumableResource (
493
+ args : ListJobsByConsumableResourceCommandInput ,
494
+ cb : ( err : any , data ?: ListJobsByConsumableResourceCommandOutput ) => void
495
+ ) : void ;
496
+ listJobsByConsumableResource (
497
+ args : ListJobsByConsumableResourceCommandInput ,
498
+ options : __HttpHandlerOptions ,
499
+ cb : ( err : any , data ?: ListJobsByConsumableResourceCommandOutput ) => void
500
+ ) : void ;
501
+
380
502
/**
381
503
* @see {@link ListSchedulingPoliciesCommand }
382
504
*/
@@ -490,6 +612,23 @@ export interface Batch {
490
612
cb : ( err : any , data ?: UpdateComputeEnvironmentCommandOutput ) => void
491
613
) : void ;
492
614
615
+ /**
616
+ * @see {@link UpdateConsumableResourceCommand }
617
+ */
618
+ updateConsumableResource (
619
+ args : UpdateConsumableResourceCommandInput ,
620
+ options ?: __HttpHandlerOptions
621
+ ) : Promise < UpdateConsumableResourceCommandOutput > ;
622
+ updateConsumableResource (
623
+ args : UpdateConsumableResourceCommandInput ,
624
+ cb : ( err : any , data ?: UpdateConsumableResourceCommandOutput ) => void
625
+ ) : void ;
626
+ updateConsumableResource (
627
+ args : UpdateConsumableResourceCommandInput ,
628
+ options : __HttpHandlerOptions ,
629
+ cb : ( err : any , data ?: UpdateConsumableResourceCommandOutput ) => void
630
+ ) : void ;
631
+
493
632
/**
494
633
* @see {@link UpdateJobQueueCommand }
495
634
*/
0 commit comments