@aws-sdk/client-networkmanager 3.936.0 → 3.937.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/README.md +56 -0
- package/dist-cjs/index.js +527 -31
- package/dist-es/NetworkManager.js +14 -0
- package/dist-es/commands/CreateCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/DeleteCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/ListAttachmentRoutingPolicyAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkPrefixListAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkRoutingInformationCommand.js +16 -0
- package/dist-es/commands/PutAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/RemoveAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkPrefixListAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkRoutingInformationPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +409 -31
- package/dist-types/NetworkManager.d.ts +49 -0
- package/dist-types/NetworkManagerClient.d.ts +9 -2
- package/dist-types/commands/AcceptAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +101 -0
- package/dist-types/commands/CreateDirectConnectGatewayAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateSiteToSiteVpnAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateVpcAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +98 -0
- package/dist-types/commands/GetConnectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetCoreNetworkChangeEventsCommand.d.ts +13 -1
- package/dist-types/commands/GetCoreNetworkChangeSetCommand.d.ts +30 -4
- package/dist-types/commands/GetDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteToSiteVpnAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +104 -0
- package/dist-types/commands/ListAttachmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +99 -0
- package/dist-types/commands/ListCoreNetworkRoutingInformationCommand.d.ts +131 -0
- package/dist-types/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +101 -0
- package/dist-types/commands/RejectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +99 -0
- package/dist-types/commands/UpdateDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +506 -1
- package/dist-types/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +30 -0
- package/dist-types/ts3.4/NetworkManager.d.ts +155 -0
- package/dist-types/ts3.4/NetworkManagerClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkRoutingInformationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +126 -0
- package/dist-types/ts3.4/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
|
|
2
|
-
import { AttachmentErrorCode, AttachmentState, AttachmentType, ChangeAction, ChangeSetState, ChangeStatus, ChangeType, ConnectionState, ConnectionStatus, ConnectionType, ConnectPeerAssociationState, ConnectPeerErrorCode, ConnectPeerState, CoreNetworkPolicyAlias, CoreNetworkState, CustomerGatewayAssociationState, DeviceState, GlobalNetworkState, LinkAssociationState, LinkState, PeeringErrorCode, PeeringState, PeeringType, RouteAnalysisCompletionReasonCode, RouteAnalysisCompletionResultCode, RouteAnalysisStatus, RouteState, RouteTableType, RouteType, SegmentActionServiceInsertion, SendViaMode, SiteState, TransitGatewayConnectPeerAssociationState, TransitGatewayRegistrationState, TunnelProtocol } from "./enums";
|
|
2
|
+
import { AttachmentErrorCode, AttachmentState, AttachmentType, ChangeAction, ChangeSetState, ChangeStatus, ChangeType, ConnectionState, ConnectionStatus, ConnectionType, ConnectPeerAssociationState, ConnectPeerErrorCode, ConnectPeerState, CoreNetworkPolicyAlias, CoreNetworkState, CustomerGatewayAssociationState, DeviceState, GlobalNetworkState, LinkAssociationState, LinkState, PeeringErrorCode, PeeringState, PeeringType, RouteAnalysisCompletionReasonCode, RouteAnalysisCompletionResultCode, RouteAnalysisStatus, RouteState, RouteTableType, RouteType, RoutingPolicyDirection, SegmentActionServiceInsertion, SendViaMode, SiteState, TransitGatewayConnectPeerAssociationState, TransitGatewayRegistrationState, TunnelProtocol } from "./enums";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
@@ -488,6 +488,32 @@ export interface AssociateTransitGatewayConnectPeerResponse {
|
|
|
488
488
|
*/
|
|
489
489
|
TransitGatewayConnectPeerAssociation?: TransitGatewayConnectPeerAssociation | undefined;
|
|
490
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
* <p>Summary information about routing policy associations for an attachment.</p>
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
export interface AttachmentRoutingPolicyAssociationSummary {
|
|
496
|
+
/**
|
|
497
|
+
* <p>The ID of the attachment associated with the routing policy.</p>
|
|
498
|
+
* @public
|
|
499
|
+
*/
|
|
500
|
+
AttachmentId?: string | undefined;
|
|
501
|
+
/**
|
|
502
|
+
* <p>The list of routing policies that are pending association with the attachment.</p>
|
|
503
|
+
* @public
|
|
504
|
+
*/
|
|
505
|
+
PendingRoutingPolicies?: string[] | undefined;
|
|
506
|
+
/**
|
|
507
|
+
* <p>The list of routing policies currently associated with the attachment.</p>
|
|
508
|
+
* @public
|
|
509
|
+
*/
|
|
510
|
+
AssociatedRoutingPolicies?: string[] | undefined;
|
|
511
|
+
/**
|
|
512
|
+
* <p>The routing policy label associated with the attachment.</p>
|
|
513
|
+
* @public
|
|
514
|
+
*/
|
|
515
|
+
RoutingPolicyLabel?: string | undefined;
|
|
516
|
+
}
|
|
491
517
|
/**
|
|
492
518
|
* <p>Specifies a location in Amazon Web Services.</p>
|
|
493
519
|
* @public
|
|
@@ -966,6 +992,22 @@ export interface CoreNetwork {
|
|
|
966
992
|
*/
|
|
967
993
|
Tags?: Tag[] | undefined;
|
|
968
994
|
}
|
|
995
|
+
/**
|
|
996
|
+
* <p>Information about a routing policy association.</p>
|
|
997
|
+
* @public
|
|
998
|
+
*/
|
|
999
|
+
export interface RoutingPolicyAssociationDetail {
|
|
1000
|
+
/**
|
|
1001
|
+
* <p>The names of the routing policies in the association.</p>
|
|
1002
|
+
* @public
|
|
1003
|
+
*/
|
|
1004
|
+
RoutingPolicyNames?: string[] | undefined;
|
|
1005
|
+
/**
|
|
1006
|
+
* <p>The names of the segments that are shared with each other in the association.</p>
|
|
1007
|
+
* @public
|
|
1008
|
+
*/
|
|
1009
|
+
SharedSegments?: string[] | undefined;
|
|
1010
|
+
}
|
|
969
1011
|
/**
|
|
970
1012
|
* <p>Describes a network function group for service insertion.</p>
|
|
971
1013
|
* @public
|
|
@@ -1119,6 +1161,31 @@ export interface CoreNetworkChangeValues {
|
|
|
1119
1161
|
* @public
|
|
1120
1162
|
*/
|
|
1121
1163
|
SecurityGroupReferencingSupport?: boolean | undefined;
|
|
1164
|
+
/**
|
|
1165
|
+
* <p>The routing policy direction (inbound/outbound) in a core network change event.</p>
|
|
1166
|
+
* @public
|
|
1167
|
+
*/
|
|
1168
|
+
RoutingPolicyDirection?: RoutingPolicyDirection | undefined;
|
|
1169
|
+
/**
|
|
1170
|
+
* <p>The routing policy configuration in the core network change values.</p>
|
|
1171
|
+
* @public
|
|
1172
|
+
*/
|
|
1173
|
+
RoutingPolicy?: string | undefined;
|
|
1174
|
+
/**
|
|
1175
|
+
* <p>The edge locations of peers in the core network change values.</p>
|
|
1176
|
+
* @public
|
|
1177
|
+
*/
|
|
1178
|
+
PeerEdgeLocations?: string[] | undefined;
|
|
1179
|
+
/**
|
|
1180
|
+
* <p>The attachment identifier in the core network change values.</p>
|
|
1181
|
+
* @public
|
|
1182
|
+
*/
|
|
1183
|
+
AttachmentId?: string | undefined;
|
|
1184
|
+
/**
|
|
1185
|
+
* <p>The names of the routing policies and other association details in the core network change values.</p>
|
|
1186
|
+
* @public
|
|
1187
|
+
*/
|
|
1188
|
+
RoutingPolicyAssociationDetails?: RoutingPolicyAssociationDetail[] | undefined;
|
|
1122
1189
|
}
|
|
1123
1190
|
/**
|
|
1124
1191
|
* <p>Details describing a core network change.</p>
|
|
@@ -1166,6 +1233,16 @@ export interface CoreNetworkChangeEventValues {
|
|
|
1166
1233
|
* @public
|
|
1167
1234
|
*/
|
|
1168
1235
|
EdgeLocation?: string | undefined;
|
|
1236
|
+
/**
|
|
1237
|
+
* <p>The edge location of the peer in a core network change event.</p>
|
|
1238
|
+
* @public
|
|
1239
|
+
*/
|
|
1240
|
+
PeerEdgeLocation?: string | undefined;
|
|
1241
|
+
/**
|
|
1242
|
+
* <p>The routing policy direction (inbound/outbound) in a core network change event.</p>
|
|
1243
|
+
* @public
|
|
1244
|
+
*/
|
|
1245
|
+
RoutingPolicyDirection?: RoutingPolicyDirection | undefined;
|
|
1169
1246
|
/**
|
|
1170
1247
|
* <p>The segment name if the change event is associated with a segment.</p>
|
|
1171
1248
|
* @public
|
|
@@ -1186,6 +1263,11 @@ export interface CoreNetworkChangeEventValues {
|
|
|
1186
1263
|
* @public
|
|
1187
1264
|
*/
|
|
1188
1265
|
Cidr?: string | undefined;
|
|
1266
|
+
/**
|
|
1267
|
+
* <p>The names of the routing policies and other association details in the core network change values.</p>
|
|
1268
|
+
* @public
|
|
1269
|
+
*/
|
|
1270
|
+
RoutingPolicyAssociationDetails?: RoutingPolicyAssociationDetail[] | undefined;
|
|
1189
1271
|
}
|
|
1190
1272
|
/**
|
|
1191
1273
|
* <p>Describes a core network change event. This can be a change to a segment, attachment, route, etc.</p>
|
|
@@ -1347,6 +1429,78 @@ export interface CoreNetworkPolicyVersion {
|
|
|
1347
1429
|
*/
|
|
1348
1430
|
ChangeSetState?: ChangeSetState | undefined;
|
|
1349
1431
|
}
|
|
1432
|
+
/**
|
|
1433
|
+
* <p>Information about the next hop for a route in the core network.</p>
|
|
1434
|
+
* @public
|
|
1435
|
+
*/
|
|
1436
|
+
export interface RoutingInformationNextHop {
|
|
1437
|
+
/**
|
|
1438
|
+
* <p>The IP address of the next hop.</p>
|
|
1439
|
+
* @public
|
|
1440
|
+
*/
|
|
1441
|
+
IpAddress?: string | undefined;
|
|
1442
|
+
/**
|
|
1443
|
+
* <p>The ID of the core network attachment for the next hop.</p>
|
|
1444
|
+
* @public
|
|
1445
|
+
*/
|
|
1446
|
+
CoreNetworkAttachmentId?: string | undefined;
|
|
1447
|
+
/**
|
|
1448
|
+
* <p>The ID of the resource for the next hop.</p>
|
|
1449
|
+
* @public
|
|
1450
|
+
*/
|
|
1451
|
+
ResourceId?: string | undefined;
|
|
1452
|
+
/**
|
|
1453
|
+
* <p>The type of resource for the next hop.</p>
|
|
1454
|
+
* @public
|
|
1455
|
+
*/
|
|
1456
|
+
ResourceType?: string | undefined;
|
|
1457
|
+
/**
|
|
1458
|
+
* <p>The name of the segment for the next hop.</p>
|
|
1459
|
+
* @public
|
|
1460
|
+
*/
|
|
1461
|
+
SegmentName?: string | undefined;
|
|
1462
|
+
/**
|
|
1463
|
+
* <p>The edge location for the next hop.</p>
|
|
1464
|
+
* @public
|
|
1465
|
+
*/
|
|
1466
|
+
EdgeLocation?: string | undefined;
|
|
1467
|
+
}
|
|
1468
|
+
/**
|
|
1469
|
+
* <p>Routing information for a core network, including route details and BGP attributes.</p>
|
|
1470
|
+
* @public
|
|
1471
|
+
*/
|
|
1472
|
+
export interface CoreNetworkRoutingInformation {
|
|
1473
|
+
/**
|
|
1474
|
+
* <p>The IP prefix for the route.</p>
|
|
1475
|
+
* @public
|
|
1476
|
+
*/
|
|
1477
|
+
Prefix?: string | undefined;
|
|
1478
|
+
/**
|
|
1479
|
+
* <p>The next hop information for the route.</p>
|
|
1480
|
+
* @public
|
|
1481
|
+
*/
|
|
1482
|
+
NextHop?: RoutingInformationNextHop | undefined;
|
|
1483
|
+
/**
|
|
1484
|
+
* <p>The BGP local preference value for the route.</p>
|
|
1485
|
+
* @public
|
|
1486
|
+
*/
|
|
1487
|
+
LocalPreference?: string | undefined;
|
|
1488
|
+
/**
|
|
1489
|
+
* <p>The BGP Multi-Exit Discriminator (MED) value for the route.</p>
|
|
1490
|
+
* @public
|
|
1491
|
+
*/
|
|
1492
|
+
Med?: string | undefined;
|
|
1493
|
+
/**
|
|
1494
|
+
* <p>The BGP AS path for the route.</p>
|
|
1495
|
+
* @public
|
|
1496
|
+
*/
|
|
1497
|
+
AsPath?: string[] | undefined;
|
|
1498
|
+
/**
|
|
1499
|
+
* <p>The BGP community values for the route.</p>
|
|
1500
|
+
* @public
|
|
1501
|
+
*/
|
|
1502
|
+
Communities?: string[] | undefined;
|
|
1503
|
+
}
|
|
1350
1504
|
/**
|
|
1351
1505
|
* <p>Returns details about a core network edge.</p>
|
|
1352
1506
|
* @public
|
|
@@ -1428,6 +1582,11 @@ export interface CreateConnectAttachmentRequest {
|
|
|
1428
1582
|
* @public
|
|
1429
1583
|
*/
|
|
1430
1584
|
TransportAttachmentId: string | undefined;
|
|
1585
|
+
/**
|
|
1586
|
+
* <p>The routing policy label to apply to the Connect attachment for traffic routing decisions.</p>
|
|
1587
|
+
* @public
|
|
1588
|
+
*/
|
|
1589
|
+
RoutingPolicyLabel?: string | undefined;
|
|
1431
1590
|
/**
|
|
1432
1591
|
* <p>Options for creating an attachment.</p>
|
|
1433
1592
|
* @public
|
|
@@ -1600,6 +1759,51 @@ export interface CreateCoreNetworkResponse {
|
|
|
1600
1759
|
*/
|
|
1601
1760
|
CoreNetwork?: CoreNetwork | undefined;
|
|
1602
1761
|
}
|
|
1762
|
+
/**
|
|
1763
|
+
* @public
|
|
1764
|
+
*/
|
|
1765
|
+
export interface CreateCoreNetworkPrefixListAssociationRequest {
|
|
1766
|
+
/**
|
|
1767
|
+
* <p>The ID of the core network to associate with the prefix list.</p>
|
|
1768
|
+
* @public
|
|
1769
|
+
*/
|
|
1770
|
+
CoreNetworkId: string | undefined;
|
|
1771
|
+
/**
|
|
1772
|
+
* <p>The ARN of the prefix list to associate with the core network.</p>
|
|
1773
|
+
* @public
|
|
1774
|
+
*/
|
|
1775
|
+
PrefixListArn: string | undefined;
|
|
1776
|
+
/**
|
|
1777
|
+
* <p>An optional alias for the prefix list association.</p>
|
|
1778
|
+
* @public
|
|
1779
|
+
*/
|
|
1780
|
+
PrefixListAlias: string | undefined;
|
|
1781
|
+
/**
|
|
1782
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
1783
|
+
* @public
|
|
1784
|
+
*/
|
|
1785
|
+
ClientToken?: string | undefined;
|
|
1786
|
+
}
|
|
1787
|
+
/**
|
|
1788
|
+
* @public
|
|
1789
|
+
*/
|
|
1790
|
+
export interface CreateCoreNetworkPrefixListAssociationResponse {
|
|
1791
|
+
/**
|
|
1792
|
+
* <p>The ID of the core network associated with the prefix list.</p>
|
|
1793
|
+
* @public
|
|
1794
|
+
*/
|
|
1795
|
+
CoreNetworkId?: string | undefined;
|
|
1796
|
+
/**
|
|
1797
|
+
* <p>The ARN of the prefix list that was associated with the core network.</p>
|
|
1798
|
+
* @public
|
|
1799
|
+
*/
|
|
1800
|
+
PrefixListArn?: string | undefined;
|
|
1801
|
+
/**
|
|
1802
|
+
* <p>The alias of the prefix list association, if provided.</p>
|
|
1803
|
+
* @public
|
|
1804
|
+
*/
|
|
1805
|
+
PrefixListAlias?: string | undefined;
|
|
1806
|
+
}
|
|
1603
1807
|
/**
|
|
1604
1808
|
* <p>Describes a location.</p>
|
|
1605
1809
|
* @public
|
|
@@ -1780,6 +1984,11 @@ export interface CreateDirectConnectGatewayAttachmentRequest {
|
|
|
1780
1984
|
* @public
|
|
1781
1985
|
*/
|
|
1782
1986
|
DirectConnectGatewayArn: string | undefined;
|
|
1987
|
+
/**
|
|
1988
|
+
* <p>The routing policy label to apply to the Direct Connect Gateway attachment for traffic routing decisions.</p>
|
|
1989
|
+
* @public
|
|
1990
|
+
*/
|
|
1991
|
+
RoutingPolicyLabel?: string | undefined;
|
|
1783
1992
|
/**
|
|
1784
1993
|
* <p>One or more core network edge locations that the Direct Connect gateway attachment is associated with. </p>
|
|
1785
1994
|
* @public
|
|
@@ -2108,6 +2317,11 @@ export interface CreateSiteToSiteVpnAttachmentRequest {
|
|
|
2108
2317
|
* @public
|
|
2109
2318
|
*/
|
|
2110
2319
|
VpnConnectionArn: string | undefined;
|
|
2320
|
+
/**
|
|
2321
|
+
* <p>The routing policy label to apply to the Site-to-Site VPN attachment for traffic routing decisions.</p>
|
|
2322
|
+
* @public
|
|
2323
|
+
*/
|
|
2324
|
+
RoutingPolicyLabel?: string | undefined;
|
|
2111
2325
|
/**
|
|
2112
2326
|
* <p>The tags associated with the request.</p>
|
|
2113
2327
|
* @public
|
|
@@ -2319,6 +2533,11 @@ export interface CreateTransitGatewayRouteTableAttachmentRequest {
|
|
|
2319
2533
|
* @public
|
|
2320
2534
|
*/
|
|
2321
2535
|
TransitGatewayRouteTableArn: string | undefined;
|
|
2536
|
+
/**
|
|
2537
|
+
* <p>The routing policy label to apply to the Transit Gateway route table attachment for traffic routing decisions.</p>
|
|
2538
|
+
* @public
|
|
2539
|
+
*/
|
|
2540
|
+
RoutingPolicyLabel?: string | undefined;
|
|
2322
2541
|
/**
|
|
2323
2542
|
* <p>The list of key-value tags associated with the request.</p>
|
|
2324
2543
|
* @public
|
|
@@ -2411,6 +2630,11 @@ export interface CreateVpcAttachmentRequest {
|
|
|
2411
2630
|
* @public
|
|
2412
2631
|
*/
|
|
2413
2632
|
Options?: VpcOptions | undefined;
|
|
2633
|
+
/**
|
|
2634
|
+
* <p>The routing policy label to apply to the VPC attachment for traffic routing decisions.</p>
|
|
2635
|
+
* @public
|
|
2636
|
+
*/
|
|
2637
|
+
RoutingPolicyLabel?: string | undefined;
|
|
2414
2638
|
/**
|
|
2415
2639
|
* <p>The key-value tags associated with the request.</p>
|
|
2416
2640
|
* @public
|
|
@@ -2563,6 +2787,36 @@ export interface DeleteCoreNetworkPolicyVersionResponse {
|
|
|
2563
2787
|
*/
|
|
2564
2788
|
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
2565
2789
|
}
|
|
2790
|
+
/**
|
|
2791
|
+
* @public
|
|
2792
|
+
*/
|
|
2793
|
+
export interface DeleteCoreNetworkPrefixListAssociationRequest {
|
|
2794
|
+
/**
|
|
2795
|
+
* <p>The ID of the core network from which to delete the prefix list association.</p>
|
|
2796
|
+
* @public
|
|
2797
|
+
*/
|
|
2798
|
+
CoreNetworkId: string | undefined;
|
|
2799
|
+
/**
|
|
2800
|
+
* <p>The ARN of the prefix list to disassociate from the core network.</p>
|
|
2801
|
+
* @public
|
|
2802
|
+
*/
|
|
2803
|
+
PrefixListArn: string | undefined;
|
|
2804
|
+
}
|
|
2805
|
+
/**
|
|
2806
|
+
* @public
|
|
2807
|
+
*/
|
|
2808
|
+
export interface DeleteCoreNetworkPrefixListAssociationResponse {
|
|
2809
|
+
/**
|
|
2810
|
+
* <p>The ID of the core network from which the prefix list association was deleted.</p>
|
|
2811
|
+
* @public
|
|
2812
|
+
*/
|
|
2813
|
+
CoreNetworkId?: string | undefined;
|
|
2814
|
+
/**
|
|
2815
|
+
* <p>The ARN of the prefix list that was disassociated from the core network.</p>
|
|
2816
|
+
* @public
|
|
2817
|
+
*/
|
|
2818
|
+
PrefixListArn?: string | undefined;
|
|
2819
|
+
}
|
|
2566
2820
|
/**
|
|
2567
2821
|
* @public
|
|
2568
2822
|
*/
|
|
@@ -4787,6 +5041,46 @@ export interface GetVpcAttachmentResponse {
|
|
|
4787
5041
|
*/
|
|
4788
5042
|
VpcAttachment?: VpcAttachment | undefined;
|
|
4789
5043
|
}
|
|
5044
|
+
/**
|
|
5045
|
+
* @public
|
|
5046
|
+
*/
|
|
5047
|
+
export interface ListAttachmentRoutingPolicyAssociationsRequest {
|
|
5048
|
+
/**
|
|
5049
|
+
* <p>The ID of the core network to list attachment routing policy associations for.</p>
|
|
5050
|
+
* @public
|
|
5051
|
+
*/
|
|
5052
|
+
CoreNetworkId: string | undefined;
|
|
5053
|
+
/**
|
|
5054
|
+
* <p>The ID of a specific attachment to filter the routing policy associations.</p>
|
|
5055
|
+
* @public
|
|
5056
|
+
*/
|
|
5057
|
+
AttachmentId?: string | undefined;
|
|
5058
|
+
/**
|
|
5059
|
+
* <p>The maximum number of results to return in a single page.</p>
|
|
5060
|
+
* @public
|
|
5061
|
+
*/
|
|
5062
|
+
MaxResults?: number | undefined;
|
|
5063
|
+
/**
|
|
5064
|
+
* <p>The token for the next page of results.</p>
|
|
5065
|
+
* @public
|
|
5066
|
+
*/
|
|
5067
|
+
NextToken?: string | undefined;
|
|
5068
|
+
}
|
|
5069
|
+
/**
|
|
5070
|
+
* @public
|
|
5071
|
+
*/
|
|
5072
|
+
export interface ListAttachmentRoutingPolicyAssociationsResponse {
|
|
5073
|
+
/**
|
|
5074
|
+
* <p>The list of attachment routing policy associations.</p>
|
|
5075
|
+
* @public
|
|
5076
|
+
*/
|
|
5077
|
+
AttachmentRoutingPolicyAssociations?: AttachmentRoutingPolicyAssociationSummary[] | undefined;
|
|
5078
|
+
/**
|
|
5079
|
+
* <p>The token for the next page of results.</p>
|
|
5080
|
+
* @public
|
|
5081
|
+
*/
|
|
5082
|
+
NextToken?: string | undefined;
|
|
5083
|
+
}
|
|
4790
5084
|
/**
|
|
4791
5085
|
* @public
|
|
4792
5086
|
*/
|
|
@@ -4912,6 +5206,137 @@ export interface ListCoreNetworkPolicyVersionsResponse {
|
|
|
4912
5206
|
*/
|
|
4913
5207
|
NextToken?: string | undefined;
|
|
4914
5208
|
}
|
|
5209
|
+
/**
|
|
5210
|
+
* @public
|
|
5211
|
+
*/
|
|
5212
|
+
export interface ListCoreNetworkPrefixListAssociationsRequest {
|
|
5213
|
+
/**
|
|
5214
|
+
* <p>The ID of the core network to list prefix list associations for.</p>
|
|
5215
|
+
* @public
|
|
5216
|
+
*/
|
|
5217
|
+
CoreNetworkId: string | undefined;
|
|
5218
|
+
/**
|
|
5219
|
+
* <p>The ARN of a specific prefix list to filter the associations.</p>
|
|
5220
|
+
* @public
|
|
5221
|
+
*/
|
|
5222
|
+
PrefixListArn?: string | undefined;
|
|
5223
|
+
/**
|
|
5224
|
+
* <p>The maximum number of results to return in a single page.</p>
|
|
5225
|
+
* @public
|
|
5226
|
+
*/
|
|
5227
|
+
MaxResults?: number | undefined;
|
|
5228
|
+
/**
|
|
5229
|
+
* <p>The token for the next page of results.</p>
|
|
5230
|
+
* @public
|
|
5231
|
+
*/
|
|
5232
|
+
NextToken?: string | undefined;
|
|
5233
|
+
}
|
|
5234
|
+
/**
|
|
5235
|
+
* <p>Information about a prefix list association with a core network.</p>
|
|
5236
|
+
* @public
|
|
5237
|
+
*/
|
|
5238
|
+
export interface PrefixListAssociation {
|
|
5239
|
+
/**
|
|
5240
|
+
* <p>The core network id in the association.</p>
|
|
5241
|
+
* @public
|
|
5242
|
+
*/
|
|
5243
|
+
CoreNetworkId?: string | undefined;
|
|
5244
|
+
/**
|
|
5245
|
+
* <p>The ARN of the prefix list in the association.</p>
|
|
5246
|
+
* @public
|
|
5247
|
+
*/
|
|
5248
|
+
PrefixListArn?: string | undefined;
|
|
5249
|
+
/**
|
|
5250
|
+
* <p>The alias of the prefix list in the association.</p>
|
|
5251
|
+
* @public
|
|
5252
|
+
*/
|
|
5253
|
+
PrefixListAlias?: string | undefined;
|
|
5254
|
+
}
|
|
5255
|
+
/**
|
|
5256
|
+
* @public
|
|
5257
|
+
*/
|
|
5258
|
+
export interface ListCoreNetworkPrefixListAssociationsResponse {
|
|
5259
|
+
/**
|
|
5260
|
+
* <p>The list of prefix list associations for the core network.</p>
|
|
5261
|
+
* @public
|
|
5262
|
+
*/
|
|
5263
|
+
PrefixListAssociations?: PrefixListAssociation[] | undefined;
|
|
5264
|
+
/**
|
|
5265
|
+
* <p>The token for the next page of results.</p>
|
|
5266
|
+
* @public
|
|
5267
|
+
*/
|
|
5268
|
+
NextToken?: string | undefined;
|
|
5269
|
+
}
|
|
5270
|
+
/**
|
|
5271
|
+
* @public
|
|
5272
|
+
*/
|
|
5273
|
+
export interface ListCoreNetworkRoutingInformationRequest {
|
|
5274
|
+
/**
|
|
5275
|
+
* <p>The ID of the core network to retrieve routing information for.</p>
|
|
5276
|
+
* @public
|
|
5277
|
+
*/
|
|
5278
|
+
CoreNetworkId: string | undefined;
|
|
5279
|
+
/**
|
|
5280
|
+
* <p>The name of the segment to filter routing information by.</p>
|
|
5281
|
+
* @public
|
|
5282
|
+
*/
|
|
5283
|
+
SegmentName: string | undefined;
|
|
5284
|
+
/**
|
|
5285
|
+
* <p>The edge location to filter routing information by.</p>
|
|
5286
|
+
* @public
|
|
5287
|
+
*/
|
|
5288
|
+
EdgeLocation: string | undefined;
|
|
5289
|
+
/**
|
|
5290
|
+
* <p>Filters to apply based on next hop information.</p>
|
|
5291
|
+
* @public
|
|
5292
|
+
*/
|
|
5293
|
+
NextHopFilters?: Record<string, string[]> | undefined;
|
|
5294
|
+
/**
|
|
5295
|
+
* <p>Local preference values to match when filtering routing information.</p>
|
|
5296
|
+
* @public
|
|
5297
|
+
*/
|
|
5298
|
+
LocalPreferenceMatches?: string[] | undefined;
|
|
5299
|
+
/**
|
|
5300
|
+
* <p>Exact AS path values to match when filtering routing information.</p>
|
|
5301
|
+
* @public
|
|
5302
|
+
*/
|
|
5303
|
+
ExactAsPathMatches?: string[] | undefined;
|
|
5304
|
+
/**
|
|
5305
|
+
* <p>Multi-Exit Discriminator (MED) values to match when filtering routing information.</p>
|
|
5306
|
+
* @public
|
|
5307
|
+
*/
|
|
5308
|
+
MedMatches?: string[] | undefined;
|
|
5309
|
+
/**
|
|
5310
|
+
* <p>BGP community values to match when filtering routing information.</p>
|
|
5311
|
+
* @public
|
|
5312
|
+
*/
|
|
5313
|
+
CommunityMatches?: string[] | undefined;
|
|
5314
|
+
/**
|
|
5315
|
+
* <p>The maximum number of routing information entries to return in a single page.</p>
|
|
5316
|
+
* @public
|
|
5317
|
+
*/
|
|
5318
|
+
MaxResults?: number | undefined;
|
|
5319
|
+
/**
|
|
5320
|
+
* <p>The token for the next page of results.</p>
|
|
5321
|
+
* @public
|
|
5322
|
+
*/
|
|
5323
|
+
NextToken?: string | undefined;
|
|
5324
|
+
}
|
|
5325
|
+
/**
|
|
5326
|
+
* @public
|
|
5327
|
+
*/
|
|
5328
|
+
export interface ListCoreNetworkRoutingInformationResponse {
|
|
5329
|
+
/**
|
|
5330
|
+
* <p>The list of routing information for the core network.</p>
|
|
5331
|
+
* @public
|
|
5332
|
+
*/
|
|
5333
|
+
CoreNetworkRoutingInformation?: CoreNetworkRoutingInformation[] | undefined;
|
|
5334
|
+
/**
|
|
5335
|
+
* <p>The token for the next page of results.</p>
|
|
5336
|
+
* @public
|
|
5337
|
+
*/
|
|
5338
|
+
NextToken?: string | undefined;
|
|
5339
|
+
}
|
|
4915
5340
|
/**
|
|
4916
5341
|
* @public
|
|
4917
5342
|
*/
|
|
@@ -5068,6 +5493,51 @@ export interface ListTagsForResourceResponse {
|
|
|
5068
5493
|
*/
|
|
5069
5494
|
TagList?: Tag[] | undefined;
|
|
5070
5495
|
}
|
|
5496
|
+
/**
|
|
5497
|
+
* @public
|
|
5498
|
+
*/
|
|
5499
|
+
export interface PutAttachmentRoutingPolicyLabelRequest {
|
|
5500
|
+
/**
|
|
5501
|
+
* <p>The ID of the core network containing the attachment.</p>
|
|
5502
|
+
* @public
|
|
5503
|
+
*/
|
|
5504
|
+
CoreNetworkId: string | undefined;
|
|
5505
|
+
/**
|
|
5506
|
+
* <p>The ID of the attachment to apply the routing policy label to.</p>
|
|
5507
|
+
* @public
|
|
5508
|
+
*/
|
|
5509
|
+
AttachmentId: string | undefined;
|
|
5510
|
+
/**
|
|
5511
|
+
* <p>The routing policy label to apply to the attachment.</p>
|
|
5512
|
+
* @public
|
|
5513
|
+
*/
|
|
5514
|
+
RoutingPolicyLabel: string | undefined;
|
|
5515
|
+
/**
|
|
5516
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
|
|
5517
|
+
* @public
|
|
5518
|
+
*/
|
|
5519
|
+
ClientToken?: string | undefined;
|
|
5520
|
+
}
|
|
5521
|
+
/**
|
|
5522
|
+
* @public
|
|
5523
|
+
*/
|
|
5524
|
+
export interface PutAttachmentRoutingPolicyLabelResponse {
|
|
5525
|
+
/**
|
|
5526
|
+
* <p>The ID of the core network containing the attachment.</p>
|
|
5527
|
+
* @public
|
|
5528
|
+
*/
|
|
5529
|
+
CoreNetworkId?: string | undefined;
|
|
5530
|
+
/**
|
|
5531
|
+
* <p>The ID of the attachment that received the routing policy label.</p>
|
|
5532
|
+
* @public
|
|
5533
|
+
*/
|
|
5534
|
+
AttachmentId?: string | undefined;
|
|
5535
|
+
/**
|
|
5536
|
+
* <p>The routing policy label that was applied to the attachment.</p>
|
|
5537
|
+
* @public
|
|
5538
|
+
*/
|
|
5539
|
+
RoutingPolicyLabel?: string | undefined;
|
|
5540
|
+
}
|
|
5071
5541
|
/**
|
|
5072
5542
|
* @public
|
|
5073
5543
|
*/
|
|
@@ -5173,6 +5643,41 @@ export interface RejectAttachmentResponse {
|
|
|
5173
5643
|
*/
|
|
5174
5644
|
Attachment?: Attachment | undefined;
|
|
5175
5645
|
}
|
|
5646
|
+
/**
|
|
5647
|
+
* @public
|
|
5648
|
+
*/
|
|
5649
|
+
export interface RemoveAttachmentRoutingPolicyLabelRequest {
|
|
5650
|
+
/**
|
|
5651
|
+
* <p>The ID of the core network containing the attachment.</p>
|
|
5652
|
+
* @public
|
|
5653
|
+
*/
|
|
5654
|
+
CoreNetworkId: string | undefined;
|
|
5655
|
+
/**
|
|
5656
|
+
* <p>The ID of the attachment to remove the routing policy label from.</p>
|
|
5657
|
+
* @public
|
|
5658
|
+
*/
|
|
5659
|
+
AttachmentId: string | undefined;
|
|
5660
|
+
}
|
|
5661
|
+
/**
|
|
5662
|
+
* @public
|
|
5663
|
+
*/
|
|
5664
|
+
export interface RemoveAttachmentRoutingPolicyLabelResponse {
|
|
5665
|
+
/**
|
|
5666
|
+
* <p>The ID of the core network containing the attachment.</p>
|
|
5667
|
+
* @public
|
|
5668
|
+
*/
|
|
5669
|
+
CoreNetworkId?: string | undefined;
|
|
5670
|
+
/**
|
|
5671
|
+
* <p>The ID of the attachment from which the routing policy label was removed.</p>
|
|
5672
|
+
* @public
|
|
5673
|
+
*/
|
|
5674
|
+
AttachmentId?: string | undefined;
|
|
5675
|
+
/**
|
|
5676
|
+
* <p>The routing policy label that was removed from the attachment.</p>
|
|
5677
|
+
* @public
|
|
5678
|
+
*/
|
|
5679
|
+
RoutingPolicyLabel?: string | undefined;
|
|
5680
|
+
}
|
|
5176
5681
|
/**
|
|
5177
5682
|
* @public
|
|
5178
5683
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAttachmentRoutingPolicyAssociationsCommandInput, ListAttachmentRoutingPolicyAssociationsCommandOutput } from "../commands/ListAttachmentRoutingPolicyAssociationsCommand";
|
|
3
|
+
import { NetworkManagerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAttachmentRoutingPolicyAssociations: (config: NetworkManagerPaginationConfiguration, input: ListAttachmentRoutingPolicyAssociationsCommandInput, ...rest: any[]) => Paginator<ListAttachmentRoutingPolicyAssociationsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCoreNetworkPrefixListAssociationsCommandInput, ListCoreNetworkPrefixListAssociationsCommandOutput } from "../commands/ListCoreNetworkPrefixListAssociationsCommand";
|
|
3
|
+
import { NetworkManagerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCoreNetworkPrefixListAssociations: (config: NetworkManagerPaginationConfiguration, input: ListCoreNetworkPrefixListAssociationsCommandInput, ...rest: any[]) => Paginator<ListCoreNetworkPrefixListAssociationsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCoreNetworkRoutingInformationCommandInput, ListCoreNetworkRoutingInformationCommandOutput } from "../commands/ListCoreNetworkRoutingInformationCommand";
|
|
3
|
+
import { NetworkManagerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCoreNetworkRoutingInformation: (config: NetworkManagerPaginationConfiguration, input: ListCoreNetworkRoutingInformationCommandInput, ...rest: any[]) => Paginator<ListCoreNetworkRoutingInformationCommandOutput>;
|
|
@@ -15,8 +15,11 @@ export * from "./GetNetworkTelemetryPaginator";
|
|
|
15
15
|
export * from "./GetSitesPaginator";
|
|
16
16
|
export * from "./GetTransitGatewayConnectPeerAssociationsPaginator";
|
|
17
17
|
export * from "./GetTransitGatewayRegistrationsPaginator";
|
|
18
|
+
export * from "./ListAttachmentRoutingPolicyAssociationsPaginator";
|
|
18
19
|
export * from "./ListAttachmentsPaginator";
|
|
19
20
|
export * from "./ListConnectPeersPaginator";
|
|
20
21
|
export * from "./ListCoreNetworkPolicyVersionsPaginator";
|
|
22
|
+
export * from "./ListCoreNetworkPrefixListAssociationsPaginator";
|
|
23
|
+
export * from "./ListCoreNetworkRoutingInformationPaginator";
|
|
21
24
|
export * from "./ListCoreNetworksPaginator";
|
|
22
25
|
export * from "./ListPeeringsPaginator";
|