2
2
import { createAggregatedClient } from "@smithy/smithy-client" ;
3
3
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types" ;
4
4
5
+ import {
6
+ CancelCapacityTaskCommand ,
7
+ CancelCapacityTaskCommandInput ,
8
+ CancelCapacityTaskCommandOutput ,
9
+ } from "./commands/CancelCapacityTaskCommand" ;
5
10
import { CancelOrderCommand , CancelOrderCommandInput , CancelOrderCommandOutput } from "./commands/CancelOrderCommand" ;
6
11
import { CreateOrderCommand , CreateOrderCommandInput , CreateOrderCommandOutput } from "./commands/CreateOrderCommand" ;
7
12
import {
@@ -16,6 +21,11 @@ import {
16
21
DeleteOutpostCommandOutput ,
17
22
} from "./commands/DeleteOutpostCommand" ;
18
23
import { DeleteSiteCommand , DeleteSiteCommandInput , DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand" ;
24
+ import {
25
+ GetCapacityTaskCommand ,
26
+ GetCapacityTaskCommandInput ,
27
+ GetCapacityTaskCommandOutput ,
28
+ } from "./commands/GetCapacityTaskCommand" ;
19
29
import {
20
30
GetCatalogItemCommand ,
21
31
GetCatalogItemCommandInput ,
@@ -33,13 +43,23 @@ import {
33
43
GetOutpostInstanceTypesCommandInput ,
34
44
GetOutpostInstanceTypesCommandOutput ,
35
45
} from "./commands/GetOutpostInstanceTypesCommand" ;
46
+ import {
47
+ GetOutpostSupportedInstanceTypesCommand ,
48
+ GetOutpostSupportedInstanceTypesCommandInput ,
49
+ GetOutpostSupportedInstanceTypesCommandOutput ,
50
+ } from "./commands/GetOutpostSupportedInstanceTypesCommand" ;
36
51
import {
37
52
GetSiteAddressCommand ,
38
53
GetSiteAddressCommandInput ,
39
54
GetSiteAddressCommandOutput ,
40
55
} from "./commands/GetSiteAddressCommand" ;
41
56
import { GetSiteCommand , GetSiteCommandInput , GetSiteCommandOutput } from "./commands/GetSiteCommand" ;
42
57
import { ListAssetsCommand , ListAssetsCommandInput , ListAssetsCommandOutput } from "./commands/ListAssetsCommand" ;
58
+ import {
59
+ ListCapacityTasksCommand ,
60
+ ListCapacityTasksCommandInput ,
61
+ ListCapacityTasksCommandOutput ,
62
+ } from "./commands/ListCapacityTasksCommand" ;
43
63
import {
44
64
ListCatalogItemsCommand ,
45
65
ListCatalogItemsCommandInput ,
@@ -57,6 +77,11 @@ import {
57
77
ListTagsForResourceCommandInput ,
58
78
ListTagsForResourceCommandOutput ,
59
79
} from "./commands/ListTagsForResourceCommand" ;
80
+ import {
81
+ StartCapacityTaskCommand ,
82
+ StartCapacityTaskCommandInput ,
83
+ StartCapacityTaskCommandOutput ,
84
+ } from "./commands/StartCapacityTaskCommand" ;
60
85
import {
61
86
StartConnectionCommand ,
62
87
StartConnectionCommandInput ,
@@ -87,25 +112,30 @@ import {
87
112
import { OutpostsClient , OutpostsClientConfig } from "./OutpostsClient" ;
88
113
89
114
const commands = {
115
+ CancelCapacityTaskCommand,
90
116
CancelOrderCommand,
91
117
CreateOrderCommand,
92
118
CreateOutpostCommand,
93
119
CreateSiteCommand,
94
120
DeleteOutpostCommand,
95
121
DeleteSiteCommand,
122
+ GetCapacityTaskCommand,
96
123
GetCatalogItemCommand,
97
124
GetConnectionCommand,
98
125
GetOrderCommand,
99
126
GetOutpostCommand,
100
127
GetOutpostInstanceTypesCommand,
128
+ GetOutpostSupportedInstanceTypesCommand,
101
129
GetSiteCommand,
102
130
GetSiteAddressCommand,
103
131
ListAssetsCommand,
132
+ ListCapacityTasksCommand,
104
133
ListCatalogItemsCommand,
105
134
ListOrdersCommand,
106
135
ListOutpostsCommand,
107
136
ListSitesCommand,
108
137
ListTagsForResourceCommand,
138
+ StartCapacityTaskCommand,
109
139
StartConnectionCommand,
110
140
TagResourceCommand,
111
141
UntagResourceCommand,
@@ -116,6 +146,23 @@ const commands = {
116
146
} ;
117
147
118
148
export interface Outposts {
149
+ /**
150
+ * @see {@link CancelCapacityTaskCommand }
151
+ */
152
+ cancelCapacityTask (
153
+ args : CancelCapacityTaskCommandInput ,
154
+ options ?: __HttpHandlerOptions
155
+ ) : Promise < CancelCapacityTaskCommandOutput > ;
156
+ cancelCapacityTask (
157
+ args : CancelCapacityTaskCommandInput ,
158
+ cb : ( err : any , data ?: CancelCapacityTaskCommandOutput ) => void
159
+ ) : void ;
160
+ cancelCapacityTask (
161
+ args : CancelCapacityTaskCommandInput ,
162
+ options : __HttpHandlerOptions ,
163
+ cb : ( err : any , data ?: CancelCapacityTaskCommandOutput ) => void
164
+ ) : void ;
165
+
119
166
/**
120
167
* @see {@link CancelOrderCommand }
121
168
*/
@@ -182,6 +229,20 @@ export interface Outposts {
182
229
cb : ( err : any , data ?: DeleteSiteCommandOutput ) => void
183
230
) : void ;
184
231
232
+ /**
233
+ * @see {@link GetCapacityTaskCommand }
234
+ */
235
+ getCapacityTask (
236
+ args : GetCapacityTaskCommandInput ,
237
+ options ?: __HttpHandlerOptions
238
+ ) : Promise < GetCapacityTaskCommandOutput > ;
239
+ getCapacityTask ( args : GetCapacityTaskCommandInput , cb : ( err : any , data ?: GetCapacityTaskCommandOutput ) => void ) : void ;
240
+ getCapacityTask (
241
+ args : GetCapacityTaskCommandInput ,
242
+ options : __HttpHandlerOptions ,
243
+ cb : ( err : any , data ?: GetCapacityTaskCommandOutput ) => void
244
+ ) : void ;
245
+
185
246
/**
186
247
* @see {@link GetCatalogItemCommand }
187
248
*/
@@ -246,6 +307,23 @@ export interface Outposts {
246
307
cb : ( err : any , data ?: GetOutpostInstanceTypesCommandOutput ) => void
247
308
) : void ;
248
309
310
+ /**
311
+ * @see {@link GetOutpostSupportedInstanceTypesCommand }
312
+ */
313
+ getOutpostSupportedInstanceTypes (
314
+ args : GetOutpostSupportedInstanceTypesCommandInput ,
315
+ options ?: __HttpHandlerOptions
316
+ ) : Promise < GetOutpostSupportedInstanceTypesCommandOutput > ;
317
+ getOutpostSupportedInstanceTypes (
318
+ args : GetOutpostSupportedInstanceTypesCommandInput ,
319
+ cb : ( err : any , data ?: GetOutpostSupportedInstanceTypesCommandOutput ) => void
320
+ ) : void ;
321
+ getOutpostSupportedInstanceTypes (
322
+ args : GetOutpostSupportedInstanceTypesCommandInput ,
323
+ options : __HttpHandlerOptions ,
324
+ cb : ( err : any , data ?: GetOutpostSupportedInstanceTypesCommandOutput ) => void
325
+ ) : void ;
326
+
249
327
/**
250
328
* @see {@link GetSiteCommand }
251
329
*/
@@ -282,6 +360,24 @@ export interface Outposts {
282
360
cb : ( err : any , data ?: ListAssetsCommandOutput ) => void
283
361
) : void ;
284
362
363
+ /**
364
+ * @see {@link ListCapacityTasksCommand }
365
+ */
366
+ listCapacityTasks ( ) : Promise < ListCapacityTasksCommandOutput > ;
367
+ listCapacityTasks (
368
+ args : ListCapacityTasksCommandInput ,
369
+ options ?: __HttpHandlerOptions
370
+ ) : Promise < ListCapacityTasksCommandOutput > ;
371
+ listCapacityTasks (
372
+ args : ListCapacityTasksCommandInput ,
373
+ cb : ( err : any , data ?: ListCapacityTasksCommandOutput ) => void
374
+ ) : void ;
375
+ listCapacityTasks (
376
+ args : ListCapacityTasksCommandInput ,
377
+ options : __HttpHandlerOptions ,
378
+ cb : ( err : any , data ?: ListCapacityTasksCommandOutput ) => void
379
+ ) : void ;
380
+
285
381
/**
286
382
* @see {@link ListCatalogItemsCommand }
287
383
*/
@@ -353,6 +449,23 @@ export interface Outposts {
353
449
cb : ( err : any , data ?: ListTagsForResourceCommandOutput ) => void
354
450
) : void ;
355
451
452
+ /**
453
+ * @see {@link StartCapacityTaskCommand }
454
+ */
455
+ startCapacityTask (
456
+ args : StartCapacityTaskCommandInput ,
457
+ options ?: __HttpHandlerOptions
458
+ ) : Promise < StartCapacityTaskCommandOutput > ;
459
+ startCapacityTask (
460
+ args : StartCapacityTaskCommandInput ,
461
+ cb : ( err : any , data ?: StartCapacityTaskCommandOutput ) => void
462
+ ) : void ;
463
+ startCapacityTask (
464
+ args : StartCapacityTaskCommandInput ,
465
+ options : __HttpHandlerOptions ,
466
+ cb : ( err : any , data ?: StartCapacityTaskCommandOutput ) => void
467
+ ) : void ;
468
+
356
469
/**
357
470
* @see {@link StartConnectionCommand }
358
471
*/
0 commit comments