22import { createAggregatedClient } from "@smithy/smithy-client" ;
33import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types" ;
44
5+ import {
6+ CancelCapacityTaskCommand ,
7+ CancelCapacityTaskCommandInput ,
8+ CancelCapacityTaskCommandOutput ,
9+ } from "./commands/CancelCapacityTaskCommand" ;
510import { CancelOrderCommand , CancelOrderCommandInput , CancelOrderCommandOutput } from "./commands/CancelOrderCommand" ;
611import { CreateOrderCommand , CreateOrderCommandInput , CreateOrderCommandOutput } from "./commands/CreateOrderCommand" ;
712import {
@@ -16,6 +21,11 @@ import {
1621 DeleteOutpostCommandOutput ,
1722} from "./commands/DeleteOutpostCommand" ;
1823import { DeleteSiteCommand , DeleteSiteCommandInput , DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand" ;
24+ import {
25+ GetCapacityTaskCommand ,
26+ GetCapacityTaskCommandInput ,
27+ GetCapacityTaskCommandOutput ,
28+ } from "./commands/GetCapacityTaskCommand" ;
1929import {
2030 GetCatalogItemCommand ,
2131 GetCatalogItemCommandInput ,
@@ -33,13 +43,23 @@ import {
3343 GetOutpostInstanceTypesCommandInput ,
3444 GetOutpostInstanceTypesCommandOutput ,
3545} from "./commands/GetOutpostInstanceTypesCommand" ;
46+ import {
47+ GetOutpostSupportedInstanceTypesCommand ,
48+ GetOutpostSupportedInstanceTypesCommandInput ,
49+ GetOutpostSupportedInstanceTypesCommandOutput ,
50+ } from "./commands/GetOutpostSupportedInstanceTypesCommand" ;
3651import {
3752 GetSiteAddressCommand ,
3853 GetSiteAddressCommandInput ,
3954 GetSiteAddressCommandOutput ,
4055} from "./commands/GetSiteAddressCommand" ;
4156import { GetSiteCommand , GetSiteCommandInput , GetSiteCommandOutput } from "./commands/GetSiteCommand" ;
4257import { ListAssetsCommand , ListAssetsCommandInput , ListAssetsCommandOutput } from "./commands/ListAssetsCommand" ;
58+ import {
59+ ListCapacityTasksCommand ,
60+ ListCapacityTasksCommandInput ,
61+ ListCapacityTasksCommandOutput ,
62+ } from "./commands/ListCapacityTasksCommand" ;
4363import {
4464 ListCatalogItemsCommand ,
4565 ListCatalogItemsCommandInput ,
@@ -57,6 +77,11 @@ import {
5777 ListTagsForResourceCommandInput ,
5878 ListTagsForResourceCommandOutput ,
5979} from "./commands/ListTagsForResourceCommand" ;
80+ import {
81+ StartCapacityTaskCommand ,
82+ StartCapacityTaskCommandInput ,
83+ StartCapacityTaskCommandOutput ,
84+ } from "./commands/StartCapacityTaskCommand" ;
6085import {
6186 StartConnectionCommand ,
6287 StartConnectionCommandInput ,
@@ -87,25 +112,30 @@ import {
87112import { OutpostsClient , OutpostsClientConfig } from "./OutpostsClient" ;
88113
89114const commands = {
115+ CancelCapacityTaskCommand,
90116 CancelOrderCommand,
91117 CreateOrderCommand,
92118 CreateOutpostCommand,
93119 CreateSiteCommand,
94120 DeleteOutpostCommand,
95121 DeleteSiteCommand,
122+ GetCapacityTaskCommand,
96123 GetCatalogItemCommand,
97124 GetConnectionCommand,
98125 GetOrderCommand,
99126 GetOutpostCommand,
100127 GetOutpostInstanceTypesCommand,
128+ GetOutpostSupportedInstanceTypesCommand,
101129 GetSiteCommand,
102130 GetSiteAddressCommand,
103131 ListAssetsCommand,
132+ ListCapacityTasksCommand,
104133 ListCatalogItemsCommand,
105134 ListOrdersCommand,
106135 ListOutpostsCommand,
107136 ListSitesCommand,
108137 ListTagsForResourceCommand,
138+ StartCapacityTaskCommand,
109139 StartConnectionCommand,
110140 TagResourceCommand,
111141 UntagResourceCommand,
@@ -116,6 +146,23 @@ const commands = {
116146} ;
117147
118148export 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+
119166 /**
120167 * @see {@link CancelOrderCommand }
121168 */
@@ -182,6 +229,20 @@ export interface Outposts {
182229 cb : ( err : any , data ?: DeleteSiteCommandOutput ) => void
183230 ) : void ;
184231
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+
185246 /**
186247 * @see {@link GetCatalogItemCommand }
187248 */
@@ -246,6 +307,23 @@ export interface Outposts {
246307 cb : ( err : any , data ?: GetOutpostInstanceTypesCommandOutput ) => void
247308 ) : void ;
248309
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+
249327 /**
250328 * @see {@link GetSiteCommand }
251329 */
@@ -282,6 +360,24 @@ export interface Outposts {
282360 cb : ( err : any , data ?: ListAssetsCommandOutput ) => void
283361 ) : void ;
284362
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+
285381 /**
286382 * @see {@link ListCatalogItemsCommand }
287383 */
@@ -353,6 +449,23 @@ export interface Outposts {
353449 cb : ( err : any , data ?: ListTagsForResourceCommandOutput ) => void
354450 ) : void ;
355451
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+
356469 /**
357470 * @see {@link StartConnectionCommand }
358471 */
0 commit comments