@aws-sdk/client-networkmanager 3.118.1 → 3.128.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 (65) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/NetworkManager.js +105 -0
  3. package/dist-cjs/commands/CreateTransitGatewayPeeringCommand.js +36 -0
  4. package/dist-cjs/commands/CreateTransitGatewayRouteTableAttachmentCommand.js +36 -0
  5. package/dist-cjs/commands/DeletePeeringCommand.js +36 -0
  6. package/dist-cjs/commands/GetCoreNetworkChangeEventsCommand.js +36 -0
  7. package/dist-cjs/commands/GetTransitGatewayPeeringCommand.js +36 -0
  8. package/dist-cjs/commands/GetTransitGatewayRouteTableAttachmentCommand.js +36 -0
  9. package/dist-cjs/commands/ListPeeringsCommand.js +36 -0
  10. package/dist-cjs/commands/index.js +7 -0
  11. package/dist-cjs/models/models_0.js +143 -5
  12. package/dist-cjs/pagination/GetCoreNetworkChangeEventsPaginator.js +36 -0
  13. package/dist-cjs/pagination/ListPeeringsPaginator.js +36 -0
  14. package/dist-cjs/pagination/index.js +3 -1
  15. package/dist-cjs/protocols/Aws_restJson1.js +1221 -659
  16. package/dist-es/NetworkManager.js +105 -0
  17. package/dist-es/commands/CreateTransitGatewayPeeringCommand.js +39 -0
  18. package/dist-es/commands/CreateTransitGatewayRouteTableAttachmentCommand.js +39 -0
  19. package/dist-es/commands/DeletePeeringCommand.js +39 -0
  20. package/dist-es/commands/GetCoreNetworkChangeEventsCommand.js +39 -0
  21. package/dist-es/commands/GetTransitGatewayPeeringCommand.js +39 -0
  22. package/dist-es/commands/GetTransitGatewayRouteTableAttachmentCommand.js +39 -0
  23. package/dist-es/commands/ListPeeringsCommand.js +39 -0
  24. package/dist-es/commands/index.js +7 -0
  25. package/dist-es/models/models_0.js +99 -0
  26. package/dist-es/pagination/GetCoreNetworkChangeEventsPaginator.js +75 -0
  27. package/dist-es/pagination/ListPeeringsPaginator.js +75 -0
  28. package/dist-es/pagination/index.js +3 -1
  29. package/dist-es/protocols/Aws_restJson1.js +1395 -655
  30. package/dist-types/NetworkManager.d.ts +56 -1
  31. package/dist-types/NetworkManagerClient.d.ts +9 -2
  32. package/dist-types/commands/CreateTransitGatewayPeeringCommand.d.ts +35 -0
  33. package/dist-types/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +35 -0
  34. package/dist-types/commands/DeletePeeringCommand.d.ts +35 -0
  35. package/dist-types/commands/GetCoreNetworkChangeEventsCommand.d.ts +35 -0
  36. package/dist-types/commands/GetCoreNetworkPolicyCommand.d.ts +1 -1
  37. package/dist-types/commands/GetTransitGatewayPeeringCommand.d.ts +35 -0
  38. package/dist-types/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +35 -0
  39. package/dist-types/commands/ListOrganizationServiceAccessStatusCommand.d.ts +17 -0
  40. package/dist-types/commands/ListPeeringsCommand.d.ts +35 -0
  41. package/dist-types/commands/StartOrganizationServiceAccessUpdateCommand.d.ts +17 -0
  42. package/dist-types/commands/index.d.ts +7 -0
  43. package/dist-types/models/models_0.d.ts +460 -7
  44. package/dist-types/pagination/GetCoreNetworkChangeEventsPaginator.d.ts +4 -0
  45. package/dist-types/pagination/ListPeeringsPaginator.d.ts +4 -0
  46. package/dist-types/pagination/index.d.ts +3 -1
  47. package/dist-types/protocols/Aws_restJson1.d.ts +21 -0
  48. package/dist-types/ts3.4/NetworkManager.d.ts +37 -0
  49. package/dist-types/ts3.4/NetworkManagerClient.d.ts +9 -2
  50. package/dist-types/ts3.4/commands/CreateTransitGatewayPeeringCommand.d.ts +17 -0
  51. package/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +17 -0
  52. package/dist-types/ts3.4/commands/DeletePeeringCommand.d.ts +17 -0
  53. package/dist-types/ts3.4/commands/GetCoreNetworkChangeEventsCommand.d.ts +17 -0
  54. package/dist-types/ts3.4/commands/GetTransitGatewayPeeringCommand.d.ts +17 -0
  55. package/dist-types/ts3.4/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +17 -0
  56. package/dist-types/ts3.4/commands/ListOrganizationServiceAccessStatusCommand.d.ts +1 -0
  57. package/dist-types/ts3.4/commands/ListPeeringsCommand.d.ts +17 -0
  58. package/dist-types/ts3.4/commands/StartOrganizationServiceAccessUpdateCommand.d.ts +1 -0
  59. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +266 -1
  61. package/dist-types/ts3.4/pagination/GetCoreNetworkChangeEventsPaginator.d.ts +4 -0
  62. package/dist-types/ts3.4/pagination/ListPeeringsPaginator.d.ts +4 -0
  63. package/dist-types/ts3.4/pagination/index.d.ts +3 -1
  64. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +21 -0
  65. package/package.json +26 -26
