@aws-sdk/client-outposts 3.554.0 → 3.556.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.
Files changed (43) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +302 -1
  3. package/dist-es/Outposts.js +10 -0
  4. package/dist-es/commands/CancelCapacityTaskCommand.js +24 -0
  5. package/dist-es/commands/GetCapacityTaskCommand.js +24 -0
  6. package/dist-es/commands/GetOutpostSupportedInstanceTypesCommand.js +24 -0
  7. package/dist-es/commands/ListCapacityTasksCommand.js +24 -0
  8. package/dist-es/commands/StartCapacityTaskCommand.js +24 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +11 -0
  11. package/dist-es/pagination/GetOutpostSupportedInstanceTypesPaginator.js +4 -0
  12. package/dist-es/pagination/ListCapacityTasksPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +2 -0
  14. package/dist-es/protocols/Aws_restJson1.js +175 -1
  15. package/dist-types/Outposts.d.ts +36 -0
  16. package/dist-types/OutpostsClient.d.ts +7 -2
  17. package/dist-types/commands/CancelCapacityTaskCommand.d.ts +73 -0
  18. package/dist-types/commands/CreateOrderCommand.d.ts +1 -1
  19. package/dist-types/commands/GetCapacityTaskCommand.d.ts +89 -0
  20. package/dist-types/commands/GetOrderCommand.d.ts +1 -1
  21. package/dist-types/commands/GetOutpostSupportedInstanceTypesCommand.d.ts +82 -0
  22. package/dist-types/commands/ListCapacityTasksCommand.d.ts +90 -0
  23. package/dist-types/commands/StartCapacityTaskCommand.d.ts +99 -0
  24. package/dist-types/commands/index.d.ts +5 -0
  25. package/dist-types/models/models_0.d.ts +381 -8
  26. package/dist-types/pagination/GetOutpostSupportedInstanceTypesPaginator.d.ts +7 -0
  27. package/dist-types/pagination/ListCapacityTasksPaginator.d.ts +7 -0
  28. package/dist-types/pagination/index.d.ts +2 -0
  29. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  30. package/dist-types/ts3.4/Outposts.d.ts +86 -0
  31. package/dist-types/ts3.4/OutpostsClient.d.ts +30 -0
  32. package/dist-types/ts3.4/commands/CancelCapacityTaskCommand.d.ts +39 -0
  33. package/dist-types/ts3.4/commands/GetCapacityTaskCommand.d.ts +38 -0
  34. package/dist-types/ts3.4/commands/GetOutpostSupportedInstanceTypesCommand.d.ts +39 -0
  35. package/dist-types/ts3.4/commands/ListCapacityTasksCommand.d.ts +38 -0
  36. package/dist-types/ts3.4/commands/StartCapacityTaskCommand.d.ts +38 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +94 -3
  39. package/dist-types/ts3.4/pagination/GetOutpostSupportedInstanceTypesPaginator.d.ts +11 -0
  40. package/dist-types/ts3.4/pagination/ListCapacityTasksPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  43. package/package.json +4 -4
@@ -205,17 +205,22 @@ export type AssetState = (typeof AssetState)[keyof typeof AssetState];
205
205
  /**
206
206
  * @public
207
207
  */
