@aws-sdk/client-outposts 3.99.0 → 3.109.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/CHANGELOG.md +30 -0
- package/dist-cjs/Outposts.js +30 -0
- package/dist-cjs/OutpostsClient.js +2 -0
- package/dist-cjs/commands/GetConnectionCommand.js +36 -0
- package/dist-cjs/commands/StartConnectionCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +32 -2
- package/dist-cjs/protocols/Aws_restJson1.js +178 -1
- package/dist-es/Outposts.js +30 -0
- package/dist-es/OutpostsClient.js +2 -0
- package/dist-es/commands/GetConnectionCommand.js +39 -0
- package/dist-es/commands/StartConnectionCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/protocols/Aws_restJson1.js +225 -0
- package/dist-types/Outposts.d.ts +38 -0
- package/dist-types/OutpostsClient.d.ts +4 -2
- package/dist-types/commands/GetConnectionCommand.d.ts +47 -0
- package/dist-types/commands/StartConnectionCommand.d.ts +47 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +142 -21
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/Outposts.d.ts +10 -0
- package/dist-types/ts3.4/OutpostsClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartConnectionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +68 -21
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/package.json +29 -28
|
@@ -307,6 +307,55 @@ export declare enum CatalogItemClass {
|
|
|
307
307
|
RACK = "RACK",
|
|
308
308
|
SERVER = "SERVER"
|
|
309
309
|
}
|
|
310
|
+
/**
|
|
311
|
+
* <p>
|
|
312
|
+
* Information about a connection.
|
|
313
|
+
* </p>
|
|
314
|
+
*/
|
|
315
|
+
export interface ConnectionDetails {
|
|
316
|
+
/**
|
|
317
|
+
* <p>
|
|
318
|
+
* The public key of the client.
|
|
319
|
+
* </p>
|
|
320
|
+
*/
|
|
321
|
+
ClientPublicKey?: string;
|
|
322
|
+
/**
|
|
323
|
+
* <p>
|
|
324
|
+
* The public key of the server.
|
|
325
|
+
* </p>
|
|
326
|
+
*/
|
|
327
|
+
ServerPublicKey?: string;
|
|
328
|
+
/**
|
|
329
|
+
* <p>
|
|
330
|
+
* The endpoint for the server.
|
|
331
|
+
* </p>
|
|
332
|
+
*/
|
|
333
|
+
ServerEndpoint?: string;
|
|
334
|
+
/**
|
|
335
|
+
* <p>
|
|
336
|
+
* The client tunnel address.
|
|
337
|
+
* </p>
|
|
338
|
+
*/
|
|
339
|
+
ClientTunnelAddress?: string;
|
|
340
|
+
/**
|
|
341
|
+
* <p>
|
|
342
|
+
* The server tunnel address.
|
|
343
|
+
* </p>
|
|
344
|
+
*/
|
|
345
|
+
ServerTunnelAddress?: string;
|
|
346
|
+
/**
|
|
347
|
+
* <p>
|
|
348
|
+
* The allowed IP addresses.
|
|
349
|
+
* </p>
|
|
350
|
+
*/
|
|
351
|
+
AllowedIps?: string[];
|
|
352
|
+
}
|
|
353
|
+
export declare namespace ConnectionDetails {
|
|
354
|
+
/**
|
|
355
|
+
* @internal
|
|
356
|
+
*/
|
|
357
|
+
const filterSensitiveLog: (obj: ConnectionDetails) => any;
|
|
358
|
+
}
|
|
310
359
|
/**
|
|
311
360
|
* <p>Information about a line item request.</p>
|
|
312
361
|
*/
|
|
@@ -540,9 +589,7 @@ export interface CreateOutpostInput {
|
|
|
540
589
|
/**
|
|
541
590
|
* <p>The tags to apply to the Outpost.</p>
|
|
542
591
|
*/
|
|
543
|
-
Tags?:
|
|
544
|
-
[key: string]: string;
|
|
545
|
-
};
|
|
592
|
+
Tags?: Record<string, string>;
|
|
546
593
|
/**
|
|
547
594
|
* <p>
|
|
548
595
|
* The type of hardware for this Outpost.
|
|
@@ -603,9 +650,7 @@ export interface Outpost {
|
|
|
603
650
|
/**
|
|
604
651
|
* <p>The Outpost tags.</p>
|
|
605
652
|
*/
|
|
606
|
-
Tags?:
|
|
607
|
-
[key: string]: string;
|
|
608
|
-
};
|
|
653
|
+
Tags?: Record<string, string>;
|
|
609
654
|
/**
|
|
610
655
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
611
656
|
*/
|
|
@@ -774,9 +819,7 @@ export interface CreateSiteInput {
|
|
|
774
819
|
* The tags to apply to a site.
|
|
775
820
|
* </p>
|
|
776
821
|
*/
|
|
777
|
-
Tags?:
|
|
778
|
-
[key: string]: string;
|
|
779
|
-
};
|
|
822
|
+
Tags?: Record<string, string>;
|
|
780
823
|
/**
|
|
781
824
|
* <p>
|
|
782
825
|
* The location to install and power on the hardware. This address might be
|
|
@@ -831,9 +874,7 @@ export interface Site {
|
|
|
831
874
|
/**
|
|
832
875
|
* <p>The site tags.</p>
|
|
833
876
|
*/
|
|
834
|
-
Tags?:
|
|
835
|
-
[key: string]: string;
|
|
836
|
-
};
|
|
877
|
+
Tags?: Record<string, string>;
|
|
837
878
|
/**
|
|
838
879
|
* <p>The Amazon Resource Name (ARN) of the site.</p>
|
|
839
880
|
*/
|
|
@@ -965,6 +1006,40 @@ export declare namespace GetCatalogItemOutput {
|
|
|
965
1006
|
*/
|
|
966
1007
|
const filterSensitiveLog: (obj: GetCatalogItemOutput) => any;
|
|
967
1008
|
}
|
|
1009
|
+
export interface GetConnectionRequest {
|
|
1010
|
+
/**
|
|
1011
|
+
* <p>
|
|
1012
|
+
* The ID of the connection you request.
|
|
1013
|
+
* </p>
|
|
1014
|
+
*/
|
|
1015
|
+
ConnectionId: string | undefined;
|
|
1016
|
+
}
|
|
1017
|
+
export declare namespace GetConnectionRequest {
|
|
1018
|
+
/**
|
|
1019
|
+
* @internal
|
|
1020
|
+
*/
|
|
1021
|
+
const filterSensitiveLog: (obj: GetConnectionRequest) => any;
|
|
1022
|
+
}
|
|
1023
|
+
export interface GetConnectionResponse {
|
|
1024
|
+
/**
|
|
1025
|
+
* <p>
|
|
1026
|
+
* The ID of the connection you receive.
|
|
1027
|
+
* </p>
|
|
1028
|
+
*/
|
|
1029
|
+
ConnectionId?: string;
|
|
1030
|
+
/**
|
|
1031
|
+
* <p>
|
|
1032
|
+
* Information about a connection.
|
|
1033
|
+
* </p>
|
|
1034
|
+
*/
|
|
1035
|
+
ConnectionDetails?: ConnectionDetails;
|
|
1036
|
+
}
|
|
1037
|
+
export declare namespace GetConnectionResponse {
|
|
1038
|
+
/**
|
|
1039
|
+
* @internal
|
|
1040
|
+
*/
|
|
1041
|
+
const filterSensitiveLog: (obj: GetConnectionResponse) => any;
|
|
1042
|
+
}
|
|
968
1043
|
export interface GetOrderInput {
|
|
969
1044
|
/**
|
|
970
1045
|
* <p>The ID of the order.</p>
|
|
@@ -1371,9 +1446,7 @@ export interface OrderSummary {
|
|
|
1371
1446
|
* The status of all line items in the order.
|
|
1372
1447
|
* </p>
|
|
1373
1448
|
*/
|
|
1374
|
-
LineItemCountsByStatus?:
|
|
1375
|
-
[key: string]: number;
|
|
1376
|
-
};
|
|
1449
|
+
LineItemCountsByStatus?: Record<string, number>;
|
|
1377
1450
|
/**
|
|
1378
1451
|
* <p>
|
|
1379
1452
|
* Submission date for the order.
|
|
@@ -1541,9 +1614,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1541
1614
|
/**
|
|
1542
1615
|
* <p>The resource tags.</p>
|
|
1543
1616
|
*/
|
|
1544
|
-
Tags?:
|
|
1545
|
-
[key: string]: string;
|
|
1546
|
-
};
|
|
1617
|
+
Tags?: Record<string, string>;
|
|
1547
1618
|
}
|
|
1548
1619
|
export declare namespace ListTagsForResourceResponse {
|
|
1549
1620
|
/**
|
|
@@ -1551,6 +1622,58 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
1551
1622
|
*/
|
|
1552
1623
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1553
1624
|
}
|
|
1625
|
+
export interface StartConnectionRequest {
|
|
1626
|
+
/**
|
|
1627
|
+
* <p>
|
|
1628
|
+
* The serial number of the dongle.
|
|
1629
|
+
* </p>
|
|
1630
|
+
*/
|
|
1631
|
+
DeviceSerialNumber: string | undefined;
|
|
1632
|
+
/**
|
|
1633
|
+
* <p>
|
|
1634
|
+
* The ID of the Outpost server.
|
|
1635
|
+
* </p>
|
|
1636
|
+
*/
|
|
1637
|
+
AssetId: string | undefined;
|
|
1638
|
+
/**
|
|
1639
|
+
* <p>
|
|
1640
|
+
* The public key of the client.
|
|
1641
|
+
* </p>
|
|
1642
|
+
*/
|
|
1643
|
+
ClientPublicKey: string | undefined;
|
|
1644
|
+
/**
|
|
1645
|
+
* <p>
|
|
1646
|
+
* The device index of the network interface on the Outpost server.
|
|
1647
|
+
* </p>
|
|
1648
|
+
*/
|
|
1649
|
+
NetworkInterfaceDeviceIndex: number | undefined;
|
|
1650
|
+
}
|
|
1651
|
+
export declare namespace StartConnectionRequest {
|
|
1652
|
+
/**
|
|
1653
|
+
* @internal
|
|
1654
|
+
*/
|
|
1655
|
+
const filterSensitiveLog: (obj: StartConnectionRequest) => any;
|
|
1656
|
+
}
|
|
1657
|
+
export interface StartConnectionResponse {
|
|
1658
|
+
/**
|
|
1659
|
+
* <p>
|
|
1660
|
+
* The ID of the connection.
|
|
1661
|
+
* </p>
|
|
1662
|
+
*/
|
|
1663
|
+
ConnectionId?: string;
|
|
1664
|
+
/**
|
|
1665
|
+
* <p>
|
|
1666
|
+
* The underlay IP address.
|
|
1667
|
+
* </p>
|
|
1668
|
+
*/
|
|
1669
|
+
UnderlayIpAddress?: string;
|
|
1670
|
+
}
|
|
1671
|
+
export declare namespace StartConnectionResponse {
|
|
1672
|
+
/**
|
|
1673
|
+
* @internal
|
|
1674
|
+
*/
|
|
1675
|
+
const filterSensitiveLog: (obj: StartConnectionResponse) => any;
|
|
1676
|
+
}
|
|
1554
1677
|
export interface TagResourceRequest {
|
|
1555
1678
|
/**
|
|
1556
1679
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -1559,9 +1682,7 @@ export interface TagResourceRequest {
|
|
|
1559
1682
|
/**
|
|
1560
1683
|
* <p>The tags to add to the resource.</p>
|
|
1561
1684
|
*/
|
|
1562
|
-
Tags:
|
|
1563
|
-
[key: string]: string;
|
|
1564
|
-
} | undefined;
|
|
1685
|
+
Tags: Record<string, string> | undefined;
|
|
1565
1686
|
}
|
|
1566
1687
|
export declare namespace TagResourceRequest {
|
|
1567
1688
|
/**
|
|
@@ -7,6 +7,7 @@ import { CreateSiteCommandInput, CreateSiteCommandOutput } from "../commands/Cre
|
|
|
7
7
|
import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "../commands/DeleteOutpostCommand";
|
|
8
8
|
import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "../commands/DeleteSiteCommand";
|
|
9
9
|
import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "../commands/GetCatalogItemCommand";
|
|
10
|
+
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "../commands/GetConnectionCommand";
|
|
10
11
|
import { GetOrderCommandInput, GetOrderCommandOutput } from "../commands/GetOrderCommand";
|
|
11
12
|
import { GetOutpostCommandInput, GetOutpostCommandOutput } from "../commands/GetOutpostCommand";
|
|
12
13
|
import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "../commands/GetOutpostInstanceTypesCommand";
|
|
@@ -18,6 +19,7 @@ import { ListOrdersCommandInput, ListOrdersCommandOutput } from "../commands/Lis
|
|
|
18
19
|
import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "../commands/ListOutpostsCommand";
|
|
19
20
|
import { ListSitesCommandInput, ListSitesCommandOutput } from "../commands/ListSitesCommand";
|
|
20
21
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
22
|
+
import { StartConnectionCommandInput, StartConnectionCommandOutput } from "../commands/StartConnectionCommand";
|
|
21
23
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
22
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
23
25
|
import { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "../commands/UpdateOutpostCommand";
|
|
@@ -31,6 +33,7 @@ export declare const serializeAws_restJson1CreateSiteCommand: (input: CreateSite
|
|
|
31
33
|
export declare const serializeAws_restJson1DeleteOutpostCommand: (input: DeleteOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
34
|
export declare const serializeAws_restJson1DeleteSiteCommand: (input: DeleteSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
35
|
export declare const serializeAws_restJson1GetCatalogItemCommand: (input: GetCatalogItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_restJson1GetConnectionCommand: (input: GetConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
37
|
export declare const serializeAws_restJson1GetOrderCommand: (input: GetOrderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
38
|
export declare const serializeAws_restJson1GetOutpostCommand: (input: GetOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
39
|
export declare const serializeAws_restJson1GetOutpostInstanceTypesCommand: (input: GetOutpostInstanceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -42,6 +45,7 @@ export declare const serializeAws_restJson1ListOrdersCommand: (input: ListOrders
|
|
|
42
45
|
export declare const serializeAws_restJson1ListOutpostsCommand: (input: ListOutpostsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
46
|
export declare const serializeAws_restJson1ListSitesCommand: (input: ListSitesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
47
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
export declare const serializeAws_restJson1StartConnectionCommand: (input: StartConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
49
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
50
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
51
|
export declare const serializeAws_restJson1UpdateOutpostCommand: (input: UpdateOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -55,6 +59,7 @@ export declare const deserializeAws_restJson1CreateSiteCommand: (output: __HttpR
|
|
|
55
59
|
export declare const deserializeAws_restJson1DeleteOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOutpostCommandOutput>;
|
|
56
60
|
export declare const deserializeAws_restJson1DeleteSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSiteCommandOutput>;
|
|
57
61
|
export declare const deserializeAws_restJson1GetCatalogItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCatalogItemCommandOutput>;
|
|
62
|
+
export declare const deserializeAws_restJson1GetConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectionCommandOutput>;
|
|
58
63
|
export declare const deserializeAws_restJson1GetOrderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrderCommandOutput>;
|
|
59
64
|
export declare const deserializeAws_restJson1GetOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutpostCommandOutput>;
|
|
60
65
|
export declare const deserializeAws_restJson1GetOutpostInstanceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutpostInstanceTypesCommandOutput>;
|
|
@@ -66,6 +71,7 @@ export declare const deserializeAws_restJson1ListOrdersCommand: (output: __HttpR
|
|
|
66
71
|
export declare const deserializeAws_restJson1ListOutpostsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOutpostsCommandOutput>;
|
|
67
72
|
export declare const deserializeAws_restJson1ListSitesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSitesCommandOutput>;
|
|
68
73
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
74
|
+
export declare const deserializeAws_restJson1StartConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartConnectionCommandOutput>;
|
|
69
75
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
70
76
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
71
77
|
export declare const deserializeAws_restJson1UpdateOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOutpostCommandOutput>;
|
|
@@ -6,6 +6,7 @@ import { CreateSiteCommandInput, CreateSiteCommandOutput } from "./commands/Crea
|
|
|
6
6
|
import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "./commands/DeleteOutpostCommand";
|
|
7
7
|
import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand";
|
|
8
8
|
import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "./commands/GetCatalogItemCommand";
|
|
9
|
+
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
|
|
9
10
|
import { GetOrderCommandInput, GetOrderCommandOutput } from "./commands/GetOrderCommand";
|
|
10
11
|
import { GetOutpostCommandInput, GetOutpostCommandOutput } from "./commands/GetOutpostCommand";
|
|
11
12
|
import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "./commands/GetOutpostInstanceTypesCommand";
|
|
@@ -17,6 +18,7 @@ import { ListOrdersCommandInput, ListOrdersCommandOutput } from "./commands/List
|
|
|
17
18
|
import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "./commands/ListOutpostsCommand";
|
|
18
19
|
import { ListSitesCommandInput, ListSitesCommandOutput } from "./commands/ListSitesCommand";
|
|
19
20
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
21
|
+
import { StartConnectionCommandInput, StartConnectionCommandOutput } from "./commands/StartConnectionCommand";
|
|
20
22
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
21
23
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
22
24
|
import { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "./commands/UpdateOutpostCommand";
|
|
@@ -55,6 +57,10 @@ export declare class Outposts extends OutpostsClient {
|
|
|
55
57
|
getCatalogItem(args: GetCatalogItemCommandInput, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
|
|
56
58
|
getCatalogItem(args: GetCatalogItemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCatalogItemCommandOutput) => void): void;
|
|
57
59
|
|
|
60
|
+
getConnection(args: GetConnectionCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectionCommandOutput>;
|
|
61
|
+
getConnection(args: GetConnectionCommandInput, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
|
|
62
|
+
getConnection(args: GetConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
|
|
63
|
+
|
|
58
64
|
getOrder(args: GetOrderCommandInput, options?: __HttpHandlerOptions): Promise<GetOrderCommandOutput>;
|
|
59
65
|
getOrder(args: GetOrderCommandInput, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
|
|
60
66
|
getOrder(args: GetOrderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOrderCommandOutput) => void): void;
|
|
@@ -99,6 +105,10 @@ export declare class Outposts extends OutpostsClient {
|
|
|
99
105
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
100
106
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
101
107
|
|
|
108
|
+
startConnection(args: StartConnectionCommandInput, options?: __HttpHandlerOptions): Promise<StartConnectionCommandOutput>;
|
|
109
|
+
startConnection(args: StartConnectionCommandInput, cb: (err: any, data?: StartConnectionCommandOutput) => void): void;
|
|
110
|
+
startConnection(args: StartConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartConnectionCommandOutput) => void): void;
|
|
111
|
+
|
|
102
112
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
103
113
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
104
114
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
@@ -13,6 +13,7 @@ import { CreateSiteCommandInput, CreateSiteCommandOutput } from "./commands/Crea
|
|
|
13
13
|
import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "./commands/DeleteOutpostCommand";
|
|
14
14
|
import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "./commands/DeleteSiteCommand";
|
|
15
15
|
import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "./commands/GetCatalogItemCommand";
|
|
16
|
+
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
|
|
16
17
|
import { GetOrderCommandInput, GetOrderCommandOutput } from "./commands/GetOrderCommand";
|
|
17
18
|
import { GetOutpostCommandInput, GetOutpostCommandOutput } from "./commands/GetOutpostCommand";
|
|
18
19
|
import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "./commands/GetOutpostInstanceTypesCommand";
|
|
@@ -24,14 +25,15 @@ import { ListOrdersCommandInput, ListOrdersCommandOutput } from "./commands/List
|
|
|
24
25
|
import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "./commands/ListOutpostsCommand";
|
|
25
26
|
import { ListSitesCommandInput, ListSitesCommandOutput } from "./commands/ListSitesCommand";
|
|
26
27
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
28
|
+
import { StartConnectionCommandInput, StartConnectionCommandOutput } from "./commands/StartConnectionCommand";
|
|
27
29
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
28
30
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
31
|
import { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "./commands/UpdateOutpostCommand";
|
|
30
32
|
import { UpdateSiteAddressCommandInput, UpdateSiteAddressCommandOutput } from "./commands/UpdateSiteAddressCommand";
|
|
31
33
|
import { UpdateSiteCommandInput, UpdateSiteCommandOutput } from "./commands/UpdateSiteCommand";
|
|
32
34
|
import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput } from "./commands/UpdateSiteRackPhysicalPropertiesCommand";
|
|
33
|
-
export declare type ServiceInputTypes = CancelOrderCommandInput | CreateOrderCommandInput | CreateOutpostCommandInput | CreateSiteCommandInput | DeleteOutpostCommandInput | DeleteSiteCommandInput | GetCatalogItemCommandInput | GetOrderCommandInput | GetOutpostCommandInput | GetOutpostInstanceTypesCommandInput | GetSiteAddressCommandInput | GetSiteCommandInput | ListAssetsCommandInput | ListCatalogItemsCommandInput | ListOrdersCommandInput | ListOutpostsCommandInput | ListSitesCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateOutpostCommandInput | UpdateSiteAddressCommandInput | UpdateSiteCommandInput | UpdateSiteRackPhysicalPropertiesCommandInput;
|
|
34
|
-
export declare type ServiceOutputTypes = CancelOrderCommandOutput | CreateOrderCommandOutput | CreateOutpostCommandOutput | CreateSiteCommandOutput | DeleteOutpostCommandOutput | DeleteSiteCommandOutput | GetCatalogItemCommandOutput | GetOrderCommandOutput | GetOutpostCommandOutput | GetOutpostInstanceTypesCommandOutput | GetSiteAddressCommandOutput | GetSiteCommandOutput | ListAssetsCommandOutput | ListCatalogItemsCommandOutput | ListOrdersCommandOutput | ListOutpostsCommandOutput | ListSitesCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateOutpostCommandOutput | UpdateSiteAddressCommandOutput | UpdateSiteCommandOutput | UpdateSiteRackPhysicalPropertiesCommandOutput;
|
|
35
|
+
export declare type ServiceInputTypes = CancelOrderCommandInput | CreateOrderCommandInput | CreateOutpostCommandInput | CreateSiteCommandInput | DeleteOutpostCommandInput | DeleteSiteCommandInput | GetCatalogItemCommandInput | GetConnectionCommandInput | GetOrderCommandInput | GetOutpostCommandInput | GetOutpostInstanceTypesCommandInput | GetSiteAddressCommandInput | GetSiteCommandInput | ListAssetsCommandInput | ListCatalogItemsCommandInput | ListOrdersCommandInput | ListOutpostsCommandInput | ListSitesCommandInput | ListTagsForResourceCommandInput | StartConnectionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateOutpostCommandInput | UpdateSiteAddressCommandInput | UpdateSiteCommandInput | UpdateSiteRackPhysicalPropertiesCommandInput;
|
|
36
|
+
export declare type ServiceOutputTypes = CancelOrderCommandOutput | CreateOrderCommandOutput | CreateOutpostCommandOutput | CreateSiteCommandOutput | DeleteOutpostCommandOutput | DeleteSiteCommandOutput | GetCatalogItemCommandOutput | GetConnectionCommandOutput | GetOrderCommandOutput | GetOutpostCommandOutput | GetOutpostInstanceTypesCommandOutput | GetSiteAddressCommandOutput | GetSiteCommandOutput | ListAssetsCommandOutput | ListCatalogItemsCommandOutput | ListOrdersCommandOutput | ListOutpostsCommandOutput | ListSitesCommandOutput | ListTagsForResourceCommandOutput | StartConnectionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateOutpostCommandOutput | UpdateSiteAddressCommandOutput | UpdateSiteCommandOutput | UpdateSiteRackPhysicalPropertiesCommandOutput;
|
|
35
37
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
36
38
|
|
|
37
39
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetConnectionRequest, GetConnectionResponse } from "../models/models_0";
|
|
4
|
+
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
5
|
+
export interface GetConnectionCommandInput extends GetConnectionRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetConnectionCommandOutput extends GetConnectionResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetConnectionCommand extends $Command<GetConnectionCommandInput, GetConnectionCommandOutput, OutpostsClientResolvedConfig> {
|
|
11
|
+
readonly input: GetConnectionCommandInput;
|
|
12
|
+
constructor(input: GetConnectionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConnectionCommandInput, GetConnectionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { StartConnectionRequest, StartConnectionResponse } from "../models/models_0";
|
|
4
|
+
import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient";
|
|
5
|
+
export interface StartConnectionCommandInput extends StartConnectionRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface StartConnectionCommandOutput extends StartConnectionResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class StartConnectionCommand extends $Command<StartConnectionCommandInput, StartConnectionCommandOutput, OutpostsClientResolvedConfig> {
|
|
11
|
+
readonly input: StartConnectionCommandInput;
|
|
12
|
+
constructor(input: StartConnectionCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartConnectionCommandInput, StartConnectionCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./CreateSiteCommand";
|
|
|
5
5
|
export * from "./DeleteOutpostCommand";
|
|
6
6
|
export * from "./DeleteSiteCommand";
|
|
7
7
|
export * from "./GetCatalogItemCommand";
|
|
8
|
+
export * from "./GetConnectionCommand";
|
|
8
9
|
export * from "./GetOrderCommand";
|
|
9
10
|
export * from "./GetOutpostCommand";
|
|
10
11
|
export * from "./GetOutpostInstanceTypesCommand";
|
|
@@ -16,6 +17,7 @@ export * from "./ListOrdersCommand";
|
|
|
16
17
|
export * from "./ListOutpostsCommand";
|
|
17
18
|
export * from "./ListSitesCommand";
|
|
18
19
|
export * from "./ListTagsForResourceCommand";
|
|
20
|
+
export * from "./StartConnectionCommand";
|
|
19
21
|
export * from "./TagResourceCommand";
|
|
20
22
|
export * from "./UntagResourceCommand";
|
|
21
23
|
export * from "./UpdateOutpostCommand";
|
|
@@ -169,6 +169,25 @@ export declare enum CatalogItemClass {
|
|
|
169
169
|
SERVER = "SERVER"
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
+
export interface ConnectionDetails {
|
|
173
|
+
|
|
174
|
+
ClientPublicKey?: string;
|
|
175
|
+
|
|
176
|
+
ServerPublicKey?: string;
|
|
177
|
+
|
|
178
|
+
ServerEndpoint?: string;
|
|
179
|
+
|
|
180
|
+
ClientTunnelAddress?: string;
|
|
181
|
+
|
|
182
|
+
ServerTunnelAddress?: string;
|
|
183
|
+
|
|
184
|
+
AllowedIps?: string[];
|
|
185
|
+
}
|
|
186
|
+
export declare namespace ConnectionDetails {
|
|
187
|
+
|
|
188
|
+
const filterSensitiveLog: (obj: ConnectionDetails) => any;
|
|
189
|
+
}
|
|
190
|
+
|
|
172
191
|
export interface LineItemRequest {
|
|
173
192
|
|
|
174
193
|
CatalogItemId?: string;
|
|
@@ -291,9 +310,7 @@ export interface CreateOutpostInput {
|
|
|
291
310
|
|
|
292
311
|
AvailabilityZoneId?: string;
|
|
293
312
|
|
|
294
|
-
Tags?:
|
|
295
|
-
[key: string]: string;
|
|
296
|
-
};
|
|
313
|
+
Tags?: Record<string, string>;
|
|
297
314
|
|
|
298
315
|
SupportedHardwareType?: SupportedHardwareType | string;
|
|
299
316
|
}
|
|
@@ -322,9 +339,7 @@ export interface Outpost {
|
|
|
322
339
|
|
|
323
340
|
AvailabilityZoneId?: string;
|
|
324
341
|
|
|
325
|
-
Tags?:
|
|
326
|
-
[key: string]: string;
|
|
327
|
-
};
|
|
342
|
+
Tags?: Record<string, string>;
|
|
328
343
|
|
|
329
344
|
SiteArn?: string;
|
|
330
345
|
|
|
@@ -438,9 +453,7 @@ export interface CreateSiteInput {
|
|
|
438
453
|
|
|
439
454
|
Notes?: string;
|
|
440
455
|
|
|
441
|
-
Tags?:
|
|
442
|
-
[key: string]: string;
|
|
443
|
-
};
|
|
456
|
+
Tags?: Record<string, string>;
|
|
444
457
|
|
|
445
458
|
OperatingAddress?: Address;
|
|
446
459
|
|
|
@@ -463,9 +476,7 @@ export interface Site {
|
|
|
463
476
|
|
|
464
477
|
Description?: string;
|
|
465
478
|
|
|
466
|
-
Tags?:
|
|
467
|
-
[key: string]: string;
|
|
468
|
-
};
|
|
479
|
+
Tags?: Record<string, string>;
|
|
469
480
|
|
|
470
481
|
SiteArn?: string;
|
|
471
482
|
|
|
@@ -535,6 +546,24 @@ export declare namespace GetCatalogItemOutput {
|
|
|
535
546
|
|
|
536
547
|
const filterSensitiveLog: (obj: GetCatalogItemOutput) => any;
|
|
537
548
|
}
|
|
549
|
+
export interface GetConnectionRequest {
|
|
550
|
+
|
|
551
|
+
ConnectionId: string | undefined;
|
|
552
|
+
}
|
|
553
|
+
export declare namespace GetConnectionRequest {
|
|
554
|
+
|
|
555
|
+
const filterSensitiveLog: (obj: GetConnectionRequest) => any;
|
|
556
|
+
}
|
|
557
|
+
export interface GetConnectionResponse {
|
|
558
|
+
|
|
559
|
+
ConnectionId?: string;
|
|
560
|
+
|
|
561
|
+
ConnectionDetails?: ConnectionDetails;
|
|
562
|
+
}
|
|
563
|
+
export declare namespace GetConnectionResponse {
|
|
564
|
+
|
|
565
|
+
const filterSensitiveLog: (obj: GetConnectionResponse) => any;
|
|
566
|
+
}
|
|
538
567
|
export interface GetOrderInput {
|
|
539
568
|
|
|
540
569
|
OrderId: string | undefined;
|
|
@@ -717,9 +746,7 @@ export interface OrderSummary {
|
|
|
717
746
|
|
|
718
747
|
Status?: OrderStatus | string;
|
|
719
748
|
|
|
720
|
-
LineItemCountsByStatus?:
|
|
721
|
-
[key: string]: number;
|
|
722
|
-
};
|
|
749
|
+
LineItemCountsByStatus?: Record<string, number>;
|
|
723
750
|
|
|
724
751
|
OrderSubmissionDate?: Date;
|
|
725
752
|
|
|
@@ -801,21 +828,41 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
801
828
|
}
|
|
802
829
|
export interface ListTagsForResourceResponse {
|
|
803
830
|
|
|
804
|
-
Tags?:
|
|
805
|
-
[key: string]: string;
|
|
806
|
-
};
|
|
831
|
+
Tags?: Record<string, string>;
|
|
807
832
|
}
|
|
808
833
|
export declare namespace ListTagsForResourceResponse {
|
|
809
834
|
|
|
810
835
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
811
836
|
}
|
|
837
|
+
export interface StartConnectionRequest {
|
|
838
|
+
|
|
839
|
+
DeviceSerialNumber: string | undefined;
|
|
840
|
+
|
|
841
|
+
AssetId: string | undefined;
|
|
842
|
+
|
|
843
|
+
ClientPublicKey: string | undefined;
|
|
844
|
+
|
|
845
|
+
NetworkInterfaceDeviceIndex: number | undefined;
|
|
846
|
+
}
|
|
847
|
+
export declare namespace StartConnectionRequest {
|
|
848
|
+
|
|
849
|
+
const filterSensitiveLog: (obj: StartConnectionRequest) => any;
|
|
850
|
+
}
|
|
851
|
+
export interface StartConnectionResponse {
|
|
852
|
+
|
|
853
|
+
ConnectionId?: string;
|
|
854
|
+
|
|
855
|
+
UnderlayIpAddress?: string;
|
|
856
|
+
}
|
|
857
|
+
export declare namespace StartConnectionResponse {
|
|
858
|
+
|
|
859
|
+
const filterSensitiveLog: (obj: StartConnectionResponse) => any;
|
|
860
|
+
}
|
|
812
861
|
export interface TagResourceRequest {
|
|
813
862
|
|
|
814
863
|
ResourceArn: string | undefined;
|
|
815
864
|
|
|
816
|
-
Tags:
|
|
817
|
-
[key: string]: string;
|
|
818
|
-
} | undefined;
|
|
865
|
+
Tags: Record<string, string> | undefined;
|
|
819
866
|
}
|
|
820
867
|
export declare namespace TagResourceRequest {
|
|
821
868
|
|
|
@@ -7,6 +7,7 @@ import { CreateSiteCommandInput, CreateSiteCommandOutput } from "../commands/Cre
|
|
|
7
7
|
import { DeleteOutpostCommandInput, DeleteOutpostCommandOutput } from "../commands/DeleteOutpostCommand";
|
|
8
8
|
import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "../commands/DeleteSiteCommand";
|
|
9
9
|
import { GetCatalogItemCommandInput, GetCatalogItemCommandOutput } from "../commands/GetCatalogItemCommand";
|
|
10
|
+
import { GetConnectionCommandInput, GetConnectionCommandOutput } from "../commands/GetConnectionCommand";
|
|
10
11
|
import { GetOrderCommandInput, GetOrderCommandOutput } from "../commands/GetOrderCommand";
|
|
11
12
|
import { GetOutpostCommandInput, GetOutpostCommandOutput } from "../commands/GetOutpostCommand";
|
|
12
13
|
import { GetOutpostInstanceTypesCommandInput, GetOutpostInstanceTypesCommandOutput } from "../commands/GetOutpostInstanceTypesCommand";
|
|
@@ -18,6 +19,7 @@ import { ListOrdersCommandInput, ListOrdersCommandOutput } from "../commands/Lis
|
|
|
18
19
|
import { ListOutpostsCommandInput, ListOutpostsCommandOutput } from "../commands/ListOutpostsCommand";
|
|
19
20
|
import { ListSitesCommandInput, ListSitesCommandOutput } from "../commands/ListSitesCommand";
|
|
20
21
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
22
|
+
import { StartConnectionCommandInput, StartConnectionCommandOutput } from "../commands/StartConnectionCommand";
|
|
21
23
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
22
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
23
25
|
import { UpdateOutpostCommandInput, UpdateOutpostCommandOutput } from "../commands/UpdateOutpostCommand";
|
|
@@ -31,6 +33,7 @@ export declare const serializeAws_restJson1CreateSiteCommand: (input: CreateSite
|
|
|
31
33
|
export declare const serializeAws_restJson1DeleteOutpostCommand: (input: DeleteOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
34
|
export declare const serializeAws_restJson1DeleteSiteCommand: (input: DeleteSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
35
|
export declare const serializeAws_restJson1GetCatalogItemCommand: (input: GetCatalogItemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_restJson1GetConnectionCommand: (input: GetConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
37
|
export declare const serializeAws_restJson1GetOrderCommand: (input: GetOrderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
38
|
export declare const serializeAws_restJson1GetOutpostCommand: (input: GetOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
39
|
export declare const serializeAws_restJson1GetOutpostInstanceTypesCommand: (input: GetOutpostInstanceTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -42,6 +45,7 @@ export declare const serializeAws_restJson1ListOrdersCommand: (input: ListOrders
|
|
|
42
45
|
export declare const serializeAws_restJson1ListOutpostsCommand: (input: ListOutpostsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
46
|
export declare const serializeAws_restJson1ListSitesCommand: (input: ListSitesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
47
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
export declare const serializeAws_restJson1StartConnectionCommand: (input: StartConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
49
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
50
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
51
|
export declare const serializeAws_restJson1UpdateOutpostCommand: (input: UpdateOutpostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -55,6 +59,7 @@ export declare const deserializeAws_restJson1CreateSiteCommand: (output: __HttpR
|
|
|
55
59
|
export declare const deserializeAws_restJson1DeleteOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOutpostCommandOutput>;
|
|
56
60
|
export declare const deserializeAws_restJson1DeleteSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSiteCommandOutput>;
|
|
57
61
|
export declare const deserializeAws_restJson1GetCatalogItemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCatalogItemCommandOutput>;
|
|
62
|
+
export declare const deserializeAws_restJson1GetConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectionCommandOutput>;
|
|
58
63
|
export declare const deserializeAws_restJson1GetOrderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrderCommandOutput>;
|
|
59
64
|
export declare const deserializeAws_restJson1GetOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutpostCommandOutput>;
|
|
60
65
|
export declare const deserializeAws_restJson1GetOutpostInstanceTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutpostInstanceTypesCommandOutput>;
|
|
@@ -66,6 +71,7 @@ export declare const deserializeAws_restJson1ListOrdersCommand: (output: __HttpR
|
|
|
66
71
|
export declare const deserializeAws_restJson1ListOutpostsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOutpostsCommandOutput>;
|
|
67
72
|
export declare const deserializeAws_restJson1ListSitesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSitesCommandOutput>;
|
|
68
73
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
74
|
+
export declare const deserializeAws_restJson1StartConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartConnectionCommandOutput>;
|
|
69
75
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
70
76
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
71
77
|
export declare const deserializeAws_restJson1UpdateOutpostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOutpostCommandOutput>;
|