@@ -11,6 +11,7 @@ export declare namespace AcceptAttachmentRequest {
11
11
  export declare enum AttachmentType {
12
12
  CONNECT = "CONNECT",
13
13
  SITE_TO_SITE_VPN = "SITE_TO_SITE_VPN",
14
+ TRANSIT_GATEWAY_ROUTE_TABLE = "TRANSIT_GATEWAY_ROUTE_TABLE",
14
15
  VPC = "VPC"
15
16
  }
16
17
 
@@ -174,8 +175,11 @@ export declare class ValidationException extends __BaseException {
174
175
 
175
176
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
176
177
  }
178
+
177
179
  export interface AccountStatus {
180
+
178
181
  AccountId?: string;
182
+
179
183
  SLRDeploymentStatus?: string;
180
184
  }
181
185
  export declare namespace AccountStatus {
@@ -419,12 +423,22 @@ export declare enum ChangeSetState {
419
423
  PENDING_GENERATION = "PENDING_GENERATION",
420
424
  READY_TO_EXECUTE = "READY_TO_EXECUTE"
421
425
  }
426
+ export declare enum ChangeStatus {
427
+ COMPLETE = "COMPLETE",
428
+ FAILED = "FAILED",
429
+ IN_PROGRESS = "IN_PROGRESS",
430
+ NOT_STARTED = "NOT_STARTED"
431
+ }
422
432
  export declare enum ChangeType {
423
433
  ATTACHMENT_MAPPING = "ATTACHMENT_MAPPING",
434
+ ATTACHMENT_POLICIES_CONFIGURATION = "ATTACHMENT_POLICIES_CONFIGURATION",
424
435
  ATTACHMENT_ROUTE_PROPAGATION = "ATTACHMENT_ROUTE_PROPAGATION",
425
436
  ATTACHMENT_ROUTE_STATIC = "ATTACHMENT_ROUTE_STATIC",
437
+ CORE_NETWORK_CONFIGURATION = "CORE_NETWORK_CONFIGURATION",
426
438
  CORE_NETWORK_EDGE = "CORE_NETWORK_EDGE",
427
- CORE_NETWORK_SEGMENT = "CORE_NETWORK_SEGMENT"
439
+ CORE_NETWORK_SEGMENT = "CORE_NETWORK_SEGMENT",
440
+ SEGMENTS_CONFIGURATION = "SEGMENTS_CONFIGURATION",
441
+ SEGMENT_ACTIONS_CONFIGURATION = "SEGMENT_ACTIONS_CONFIGURATION"
428
442
  }
429
443
  export declare enum TunnelProtocol {
430
444
  GRE = "GRE"
@@ -679,11 +693,47 @@ export interface CoreNetworkChange {
679
693
  PreviousValues?: CoreNetworkChangeValues;
680
694
 
681
695
  NewValues?: CoreNetworkChangeValues;
696
+
697
+ IdentifierPath?: string;
682
698
  }
683
699
  export declare namespace CoreNetworkChange {
684
700
 
685
701
  const filterSensitiveLog: (obj: CoreNetworkChange) => any;
686
702
  }
703
+
704
+ export interface CoreNetworkChangeEventValues {
705
+
706
+ EdgeLocation?: string;
707
+
708
+ SegmentName?: string;
709
+
710
+ AttachmentId?: string;
711
+
712
+ Cidr?: string;
713
+ }
714
+ export declare namespace CoreNetworkChangeEventValues {
715
+
716
+ const filterSensitiveLog: (obj: CoreNetworkChangeEventValues) => any;
717
+ }
718
+
719
+ export interface CoreNetworkChangeEvent {
720
+
721
+ Type?: ChangeType | string;
722
+
723
+ Action?: ChangeAction | string;
724
+
725
+ IdentifierPath?: string;
726
+
727
+ EventTime?: Date;
728
+
729
+ Status?: ChangeStatus | string;
730
+
731
+ Values?: CoreNetworkChangeEventValues;
732
+ }
733
+ export declare namespace CoreNetworkChangeEvent {
734
+
735
+ const filterSensitiveLog: (obj: CoreNetworkChangeEvent) => any;
736
+ }
687
737
  export declare enum CoreNetworkPolicyAlias {
688
738
  LATEST = "LATEST",
689
739
  LIVE = "LIVE"
@@ -1171,6 +1221,110 @@ export declare namespace CreateSiteToSiteVpnAttachmentResponse {
1171
1221
 
1172
1222
  const filterSensitiveLog: (obj: CreateSiteToSiteVpnAttachmentResponse) => any;
1173
1223
  }
1224
+ export interface CreateTransitGatewayPeeringRequest {
1225
+
1226
+ CoreNetworkId: string | undefined;
1227
+
1228
+ TransitGatewayArn: string | undefined;
1229
+
1230
+ Tags?: Tag[];
1231
+
1232
+ ClientToken?: string;
1233
+ }
1234
+ export declare namespace CreateTransitGatewayPeeringRequest {
1235
+
1236
+ const filterSensitiveLog: (obj: CreateTransitGatewayPeeringRequest) => any;
1237
+ }
1238
+ export declare enum PeeringType {
1239
+ TRANSIT_GATEWAY = "TRANSIT_GATEWAY"
1240
+ }
1241
+ export declare enum PeeringState {
1242
+ AVAILABLE = "AVAILABLE",
1243
+ CREATING = "CREATING",
1244
+ DELETING = "DELETING",
1245
+ FAILED = "FAILED"
1246
+ }
1247
+
1248
+ export interface Peering {
1249
+
1250
+ CoreNetworkId?: string;
1251
+
1252
+ CoreNetworkArn?: string;
1253
+
1254
+ PeeringId?: string;
1255
+
1256
+ OwnerAccountId?: string;
1257
+
1258
+ PeeringType?: PeeringType | string;
1259
+
1260
+ State?: PeeringState | string;
1261
+
1262
+ EdgeLocation?: string;
1263
+
1264
+ ResourceArn?: string;
1265
+
1266
+ Tags?: Tag[];
1267
+
1268
+ CreatedAt?: Date;
1269
+ }
1270
+ export declare namespace Peering {
1271
+
1272
+ const filterSensitiveLog: (obj: Peering) => any;
1273
+ }
1274
+
1275
+ export interface TransitGatewayPeering {
1276
+
1277
+ Peering?: Peering;
1278
+
1279
+ TransitGatewayArn?: string;
1280
+ }
1281
+ export declare namespace TransitGatewayPeering {
1282
+
1283
+ const filterSensitiveLog: (obj: TransitGatewayPeering) => any;
1284
+ }
1285
+ export interface CreateTransitGatewayPeeringResponse {
1286
+
1287
+ TransitGatewayPeering?: TransitGatewayPeering;
1288
+ }
1289
+ export declare namespace CreateTransitGatewayPeeringResponse {
1290
+
1291
+ const filterSensitiveLog: (obj: CreateTransitGatewayPeeringResponse) => any;
1292
+ }
1293
+ export interface CreateTransitGatewayRouteTableAttachmentRequest {
1294
+
1295
+ PeeringId: string | undefined;
1296
+
1297
+ TransitGatewayRouteTableArn: string | undefined;
1298
+
1299
+ Tags?: Tag[];
1300
+
1301
+ ClientToken?: string;
1302
+ }
1303
+ export declare namespace CreateTransitGatewayRouteTableAttachmentRequest {
1304
+
1305
+ const filterSensitiveLog: (obj: CreateTransitGatewayRouteTableAttachmentRequest) => any;
1306
+ }
1307
+
1308
+ export interface TransitGatewayRouteTableAttachment {
1309
+
1310
+ Attachment?: Attachment;
1311
+
1312
+ PeeringId?: string;
1313
+
1314
+ TransitGatewayRouteTableArn?: string;
1315
+ }
1316
+ export declare namespace TransitGatewayRouteTableAttachment {
1317
+
1318
+ const filterSensitiveLog: (obj: TransitGatewayRouteTableAttachment) => any;
1319
+ }
1320
+ export interface CreateTransitGatewayRouteTableAttachmentResponse {
1321
+
1322
+ TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
1323
+ }
1324
+ export declare namespace CreateTransitGatewayRouteTableAttachmentResponse {
1325
+
1326
+ const filterSensitiveLog: (obj: CreateTransitGatewayRouteTableAttachmentResponse) => any;
1327
+ }
1174
1328
 
1175
1329
  export interface VpcOptions {
1176
1330
 
@@ -1355,6 +1509,22 @@ export declare namespace DeleteLinkResponse {
1355
1509
 
1356
1510
  const filterSensitiveLog: (obj: DeleteLinkResponse) => any;
1357
1511
  }
1512
+ export interface DeletePeeringRequest {
1513
+
1514
+ PeeringId: string | undefined;
1515
+ }
1516
+ export declare namespace DeletePeeringRequest {
1517
+
1518
+ const filterSensitiveLog: (obj: DeletePeeringRequest) => any;
1519
+ }
1520
+ export interface DeletePeeringResponse {
1521
+
1522
+ Peering?: Peering;
1523
+ }
1524
+ export declare namespace DeletePeeringResponse {
1525
+
1526
+ const filterSensitiveLog: (obj: DeletePeeringResponse) => any;
1527
+ }
1358
1528
  export interface DeleteResourcePolicyRequest {
1359
1529
 
1360
1530
  ResourceArn: string | undefined;
@@ -1646,6 +1816,30 @@ export declare namespace GetCoreNetworkResponse {
1646
1816
 
1647
1817
  const filterSensitiveLog: (obj: GetCoreNetworkResponse) => any;
1648
1818
  }
1819
+ export interface GetCoreNetworkChangeEventsRequest {
1820
+
1821
+ CoreNetworkId: string | undefined;
1822
+
1823
+ PolicyVersionId: number | undefined;
1824
+
1825
+ MaxResults?: number;
1826
+
1827
+ NextToken?: string;
1828
+ }
1829
+ export declare namespace GetCoreNetworkChangeEventsRequest {
1830
+
1831
+ const filterSensitiveLog: (obj: GetCoreNetworkChangeEventsRequest) => any;
1832
+ }
1833
+ export interface GetCoreNetworkChangeEventsResponse {
1834
+
1835
+ CoreNetworkChangeEvents?: CoreNetworkChangeEvent[];
1836
+
1837
+ NextToken?: string;
1838
+ }
1839
+ export declare namespace GetCoreNetworkChangeEventsResponse {
1840
+
1841
+ const filterSensitiveLog: (obj: GetCoreNetworkChangeEventsResponse) => any;
1842
+ }
1649
1843
  export interface GetCoreNetworkChangeSetRequest {
1650
1844
 
1651
1845
  CoreNetworkId: string | undefined;
@@ -2317,6 +2511,22 @@ export declare namespace GetTransitGatewayConnectPeerAssociationsResponse {
2317
2511
 
2318
2512
  const filterSensitiveLog: (obj: GetTransitGatewayConnectPeerAssociationsResponse) => any;
2319
2513
  }
2514
+ export interface GetTransitGatewayPeeringRequest {
2515
+
2516
+ PeeringId: string | undefined;
2517
+ }
2518
+ export declare namespace GetTransitGatewayPeeringRequest {
2519
+
2520
+ const filterSensitiveLog: (obj: GetTransitGatewayPeeringRequest) => any;
2521
+ }
2522
+ export interface GetTransitGatewayPeeringResponse {
2523
+
2524
+ TransitGatewayPeering?: TransitGatewayPeering;
2525
+ }
2526
+ export declare namespace GetTransitGatewayPeeringResponse {
2527
+
2528
+ const filterSensitiveLog: (obj: GetTransitGatewayPeeringResponse) => any;
2529
+ }
2320
2530
  export interface GetTransitGatewayRegistrationsRequest {
2321
2531
 
2322
2532
  GlobalNetworkId: string | undefined;
@@ -2341,6 +2551,22 @@ export declare namespace GetTransitGatewayRegistrationsResponse {
2341
2551
 
2342
2552
  const filterSensitiveLog: (obj: GetTransitGatewayRegistrationsResponse) => any;
2343
2553
  }
2554
+ export interface GetTransitGatewayRouteTableAttachmentRequest {
2555
+
2556
+ AttachmentId: string | undefined;
2557
+ }
2558
+ export declare namespace GetTransitGatewayRouteTableAttachmentRequest {
2559
+
2560
+ const filterSensitiveLog: (obj: GetTransitGatewayRouteTableAttachmentRequest) => any;
2561
+ }
2562
+ export interface GetTransitGatewayRouteTableAttachmentResponse {
2563
+
2564
+ TransitGatewayRouteTableAttachment?: TransitGatewayRouteTableAttachment;
2565
+ }
2566
+ export declare namespace GetTransitGatewayRouteTableAttachmentResponse {
2567
+
2568
+ const filterSensitiveLog: (obj: GetTransitGatewayRouteTableAttachmentResponse) => any;
2569
+ }
2344
2570
  export interface GetVpcAttachmentRequest {
2345
2571
 
2346
2572
  AttachmentId: string | undefined;
@@ -2452,17 +2678,24 @@ export declare namespace ListCoreNetworksResponse {
2452
2678
  const filterSensitiveLog: (obj: ListCoreNetworksResponse) => any;
2453
2679
  }
2454
2680
  export interface ListOrganizationServiceAccessStatusRequest {
2681
+
2455
2682
  MaxResults?: number;
2683
+
2456
2684
  NextToken?: string;
2457
2685
  }
2458
2686
  export declare namespace ListOrganizationServiceAccessStatusRequest {
2459
2687
 
2460
2688
  const filterSensitiveLog: (obj: ListOrganizationServiceAccessStatusRequest) => any;
2461
2689
  }
2690
+
2462
2691
  export interface OrganizationStatus {
2692
+
2463
2693
  OrganizationId?: string;
2694
+
2464
2695
  OrganizationAwsServiceAccessStatus?: string;
2696
+
2465
2697
  SLRDeploymentStatus?: string;
2698
+
2466
2699
  AccountStatusList?: AccountStatus[];
2467
2700
  }
2468
2701
  export declare namespace OrganizationStatus {
@@ -2470,13 +2703,43 @@ export declare namespace OrganizationStatus {
2470
2703
  const filterSensitiveLog: (obj: OrganizationStatus) => any;
2471
2704
  }
2472
2705
  export interface ListOrganizationServiceAccessStatusResponse {
2706
+
2473
2707
  OrganizationStatus?: OrganizationStatus;
2708
+
2474
2709
  NextToken?: string;
2475
2710
  }
2476
2711
  export declare namespace ListOrganizationServiceAccessStatusResponse {
2477
2712
 
2478
2713
  const filterSensitiveLog: (obj: ListOrganizationServiceAccessStatusResponse) => any;
2479
2714
  }
2715
+ export interface ListPeeringsRequest {
2716
+
2717
+ CoreNetworkId?: string;
2718
+
2719
+ PeeringType?: PeeringType | string;
2720
+
2721
+ EdgeLocation?: string;
2722
+
2723
+ State?: PeeringState | string;
2724
+
2725
+ MaxResults?: number;
2726
+
2727
+ NextToken?: string;
2728
+ }
2729
+ export declare namespace ListPeeringsRequest {
2730
+
2731
+ const filterSensitiveLog: (obj: ListPeeringsRequest) => any;
2732
+ }
2733
+ export interface ListPeeringsResponse {
2734
+
2735
+ Peerings?: Peering[];
2736
+
2737
+ NextToken?: string;
2738
+ }
2739
+ export declare namespace ListPeeringsResponse {
2740
+
2741
+ const filterSensitiveLog: (obj: ListPeeringsResponse) => any;
2742
+ }
2480
2743
  export interface ListTagsForResourceRequest {
2481
2744
 
2482
2745
  ResourceArn: string | undefined;
@@ -2586,6 +2849,7 @@ export declare namespace RestoreCoreNetworkPolicyVersionResponse {
2586
2849
  const filterSensitiveLog: (obj: RestoreCoreNetworkPolicyVersionResponse) => any;
2587
2850
  }
2588
2851
  export interface StartOrganizationServiceAccessUpdateRequest {
2852
+
2589
2853
  Action: string | undefined;
2590
2854
  }
2591
2855
  export declare namespace StartOrganizationServiceAccessUpdateRequest {
@@ -2593,6 +2857,7 @@ export declare namespace StartOrganizationServiceAccessUpdateRequest {
2593
2857
  const filterSensitiveLog: (obj: StartOrganizationServiceAccessUpdateRequest) => any;
2594
2858
  }
2595
2859
  export interface StartOrganizationServiceAccessUpdateResponse {
2860
+
2596
2861
  OrganizationStatus?: OrganizationStatus;
2597
2862
  }
2598
2863
  export declare namespace StartOrganizationServiceAccessUpdateResponse {
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { GetCoreNetworkChangeEventsCommandInput, GetCoreNetworkChangeEventsCommandOutput } from "../commands/GetCoreNetworkChangeEventsCommand";
3
+ import { NetworkManagerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateGetCoreNetworkChangeEvents(config: NetworkManagerPaginationConfiguration, input: GetCoreNetworkChangeEventsCommandInput, ...additionalArguments: any): Paginator<GetCoreNetworkChangeEventsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListPeeringsCommandInput, ListPeeringsCommandOutput } from "../commands/ListPeeringsCommand";
3
+ import { NetworkManagerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListPeerings(config: NetworkManagerPaginationConfiguration, input: ListPeeringsCommandInput, ...additionalArguments: any): Paginator<ListPeeringsCommandOutput>;
@@ -1,14 +1,15 @@
1
1
  export * from "./DescribeGlobalNetworksPaginator";
2
2
  export * from "./GetConnectPeerAssociationsPaginator";
3
3
  export * from "./GetConnectionsPaginator";
4
+ export * from "./GetCoreNetworkChangeEventsPaginator";
4
5
  export * from "./GetCoreNetworkChangeSetPaginator";
5
6
  export * from "./GetCustomerGatewayAssociationsPaginator";
6
7
  export * from "./GetDevicesPaginator";
7
8
  export * from "./GetLinkAssociationsPaginator";
8
9
  export * from "./GetLinksPaginator";
9
10
  export * from "./GetNetworkResourceCountsPaginator";
10
- export * from "./GetNetworkResourceRelationshipsPaginator";
11
11
  export * from "./Interfaces";
12
+ export * from "./GetNetworkResourceRelationshipsPaginator";
12
13
  export * from "./GetNetworkResourcesPaginator";
13
14
  export * from "./GetNetworkTelemetryPaginator";
14
15
  export * from "./GetSitesPaginator";
@@ -18,3 +19,4 @@ export * from "./ListAttachmentsPaginator";
18
19
  export * from "./ListConnectPeersPaginator";
19
20
  export * from "./ListCoreNetworkPolicyVersionsPaginator";
20
21
  export * from "./ListCoreNetworksPaginator";
22
+ export * from "./ListPeeringsPaginator";
@@ -14,6 +14,8 @@ import { CreateGlobalNetworkCommandInput, CreateGlobalNetworkCommandOutput } fro
14
14
  import { CreateLinkCommandInput, CreateLinkCommandOutput } from "../commands/CreateLinkCommand";
15
15
  import { CreateSiteCommandInput, CreateSiteCommandOutput } from "../commands/CreateSiteCommand";
16
16
  import { CreateSiteToSiteVpnAttachmentCommandInput, CreateSiteToSiteVpnAttachmentCommandOutput } from "../commands/CreateSiteToSiteVpnAttachmentCommand";
17
+ import { CreateTransitGatewayPeeringCommandInput, CreateTransitGatewayPeeringCommandOutput } from "../commands/CreateTransitGatewayPeeringCommand";
18
+ import { CreateTransitGatewayRouteTableAttachmentCommandInput, CreateTransitGatewayRouteTableAttachmentCommandOutput } from "../commands/CreateTransitGatewayRouteTableAttachmentCommand";
17
19
  import { CreateVpcAttachmentCommandInput, CreateVpcAttachmentCommandOutput } from "../commands/CreateVpcAttachmentCommand";
18
20
  import { DeleteAttachmentCommandInput, DeleteAttachmentCommandOutput } from "../commands/DeleteAttachmentCommand";
19
21
  import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "../commands/DeleteConnectionCommand";
@@ -23,6 +25,7 @@ import { DeleteCoreNetworkPolicyVersionCommandInput, DeleteCoreNetworkPolicyVers
23
25
  import { DeleteDeviceCommandInput, DeleteDeviceCommandOutput } from "../commands/DeleteDeviceCommand";
24
26
  import { DeleteGlobalNetworkCommandInput, DeleteGlobalNetworkCommandOutput } from "../commands/DeleteGlobalNetworkCommand";
25
27
  import { DeleteLinkCommandInput, DeleteLinkCommandOutput } from "../commands/DeleteLinkCommand";
28
+ import { DeletePeeringCommandInput, DeletePeeringCommandOutput } from "../commands/DeletePeeringCommand";
26
29
  import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "../commands/DeleteResourcePolicyCommand";
27
30
  import { DeleteSiteCommandInput, DeleteSiteCommandOutput } from "../commands/DeleteSiteCommand";
28
31
  import { DeregisterTransitGatewayCommandInput, DeregisterTransitGatewayCommandOutput } from "../commands/DeregisterTransitGatewayCommand";
@@ -36,6 +39,7 @@ import { GetConnectAttachmentCommandInput, GetConnectAttachmentCommandOutput } f
36
39
  import { GetConnectionsCommandInput, GetConnectionsCommandOutput } from "../commands/GetConnectionsCommand";
37
40
  import { GetConnectPeerAssociationsCommandInput, GetConnectPeerAssociationsCommandOutput } from "../commands/GetConnectPeerAssociationsCommand";
38
41
  import { GetConnectPeerCommandInput, GetConnectPeerCommandOutput } from "../commands/GetConnectPeerCommand";
42
+ import { GetCoreNetworkChangeEventsCommandInput, GetCoreNetworkChangeEventsCommandOutput } from "../commands/GetCoreNetworkChangeEventsCommand";
39
43
  import { GetCoreNetworkChangeSetCommandInput, GetCoreNetworkChangeSetCommandOutput } from "../commands/GetCoreNetworkChangeSetCommand";
40
44
  import { GetCoreNetworkCommandInput, GetCoreNetworkCommandOutput } from "../commands/GetCoreNetworkCommand";
41
45
  import { GetCoreNetworkPolicyCommandInput, GetCoreNetworkPolicyCommandOutput } from "../commands/GetCoreNetworkPolicyCommand";
@@ -53,13 +57,16 @@ import { GetRouteAnalysisCommandInput, GetRouteAnalysisCommandOutput } from "../
53
57
  import { GetSitesCommandInput, GetSitesCommandOutput } from "../commands/GetSitesCommand";
54
58
  import { GetSiteToSiteVpnAttachmentCommandInput, GetSiteToSiteVpnAttachmentCommandOutput } from "../commands/GetSiteToSiteVpnAttachmentCommand";
55
59
  import { GetTransitGatewayConnectPeerAssociationsCommandInput, GetTransitGatewayConnectPeerAssociationsCommandOutput } from "../commands/GetTransitGatewayConnectPeerAssociationsCommand";
60
+ import { GetTransitGatewayPeeringCommandInput, GetTransitGatewayPeeringCommandOutput } from "../commands/GetTransitGatewayPeeringCommand";
56
61
  import { GetTransitGatewayRegistrationsCommandInput, GetTransitGatewayRegistrationsCommandOutput } from "../commands/GetTransitGatewayRegistrationsCommand";
62
+ import { GetTransitGatewayRouteTableAttachmentCommandInput, GetTransitGatewayRouteTableAttachmentCommandOutput } from "../commands/GetTransitGatewayRouteTableAttachmentCommand";
57
63
  import { GetVpcAttachmentCommandInput, GetVpcAttachmentCommandOutput } from "../commands/GetVpcAttachmentCommand";
58
64
  import { ListAttachmentsCommandInput, ListAttachmentsCommandOutput } from "../commands/ListAttachmentsCommand";
59
65
  import { ListConnectPeersCommandInput, ListConnectPeersCommandOutput } from "../commands/ListConnectPeersCommand";
60
66
  import { ListCoreNetworkPolicyVersionsCommandInput, ListCoreNetworkPolicyVersionsCommandOutput } from "../commands/ListCoreNetworkPolicyVersionsCommand";
61
67
  import { ListCoreNetworksCommandInput, ListCoreNetworksCommandOutput } from "../commands/ListCoreNetworksCommand";
62
68
  import { ListOrganizationServiceAccessStatusCommandInput, ListOrganizationServiceAccessStatusCommandOutput } from "../commands/ListOrganizationServiceAccessStatusCommand";
69
+ import { ListPeeringsCommandInput, ListPeeringsCommandOutput } from "../commands/ListPeeringsCommand";
63
70
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
64
71
  import { PutCoreNetworkPolicyCommandInput, PutCoreNetworkPolicyCommandOutput } from "../commands/PutCoreNetworkPolicyCommand";
65
72
  import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
@@ -92,6 +99,8 @@ export declare const serializeAws_restJson1CreateGlobalNetworkCommand: (input: C
92
99
  export declare const serializeAws_restJson1CreateLinkCommand: (input: CreateLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
100
  export declare const serializeAws_restJson1CreateSiteCommand: (input: CreateSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
101
  export declare const serializeAws_restJson1CreateSiteToSiteVpnAttachmentCommand: (input: CreateSiteToSiteVpnAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1CreateTransitGatewayPeeringCommand: (input: CreateTransitGatewayPeeringCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
+ export declare const serializeAws_restJson1CreateTransitGatewayRouteTableAttachmentCommand: (input: CreateTransitGatewayRouteTableAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
104
  export declare const serializeAws_restJson1CreateVpcAttachmentCommand: (input: CreateVpcAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
105
  export declare const serializeAws_restJson1DeleteAttachmentCommand: (input: DeleteAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
106
  export declare const serializeAws_restJson1DeleteConnectionCommand: (input: DeleteConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -101,6 +110,7 @@ export declare const serializeAws_restJson1DeleteCoreNetworkPolicyVersionCommand
101
110
  export declare const serializeAws_restJson1DeleteDeviceCommand: (input: DeleteDeviceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
111
  export declare const serializeAws_restJson1DeleteGlobalNetworkCommand: (input: DeleteGlobalNetworkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
112
  export declare const serializeAws_restJson1DeleteLinkCommand: (input: DeleteLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ export declare const serializeAws_restJson1DeletePeeringCommand: (input: DeletePeeringCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
114
  export declare const serializeAws_restJson1DeleteResourcePolicyCommand: (input: DeleteResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
115
  export declare const serializeAws_restJson1DeleteSiteCommand: (input: DeleteSiteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
116
  export declare const serializeAws_restJson1DeregisterTransitGatewayCommand: (input: DeregisterTransitGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -115,6 +125,7 @@ export declare const serializeAws_restJson1GetConnectionsCommand: (input: GetCon
115
125
  export declare const serializeAws_restJson1GetConnectPeerCommand: (input: GetConnectPeerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
116
126
  export declare const serializeAws_restJson1GetConnectPeerAssociationsCommand: (input: GetConnectPeerAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
117
127
  export declare const serializeAws_restJson1GetCoreNetworkCommand: (input: GetCoreNetworkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
128
+ export declare const serializeAws_restJson1GetCoreNetworkChangeEventsCommand: (input: GetCoreNetworkChangeEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
129
  export declare const serializeAws_restJson1GetCoreNetworkChangeSetCommand: (input: GetCoreNetworkChangeSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
119
130
  export declare const serializeAws_restJson1GetCoreNetworkPolicyCommand: (input: GetCoreNetworkPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
120
131
  export declare const serializeAws_restJson1GetCustomerGatewayAssociationsCommand: (input: GetCustomerGatewayAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -131,13 +142,16 @@ export declare const serializeAws_restJson1GetRouteAnalysisCommand: (input: GetR
131
142
  export declare const serializeAws_restJson1GetSitesCommand: (input: GetSitesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
132
143
  export declare const serializeAws_restJson1GetSiteToSiteVpnAttachmentCommand: (input: GetSiteToSiteVpnAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
133
144
  export declare const serializeAws_restJson1GetTransitGatewayConnectPeerAssociationsCommand: (input: GetTransitGatewayConnectPeerAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
+ export declare const serializeAws_restJson1GetTransitGatewayPeeringCommand: (input: GetTransitGatewayPeeringCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
146
  export declare const serializeAws_restJson1GetTransitGatewayRegistrationsCommand: (input: GetTransitGatewayRegistrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
147
+ export declare const serializeAws_restJson1GetTransitGatewayRouteTableAttachmentCommand: (input: GetTransitGatewayRouteTableAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
135
148
  export declare const serializeAws_restJson1GetVpcAttachmentCommand: (input: GetVpcAttachmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
136
149
  export declare const serializeAws_restJson1ListAttachmentsCommand: (input: ListAttachmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
137
150
  export declare const serializeAws_restJson1ListConnectPeersCommand: (input: ListConnectPeersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
138
151
  export declare const serializeAws_restJson1ListCoreNetworkPolicyVersionsCommand: (input: ListCoreNetworkPolicyVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
139
152
  export declare const serializeAws_restJson1ListCoreNetworksCommand: (input: ListCoreNetworksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
140
153
  export declare const serializeAws_restJson1ListOrganizationServiceAccessStatusCommand: (input: ListOrganizationServiceAccessStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1ListPeeringsCommand: (input: ListPeeringsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
141
155
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
142
156
  export declare const serializeAws_restJson1PutCoreNetworkPolicyCommand: (input: PutCoreNetworkPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
143
157
  export declare const serializeAws_restJson1PutResourcePolicyCommand: (input: PutResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -170,6 +184,8 @@ export declare const deserializeAws_restJson1CreateGlobalNetworkCommand: (output
170
184
  export declare const deserializeAws_restJson1CreateLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLinkCommandOutput>;
171
185
  export declare const deserializeAws_restJson1CreateSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSiteCommandOutput>;
172
186
  export declare const deserializeAws_restJson1CreateSiteToSiteVpnAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSiteToSiteVpnAttachmentCommandOutput>;
187
+ export declare const deserializeAws_restJson1CreateTransitGatewayPeeringCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTransitGatewayPeeringCommandOutput>;
188
+ export declare const deserializeAws_restJson1CreateTransitGatewayRouteTableAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTransitGatewayRouteTableAttachmentCommandOutput>;
173
189
  export declare const deserializeAws_restJson1CreateVpcAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVpcAttachmentCommandOutput>;
174
190
  export declare const deserializeAws_restJson1DeleteAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAttachmentCommandOutput>;
175
191
  export declare const deserializeAws_restJson1DeleteConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionCommandOutput>;
@@ -179,6 +195,7 @@ export declare const deserializeAws_restJson1DeleteCoreNetworkPolicyVersionComma
179
195
  export declare const deserializeAws_restJson1DeleteDeviceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeviceCommandOutput>;
180
196
  export declare const deserializeAws_restJson1DeleteGlobalNetworkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGlobalNetworkCommandOutput>;
181
197
  export declare const deserializeAws_restJson1DeleteLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLinkCommandOutput>;
198
+ export declare const deserializeAws_restJson1DeletePeeringCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePeeringCommandOutput>;
182
199
  export declare const deserializeAws_restJson1DeleteResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourcePolicyCommandOutput>;
183
200
  export declare const deserializeAws_restJson1DeleteSiteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSiteCommandOutput>;
184
201
  export declare const deserializeAws_restJson1DeregisterTransitGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterTransitGatewayCommandOutput>;
@@ -193,6 +210,7 @@ export declare const deserializeAws_restJson1GetConnectionsCommand: (output: __H
193
210
  export declare const deserializeAws_restJson1GetConnectPeerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectPeerCommandOutput>;
194
211
  export declare const deserializeAws_restJson1GetConnectPeerAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectPeerAssociationsCommandOutput>;
195
212
  export declare const deserializeAws_restJson1GetCoreNetworkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCoreNetworkCommandOutput>;
213
+ export declare const deserializeAws_restJson1GetCoreNetworkChangeEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCoreNetworkChangeEventsCommandOutput>;
196
214
  export declare const deserializeAws_restJson1GetCoreNetworkChangeSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCoreNetworkChangeSetCommandOutput>;
197
215
  export declare const deserializeAws_restJson1GetCoreNetworkPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCoreNetworkPolicyCommandOutput>;
198
216
  export declare const deserializeAws_restJson1GetCustomerGatewayAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCustomerGatewayAssociationsCommandOutput>;
@@ -209,13 +227,16 @@ export declare const deserializeAws_restJson1GetRouteAnalysisCommand: (output: _
209
227
  export declare const deserializeAws_restJson1GetSitesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSitesCommandOutput>;
210
228
  export declare const deserializeAws_restJson1GetSiteToSiteVpnAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSiteToSiteVpnAttachmentCommandOutput>;
211
229
  export declare const deserializeAws_restJson1GetTransitGatewayConnectPeerAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTransitGatewayConnectPeerAssociationsCommandOutput>;
230
+ export declare const deserializeAws_restJson1GetTransitGatewayPeeringCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTransitGatewayPeeringCommandOutput>;
212
231
  export declare const deserializeAws_restJson1GetTransitGatewayRegistrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTransitGatewayRegistrationsCommandOutput>;
232
+ export declare const deserializeAws_restJson1GetTransitGatewayRouteTableAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTransitGatewayRouteTableAttachmentCommandOutput>;
213
233
  export declare const deserializeAws_restJson1GetVpcAttachmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVpcAttachmentCommandOutput>;
214
234
  export declare const deserializeAws_restJson1ListAttachmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttachmentsCommandOutput>;
215
235
  export declare const deserializeAws_restJson1ListConnectPeersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectPeersCommandOutput>;
216
236
  export declare const deserializeAws_restJson1ListCoreNetworkPolicyVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCoreNetworkPolicyVersionsCommandOutput>;
217
237
  export declare const deserializeAws_restJson1ListCoreNetworksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCoreNetworksCommandOutput>;
218
238
  export declare const deserializeAws_restJson1ListOrganizationServiceAccessStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationServiceAccessStatusCommandOutput>;
239
+ export declare const deserializeAws_restJson1ListPeeringsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPeeringsCommandOutput>;
219
240
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
220
241
  export declare const deserializeAws_restJson1PutCoreNetworkPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutCoreNetworkPolicyCommandOutput>;
221
242
  export declare const deserializeAws_restJson1PutResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutResourcePolicyCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-networkmanager",
3
3
  "description": "AWS SDK for JavaScript Networkmanager Client for Node.js, Browser and React Native",
4
- "version": "3.118.1",
4
+ "version": "3.128.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,35 +18,35 @@
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.118.1",
22
- "@aws-sdk/config-resolver": "3.110.0",
23
- "@aws-sdk/credential-provider-node": "3.118.1",
24
- "@aws-sdk/fetch-http-handler": "3.110.0",
25
- "@aws-sdk/hash-node": "3.110.0",
26
- "@aws-sdk/invalid-dependency": "3.110.0",
27
- "@aws-sdk/middleware-content-length": "3.110.0",
28
- "@aws-sdk/middleware-host-header": "3.110.0",
29
- "@aws-sdk/middleware-logger": "3.110.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
- "@aws-sdk/middleware-retry": "3.118.1",
32
- "@aws-sdk/middleware-serde": "3.110.0",
33
- "@aws-sdk/middleware-signing": "3.110.0",
34
- "@aws-sdk/middleware-stack": "3.110.0",
35
- "@aws-sdk/middleware-user-agent": "3.110.0",
36
- "@aws-sdk/node-config-provider": "3.110.0",
37
- "@aws-sdk/node-http-handler": "3.118.1",
38
- "@aws-sdk/protocol-http": "3.110.0",
39
- "@aws-sdk/smithy-client": "3.110.0",
40
- "@aws-sdk/types": "3.110.0",
41
- "@aws-sdk/url-parser": "3.110.0",
21
+ "@aws-sdk/client-sts": "3.128.0",
22
+ "@aws-sdk/config-resolver": "3.128.0",
23
+ "@aws-sdk/credential-provider-node": "3.128.0",
24
+ "@aws-sdk/fetch-http-handler": "3.127.0",
25
+ "@aws-sdk/hash-node": "3.127.0",
26
+ "@aws-sdk/invalid-dependency": "3.127.0",
27
+ "@aws-sdk/middleware-content-length": "3.127.0",
28
+ "@aws-sdk/middleware-host-header": "3.127.0",
29
+ "@aws-sdk/middleware-logger": "3.127.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.127.0",
31
+ "@aws-sdk/middleware-retry": "3.127.0",
32
+ "@aws-sdk/middleware-serde": "3.127.0",
33
+ "@aws-sdk/middleware-signing": "3.128.0",
34
+ "@aws-sdk/middleware-stack": "3.127.0",
35
+ "@aws-sdk/middleware-user-agent": "3.127.0",
36
+ "@aws-sdk/node-config-provider": "3.127.0",
37
+ "@aws-sdk/node-http-handler": "3.127.0",
38
+ "@aws-sdk/protocol-http": "3.127.0",
39
+ "@aws-sdk/smithy-client": "3.127.0",
40
+ "@aws-sdk/types": "3.127.0",
41
+ "@aws-sdk/url-parser": "3.127.0",
42
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.110.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
- "@aws-sdk/util-user-agent-browser": "3.110.0",
49
- "@aws-sdk/util-user-agent-node": "3.118.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.127.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.128.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.127.0",
49
+ "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",
51
51
  "@aws-sdk/util-utf8-node": "3.109.0",
52
52
  "tslib": "^2.3.1",