208
- export interface CancelOrderInput {
208
+ export interface CancelCapacityTaskInput {
209
209
  /**
210
- * <p> The ID of the order. </p>
210
+ * <p>ID of the capacity task that you want to cancel.</p>
211
211
  * @public
212
212
  */
213
- OrderId: string | undefined;
213
+ CapacityTaskId: string | undefined;
214
+ /**
215
+ * <p>ID or ARN of the Outpost associated with the capacity task that you want to cancel.</p>
216
+ * @public
217
+ */
218
+ OutpostIdentifier: string | undefined;
214
219
  }
215
220
  /**
216
221
  * @public
217
222
  */
218
- export interface CancelOrderOutput {
223
+ export interface CancelCapacityTaskOutput {
219
224
  }
220
225
  /**
221
226
  * @public
@@ -291,6 +296,104 @@ export declare class ValidationException extends __BaseException {
291
296
  */
292
297
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
293
298
  }
299
+ /**
300
+ * @public
301
+ */
302
+ export interface CancelOrderInput {
303
+ /**
304
+ * <p> The ID of the order. </p>
305
+ * @public
306
+ */
307
+ OrderId: string | undefined;
308
+ }
309
+ /**
310
+ * @public
311
+ */
312
+ export interface CancelOrderOutput {
313
+ }
314
+ /**
315
+ * @public
316
+ * @enum
317
+ */
318
+ export declare const CapacityTaskFailureType: {
319
+ readonly UNSUPPORTED_CAPACITY_CONFIGURATION: "UNSUPPORTED_CAPACITY_CONFIGURATION";
320
+ };
321
+ /**
322
+ * @public
323
+ */
324
+ export type CapacityTaskFailureType = (typeof CapacityTaskFailureType)[keyof typeof CapacityTaskFailureType];
325
+ /**
326
+ * <p>The capacity tasks that failed.</p>
327
+ * @public
328
+ */
329
+ export interface CapacityTaskFailure {
330
+ /**
331
+ * <p>The reason that the specified capacity task failed.</p>
332
+ * @public
333
+ */
334
+ Reason: string | undefined;
335
+ /**
336
+ * <p>The type of failure.</p>
337
+ * @public
338
+ */
339
+ Type?: CapacityTaskFailureType;
340
+ }
341
+ /**
342
+ * @public
343
+ * @enum
344
+ */
345
+ export declare const CapacityTaskStatus: {
346
+ readonly CANCELLED: "CANCELLED";
347
+ readonly COMPLETED: "COMPLETED";
348
+ readonly FAILED: "FAILED";
349
+ readonly IN_PROGRESS: "IN_PROGRESS";
350
+ readonly REQUESTED: "REQUESTED";
351
+ };
352
+ /**
353
+ * @public
354
+ */
355
+ export type CapacityTaskStatus = (typeof CapacityTaskStatus)[keyof typeof CapacityTaskStatus];
356
+ /**
357
+ * <p>The summary of the capacity task.</p>
358
+ * @public
359
+ */
360
+ export interface CapacityTaskSummary {
361
+ /**
362
+ * <p>The ID of the specified capacity task.</p>
363
+ * @public
364
+ */
365
+ CapacityTaskId?: string;
366
+ /**
367
+ * <p>The ID of the Outpost associated with the specified capacity task.</p>
368
+ * @public
369
+ */
370
+ OutpostId?: string;
371
+ /**
372
+ * <p>The ID of the Amazon Web Services Outposts order of the host associated with the capacity task.</p>
373
+ * @public
374
+ */
375
+ OrderId?: string;
376
+ /**
377
+ * <p>The status of the capacity task.</p>
378
+ * @public
379
+ */
380
+ CapacityTaskStatus?: CapacityTaskStatus;
381
+ /**
382
+ * <p>The date that the specified capacity task was created.</p>
383
+ * @public
384
+ */
385
+ CreationDate?: Date;
386
+ /**
387
+ * <p>The date that the specified capacity task successfully ran.</p>
388
+ * @public
389
+ */
390
+ CompletionDate?: Date;
391
+ /**
392
+ * <p>The date that the specified capacity was last modified.</p>
393
+ * @public
394
+ */
395
+ LastModifiedDate?: Date;
396
+ }
294
397
  /**
295
398
  * <p> Information about EC2 capacity. </p>
296
399
  * @public
@@ -514,6 +617,7 @@ export interface LineItemAssetInformation {
514
617
  export declare const ShipmentCarrier: {
515
618
  readonly DBS: "DBS";
516
619
  readonly DHL: "DHL";
620
+ readonly EXPEDITORS: "EXPEDITORS";
517
621
  readonly FEDEX: "FEDEX";
518
622
  readonly UPS: "UPS";
519
623
  };
@@ -1185,7 +1289,7 @@ export interface CreateSiteOutput {
1185
1289
  */
1186
1290
  export interface DeleteOutpostInput {
1187
1291
  /**
1188
- * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
1292
+ * <p> The ID or ARN of the Outpost. </p>
1189
1293
  * @public
1190
1294
  */
1191
1295
  OutpostId: string | undefined;
@@ -1210,6 +1314,112 @@ export interface DeleteSiteInput {
1210
1314
  */
1211
1315
  export interface DeleteSiteOutput {
1212
1316
  }
1317
+ /**
1318
+ * @public
1319
+ */
1320
+ export interface GetCapacityTaskInput {
1321
+ /**
1322
+ * <p>ID of the capacity task.</p>
1323
+ * @public
1324
+ */
1325
+ CapacityTaskId: string | undefined;
1326
+ /**
1327
+ * <p>ID or ARN of the Outpost associated with the specified capacity task.</p>
1328
+ * @public
1329
+ */
1330
+ OutpostIdentifier: string | undefined;
1331
+ }
1332
+ /**
1333
+ * <p>The instance type that you specify determines the combination of CPU, memory, storage, and
1334
+ * networking capacity.</p>
1335
+ * @public
1336
+ */
1337
+ export interface InstanceTypeCapacity {
1338
+ /**
1339
+ * <p>The instance type of the hosts.</p>
1340
+ * @public
1341
+ */
1342
+ InstanceType: string | undefined;
1343
+ /**
1344
+ * <p>The number of instances for the specified instance type.</p>
1345
+ * @public
1346
+ */
1347
+ Count: number | undefined;
1348
+ }
1349
+ /**
1350
+ * @public
1351
+ */
1352
+ export interface GetCapacityTaskOutput {
1353
+ /**
1354
+ * <p>ID of the capacity task.</p>
1355
+ * @public
1356
+ */
1357
+ CapacityTaskId?: string;
1358
+ /**
1359
+ * <p>ID of the Outpost associated with the specified capacity task.</p>
1360
+ * @public
1361
+ */
1362
+ OutpostId?: string;
1363
+ /**
1364
+ * <p>ID of the Amazon Web Services Outposts order associated with the specified capacity task.</p>
1365
+ * @public
1366
+ */
1367
+ OrderId?: string;
1368
+ /**
1369
+ * <p>List of instance pools requested in the capacity task.</p>
1370
+ * @public
1371
+ */
1372
+ RequestedInstancePools?: InstanceTypeCapacity[];
1373
+ /**
1374
+ * <p>Performs a dry run to determine if you are above or below instance capacity.</p>
1375
+ * @public
1376
+ */
1377
+ DryRun?: boolean;
1378
+ /**
1379
+ * <p>Status of the capacity task.</p>
1380
+ * <p>A capacity task can have one of the following statuses:</p>
1381
+ * <ul>
1382
+ * <li>
1383
+ * <p>
1384
+ * <code>REQUESTED</code> - The capacity task was created and is awaiting the next step
1385
+ * by Amazon Web Services Outposts.</p>
1386
+ * </li>
1387
+ * <li>
1388
+ * <p>
1389
+ * <code>IN_PROGRESS</code> - The capacity task is running and cannot be
1390
+ * cancelled.</p>
1391
+ * </li>
1392
+ * <li>
1393
+ * <p>
1394
+ * <code>WAITING_FOR_EVACUATION</code> - The capacity task requires capacity to run. You
1395
+ * must stop the recommended EC2 running instances to free up capacity for the task to
1396
+ * run.</p>
1397
+ * </li>
1398
+ * </ul>
1399
+ * @public
1400
+ */
1401
+ CapacityTaskStatus?: CapacityTaskStatus;
1402
+ /**
1403
+ * <p>Reason why the capacity task failed.</p>
1404
+ * @public
1405
+ */
1406
+ Failed?: CapacityTaskFailure;
1407
+ /**
1408
+ * <p>The date the capacity task was created.</p>
1409
+ * @public
1410
+ */
1411
+ CreationDate?: Date;
1412
+ /**
1413
+ * <p>The date the capacity task ran successfully.</p>
1414
+ * @public
1415
+ */
1416
+ CompletionDate?: Date;
1417
+ /**
1418
+ * <p>The date the capacity task was last modified.</p>
1419
+ * @public
1420
+ */
1421
+ LastModifiedDate?: Date;
1422
+ }
1213
1423
  /**
1214
1424
  * @public
1215
1425
  */
@@ -1280,7 +1490,7 @@ export interface GetOrderOutput {
1280
1490
  */
1281
1491
  export interface GetOutpostInput {
1282
1492
  /**
1283
- * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
1493
+ * <p> The ID or ARN of the Outpost. </p>
1284
1494
  * @public
1285
1495
  */
1286
1496
  OutpostId: string | undefined;
@@ -1300,7 +1510,7 @@ export interface GetOutpostOutput {
1300
1510
  */
1301
1511
  export interface GetOutpostInstanceTypesInput {
1302
1512
  /**
1303
- * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
1513
+ * <p> The ID or ARN of the Outpost. </p>
1304
1514
  * @public
1305
1515
  */
1306
1516
  OutpostId: string | undefined;
@@ -1351,6 +1561,46 @@ export interface GetOutpostInstanceTypesOutput {
1351
1561
  */
1352
1562
  OutpostArn?: string;
1353
1563
  }
1564
+ /**
1565
+ * @public
1566
+ */
1567
+ export interface GetOutpostSupportedInstanceTypesInput {
1568
+ /**
1569
+ * <p>The ID or ARN of the Outpost.</p>
1570
+ * @public
1571
+ */
1572
+ OutpostIdentifier: string | undefined;
1573
+ /**
1574
+ * <p>The ID for the Amazon Web Services Outposts order.</p>
1575
+ * @public
1576
+ */
1577
+ OrderId: string | undefined;
1578
+ /**
1579
+ * <p>The maximum page size.</p>
1580
+ * @public
1581
+ */
1582
+ MaxResults?: number;
1583
+ /**
1584
+ * <p>The pagination token.</p>
1585
+ * @public
1586
+ */
1587
+ NextToken?: string;
1588
+ }
1589
+ /**
1590
+ * @public
1591
+ */
1592
+ export interface GetOutpostSupportedInstanceTypesOutput {
1593
+ /**
1594
+ * <p>Information about the instance types.</p>
1595
+ * @public
1596
+ */
1597
+ InstanceTypes?: InstanceTypeItem[];
1598
+ /**
1599
+ * <p>The pagination token.</p>
1600
+ * @public
1601
+ */
1602
+ NextToken?: string;
1603
+ }
1354
1604
  /**
1355
1605
  * @public
1356
1606
  */
@@ -1451,6 +1701,47 @@ export interface ListAssetsOutput {
1451
1701
  */
1452
1702
  NextToken?: string;
1453
1703
  }
1704
+ /**
1705
+ * @public
1706
+ */
1707
+ export interface ListCapacityTasksInput {
1708
+ /**
1709
+ * <p>Filters the results by an Outpost ID or an Outpost ARN.</p>
1710
+ * @public
1711
+ */
1712
+ OutpostIdentifierFilter?: string;
1713
+ /**
1714
+ * <p>The maximum page size.</p>
1715
+ * @public
1716
+ */
1717
+ MaxResults?: number;
1718
+ /**
1719
+ * <p>The pagination token.</p>
1720
+ * @public
1721
+ */
1722
+ NextToken?: string;
1723
+ /**
1724
+ * <p>A list of statuses. For example,
1725
+ * <code>REQUESTED</code> or <code>WAITING_FOR_EVACUATION</code>.</p>
1726
+ * @public
1727
+ */
1728
+ CapacityTaskStatusFilter?: CapacityTaskStatus[];
1729
+ }
1730
+ /**
1731
+ * @public
1732
+ */
1733
+ export interface ListCapacityTasksOutput {
1734
+ /**
1735
+ * <p>Lists all the capacity tasks.</p>
1736
+ * @public
1737
+ */
1738
+ CapacityTasks?: CapacityTaskSummary[];
1739
+ /**
1740
+ * <p>The pagination token.</p>
1741
+ * @public
1742
+ */
1743
+ NextToken?: string;
1744
+ }
1454
1745
  /**
1455
1746
  * @public
1456
1747
  */
@@ -1709,6 +2000,88 @@ export interface ListTagsForResourceResponse {
1709
2000
  */
1710
2001
  Tags?: Record<string, string>;
1711
2002
  }
2003
+ /**
2004
+ * @public
2005
+ */
2006
+ export interface StartCapacityTaskInput {
2007
+ /**
2008
+ * <p>The ID or ARN of the Outposts associated with the specified capacity task.</p>
2009
+ * @public
2010
+ */
2011
+ OutpostIdentifier: string | undefined;
2012
+ /**
2013
+ * <p>The ID of the Amazon Web Services Outposts order associated with the specified capacity task.</p>
2014
+ * @public
2015
+ */
2016
+ OrderId: string | undefined;
2017
+ /**
2018
+ * <p>The instance pools specified in the capacity task.</p>
2019
+ * @public
2020
+ */
2021
+ InstancePools: InstanceTypeCapacity[] | undefined;
2022
+ /**
2023
+ * <p>You can request a dry run to determine if the instance type and instance size changes is above or below available instance
2024
+ * capacity. Requesting a dry run does not make any changes to your plan.</p>
2025
+ * @public
2026
+ */
2027
+ DryRun?: boolean;
2028
+ }
2029
+ /**
2030
+ * @public
2031
+ */
2032
+ export interface StartCapacityTaskOutput {
2033
+ /**
2034
+ * <p>ID of the capacity task that you want to start.</p>
2035
+ * @public
2036
+ */
2037
+ CapacityTaskId?: string;
2038
+ /**
2039
+ * <p>ID of the Outpost associated with the capacity task.</p>
2040
+ * @public
2041
+ */
2042
+ OutpostId?: string;
2043
+ /**
2044
+ * <p>ID of the Amazon Web Services Outposts order of the host associated with the capacity task.</p>
2045
+ * @public
2046
+ */
2047
+ OrderId?: string;
2048
+ /**
2049
+ * <p>List of the instance pools requested in the specified capacity task.</p>
2050
+ * @public
2051
+ */
2052
+ RequestedInstancePools?: InstanceTypeCapacity[];
2053
+ /**
2054
+ * <p>Results of the dry run showing if the specified capacity task is above or below the
2055
+ * available instance capacity.</p>
2056
+ * @public
2057
+ */
2058
+ DryRun?: boolean;
2059
+ /**
2060
+ * <p>Status of the specified capacity task.</p>
2061
+ * @public
2062
+ */
2063
+ CapacityTaskStatus?: CapacityTaskStatus;
2064
+ /**
2065
+ * <p>Reason that the specified capacity task failed.</p>
2066
+ * @public
2067
+ */
2068
+ Failed?: CapacityTaskFailure;
2069
+ /**
2070
+ * <p>Date that the specified capacity task was created.</p>
2071
+ * @public
2072
+ */
2073
+ CreationDate?: Date;
2074
+ /**
2075
+ * <p>Date that the specified capacity task ran successfully.</p>
2076
+ * @public
2077
+ */
2078
+ CompletionDate?: Date;
2079
+ /**
2080
+ * <p>Date that the specified capacity task was last modified.</p>
2081
+ * @public
2082
+ */
2083
+ LastModifiedDate?: Date;
2084
+ }
1712
2085
  /**
1713
2086
  * @public
1714
2087
  */
@@ -1794,7 +2167,7 @@ export interface UntagResourceResponse {
1794
2167
  */
1795
2168
  export interface UpdateOutpostInput {
1796
2169
  /**
1797
- * <p> The ID or the Amazon Resource Name (ARN) of the Outpost. </p>
2170
+ * <p> The ID or ARN of the Outpost. </p>
1798
2171
  * @public
1799
2172
  */
1800
2173
  OutpostId: string | undefined;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { GetOutpostSupportedInstanceTypesCommandInput, GetOutpostSupportedInstanceTypesCommandOutput } from "../commands/GetOutpostSupportedInstanceTypesCommand";
3
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateGetOutpostSupportedInstanceTypes: (config: OutpostsPaginationConfiguration, input: GetOutpostSupportedInstanceTypesCommandInput, ...rest: any[]) => Paginator<GetOutpostSupportedInstanceTypesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCapacityTasksCommandInput, ListCapacityTasksCommandOutput } from "../commands/ListCapacityTasksCommand";
3
+ import { OutpostsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCapacityTasks: (config: OutpostsPaginationConfiguration, input: ListCapacityTasksCommandInput, ...rest: any[]) => Paginator<ListCapacityTasksCommandOutput>;
@@ -1,6 +1,8 @@
1
1
  export * from "./GetOutpostInstanceTypesPaginator";
2
+ export * from "./GetOutpostSupportedInstanceTypesPaginator";
2
3
  export * from "./Interfaces";
3
4
  export * from "./ListAssetsPaginator";
5
+ export * from "./ListCapacityTasksPaginator";
4
6
  export * from "./ListCatalogItemsPaginator";
5
7
  export * from "./ListOrdersPaginator";
6
8
  export * from "./ListOutpostsPaginator";
@@ -1,24 +1,29 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CancelCapacityTaskCommandInput, CancelCapacityTaskCommandOutput } from "../commands/CancelCapacityTaskCommand";
3
4
  import { CancelOrderCommandInput, CancelOrderCommandOutput } from "../commands/CancelOrderCommand";
4
5
  import { CreateOrderCommandInput, CreateOrderCommandOutput } from "../commands/CreateOrderCommand";
5
6
  import { CreateOutpostCommandInput, CreateOutpostCommandOutput } from "../commands/CreateOutpostCommand";
6
7
  import { CreateSiteCommandInput, CreateSiteCommandOutput } from "../commands/CreateSiteCommand";
7
8
  import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "../commands/DeleteOutpostCommand";
8
9
  import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "../commands/DeleteSiteCommand";
10
+ import { GetCapacityTaskCommandInput, GetCapacityTaskCommandOutput } from "../commands/GetCapacityTaskCommand";
9
11
  import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "../commands/GetCatalogItemCommand";
10
12
  import { GetConnectionCommandInput, GetConnectionCommandOutput } from "../commands/GetConnectionCommand";
11
13
  import { GetOrderCommandInput, GetOrderCommandOutput } from "../commands/GetOrderCommand";
12
14
  import { GetOutpostCommandInput, GetOutpostCommandOutput } from "../commands/GetOutpostCommand";
13
15
  import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "../commands/GetOutpostInstanceTypesCommand";
16
+ import { GetOutpostSupportedInstanceTypesCommandInput, GetOutpostSupportedInstanceTypesCommandOutput } from "../commands/GetOutpostSupportedInstanceTypesCommand";
14
17
  import { GetSiteAddressCommandInput, GetSiteAddressCommandOutput } from "../commands/GetSiteAddressCommand";
15
18
  import { GetSiteCommandInput, GetSiteCommandOutput } from "../commands/GetSiteCommand";
16
19
  import { ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand";
20
+ import { ListCapacityTasksCommandInput, ListCapacityTasksCommandOutput } from "../commands/ListCapacityTasksCommand";
17
21
  import { ListCatalogItemsCommandInput, ListCatalogItemsCommandOutput } from "../commands/ListCatalogItemsCommand";
18
22
  import { ListOrdersCommandInput, ListOrdersCommandOutput } from "../commands/ListOrdersCommand";
19
23
  import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "../commands/ListOutpostsCommand";
20
24
  import { ListSitesCommandInput, ListSitesCommandOutput } from "../commands/ListSitesCommand";
21
25
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
26
+ import { StartCapacityTaskCommandInput, StartCapacityTaskCommandOutput } from "../commands/StartCapacityTaskCommand";
22
27
  import { StartConnectionCommandInput, StartConnectionCommandOutput } from "../commands/StartConnectionCommand";
23
28
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
24
29
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
@@ -26,6 +31,10 @@ import { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "../comman
26
31
  import { UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput } from "../commands/UpdateSiteAddressCommand";
27
32
  import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "../commands/UpdateSiteCommand";
28
33
  import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "../commands/UpdateSiteRackPhysicalPropertiesCommand";
34
+ /**
35
+ * serializeAws_restJson1CancelCapacityTaskCommand
36
+ */
37
+ export declare const se_CancelCapacityTaskCommand: (input: CancelCapacityTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
38
  /**
30
39
  * serializeAws_restJson1CancelOrderCommand
31
40
  */
@@ -50,6 +59,10 @@ export declare const se_DeleteOutpostCommand: (input: DeleteOutpostCommandInput,
50
59
  * serializeAws_restJson1DeleteSiteCommand
51
60
  */
52
61
  export declare const se_DeleteSiteCommand: (input: DeleteSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
+ /**
63
+ * serializeAws_restJson1GetCapacityTaskCommand
64
+ */
65
+ export declare const se_GetCapacityTaskCommand: (input: GetCapacityTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
66
  /**
54
67
  * serializeAws_restJson1GetCatalogItemCommand
55
68
  */
@@ -70,6 +83,10 @@ export declare const se_GetOutpostCommand: (input: GetOutpostCommandInput, conte
70
83
  * serializeAws_restJson1GetOutpostInstanceTypesCommand
71
84
  */
72
85
  export declare const se_GetOutpostInstanceTypesCommand: (input: GetOutpostInstanceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ /**
87
+ * serializeAws_restJson1GetOutpostSupportedInstanceTypesCommand
88
+ */
89
+ export declare const se_GetOutpostSupportedInstanceTypesCommand: (input: GetOutpostSupportedInstanceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
90
  /**
74
91
  * serializeAws_restJson1GetSiteCommand
75
92
  */
@@ -82,6 +99,10 @@ export declare const se_GetSiteAddressCommand: (input: GetSiteAddressCommandInpu
82
99
  * serializeAws_restJson1ListAssetsCommand
83
100
  */
84
101
  export declare const se_ListAssetsCommand: (input: ListAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
+ /**
103
+ * serializeAws_restJson1ListCapacityTasksCommand
104
+ */
105
+ export declare const se_ListCapacityTasksCommand: (input: ListCapacityTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
106
  /**
86
107
  * serializeAws_restJson1ListCatalogItemsCommand
87
108
  */
@@ -102,6 +123,10 @@ export declare const se_ListSitesCommand: (input: ListSitesCommandInput, context
102
123
  * serializeAws_restJson1ListTagsForResourceCommand
103
124
  */
104
125
  export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ /**
127
+ * serializeAws_restJson1StartCapacityTaskCommand
128
+ */
129
+ export declare const se_StartCapacityTaskCommand: (input: StartCapacityTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
130
  /**
106
131
  * serializeAws_restJson1StartConnectionCommand
107
132
  */
@@ -130,6 +155,10 @@ export declare const se_UpdateSiteAddressCommand: (input: UpdateSiteAddressComma
130
155
  * serializeAws_restJson1UpdateSiteRackPhysicalPropertiesCommand
131
156
  */
132
157
  export declare const se_UpdateSiteRackPhysicalPropertiesCommand: (input: UpdateSiteRackPhysicalPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
158
+ /**
159
+ * deserializeAws_restJson1CancelCapacityTaskCommand
160
+ */
161
+ export declare const de_CancelCapacityTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelCapacityTaskCommandOutput>;
133
162
  /**
134
163
  * deserializeAws_restJson1CancelOrderCommand
135
164
  */
@@ -154,6 +183,10 @@ export declare const de_DeleteOutpostCommand: (output: __HttpResponse, context:
154
183
  * deserializeAws_restJson1DeleteSiteCommand
155
184
  */
156
185
  export declare const de_DeleteSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSiteCommandOutput>;
186
+ /**
187
+ * deserializeAws_restJson1GetCapacityTaskCommand
188
+ */
189
+ export declare const de_GetCapacityTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCapacityTaskCommandOutput>;
157
190
  /**
158
191
  * deserializeAws_restJson1GetCatalogItemCommand
159
192
  */
@@ -174,6 +207,10 @@ export declare const de_GetOutpostCommand: (output: __HttpResponse, context: __S
174
207
  * deserializeAws_restJson1GetOutpostInstanceTypesCommand
175
208
  */
176
209
  export declare const de_GetOutpostInstanceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutpostInstanceTypesCommandOutput>;
210
+ /**
211
+ * deserializeAws_restJson1GetOutpostSupportedInstanceTypesCommand
212
+ */
213
+ export declare const de_GetOutpostSupportedInstanceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutpostSupportedInstanceTypesCommandOutput>;
177
214
  /**
178
215
  * deserializeAws_restJson1GetSiteCommand
179
216
  */
@@ -186,6 +223,10 @@ export declare const de_GetSiteAddressCommand: (output: __HttpResponse, context:
186
223
  * deserializeAws_restJson1ListAssetsCommand
187
224
  */
188
225
  export declare const de_ListAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssetsCommandOutput>;
226
+ /**
227
+ * deserializeAws_restJson1ListCapacityTasksCommand
228
+ */
229
+ export declare const de_ListCapacityTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCapacityTasksCommandOutput>;
189
230
  /**
190
231
  * deserializeAws_restJson1ListCatalogItemsCommand
191
232
  */
@@ -206,6 +247,10 @@ export declare const de_ListSitesCommand: (output: __HttpResponse, context: __Se
206
247
  * deserializeAws_restJson1ListTagsForResourceCommand
207
248
  */
208
249
  export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
250
+ /**
251
+ * deserializeAws_restJson1StartCapacityTaskCommand
252
+ */
253
+ export declare const de_StartCapacityTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCapacityTaskCommandOutput>;
209
254
  /**
210
255
  * deserializeAws_restJson1StartConnectionCommand
211
256
  */