@aws-sdk/client-outposts 3.105.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 +11 -0
- package/dist-cjs/Outposts.js +30 -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/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 +135 -0
- 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 +61 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/package.json +29 -29
|
@@ -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
|
*/
|
|
@@ -957,6 +1006,40 @@ export declare namespace GetCatalogItemOutput {
|
|
|
957
1006
|
*/
|
|
958
1007
|
const filterSensitiveLog: (obj: GetCatalogItemOutput) => any;
|
|
959
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
|
+
}
|
|
960
1043
|
export interface GetOrderInput {
|
|
961
1044
|
/**
|
|
962
1045
|
* <p>The ID of the order.</p>
|
|
@@ -1539,6 +1622,58 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
1539
1622
|
*/
|
|
1540
1623
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1541
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
|
+
}
|
|
1542
1677
|
export interface TagResourceRequest {
|
|
1543
1678
|
/**
|
|
1544
1679
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -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;
|
|
@@ -527,6 +546,24 @@ export declare namespace GetCatalogItemOutput {
|
|
|
527
546
|
|
|
528
547
|
const filterSensitiveLog: (obj: GetCatalogItemOutput) => any;
|
|
529
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
|
+
}
|
|
530
567
|
export interface GetOrderInput {
|
|
531
568
|
|
|
532
569
|
OrderId: string | undefined;
|
|
@@ -797,6 +834,30 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
797
834
|
|
|
798
835
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
799
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
|
+
}
|
|
800
861
|
export interface TagResourceRequest {
|
|
801
862
|
|
|
802
863
|
ResourceArn: string | undefined;
|
|
@@ -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>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.109.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,37 +18,37 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.109.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.109.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.109.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.109.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.109.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.109.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.109.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.109.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.109.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.109.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.109.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.109.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.109.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.109.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.109.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.109.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.109.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.109.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.109.0",
|
|
40
|
+
"@aws-sdk/types": "3.109.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.109.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.109.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.109.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.109.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.109.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|