@aws-sdk/client-networkmanager 3.592.0 → 3.596.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/dist-cjs/index.js +17 -0
- package/dist-es/models/models_0.js +10 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/AcceptAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/CreateConnectAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/CreateCoreNetworkCommand.d.ts +16 -0
- package/dist-types/commands/CreateSiteToSiteVpnAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/CreateVpcAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/DeleteAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/DeleteCoreNetworkCommand.d.ts +16 -0
- package/dist-types/commands/GetConnectAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/GetCoreNetworkChangeEventsCommand.d.ts +2 -1
- package/dist-types/commands/GetCoreNetworkChangeSetCommand.d.ts +59 -1
- package/dist-types/commands/GetCoreNetworkCommand.d.ts +16 -0
- package/dist-types/commands/GetNetworkRoutesCommand.d.ts +7 -1
- package/dist-types/commands/GetSiteToSiteVpnAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/GetVpcAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/ListAttachmentsCommand.d.ts +11 -0
- package/dist-types/commands/RejectAttachmentCommand.d.ts +11 -0
- package/dist-types/commands/UpdateCoreNetworkCommand.d.ts +16 -0
- package/dist-types/commands/UpdateVpcAttachmentCommand.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +345 -89
- package/dist-types/ts3.4/models/models_0.d.ts +60 -0
- package/package.json +4 -4
|
@@ -42,6 +42,27 @@ export interface Tag {
|
|
|
42
42
|
*/
|
|
43
43
|
Value?: string;
|
|
44
44
|
}
|
|
45
|
+
/**
|
|
46
|
+
* <p>Describes proposed changes to a network function group. </p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export interface ProposedNetworkFunctionGroupChange {
|
|
50
|
+
/**
|
|
51
|
+
* <p>The list of proposed changes to the key-value tags associated with the network function group.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
Tags?: Tag[];
|
|
55
|
+
/**
|
|
56
|
+
* <p>The proposed new attachment policy rule number for the network function group.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
AttachmentPolicyRuleNumber?: number;
|
|
60
|
+
/**
|
|
61
|
+
* <p>The proposed name change for the network function group name.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
NetworkFunctionGroupName?: string;
|
|
65
|
+
}
|
|
45
66
|
/**
|
|
46
67
|
* <p>Describes a proposed segment change. In some cases, the segment change must first be evaluated and accepted. </p>
|
|
47
68
|
* @public
|
|
@@ -137,6 +158,11 @@ export interface Attachment {
|
|
|
137
158
|
* @public
|
|
138
159
|
*/
|
|
139
160
|
SegmentName?: string;
|
|
161
|
+
/**
|
|
162
|
+
* <p>The name of the network function group.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
NetworkFunctionGroupName?: string;
|
|
140
166
|
/**
|
|
141
167
|
* <p>The tags associated with the attachment.</p>
|
|
142
168
|
* @public
|
|
@@ -147,6 +173,11 @@ export interface Attachment {
|
|
|
147
173
|
* @public
|
|
148
174
|
*/
|
|
149
175
|
ProposedSegmentChange?: ProposedSegmentChange;
|
|
176
|
+
/**
|
|
177
|
+
* <p>Describes a proposed change to a network function group associated with the attachment.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
ProposedNetworkFunctionGroupChange?: ProposedNetworkFunctionGroupChange;
|
|
150
181
|
/**
|
|
151
182
|
* <p>The timestamp when the attachment was created.</p>
|
|
152
183
|
* @public
|
|
@@ -784,6 +815,7 @@ export declare const ChangeType: {
|
|
|
784
815
|
readonly CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION";
|
|
785
816
|
readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
|
|
786
817
|
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
818
|
+
readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
|
|
787
819
|
readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
|
|
788
820
|
readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
|
|
789
821
|
};
|
|
@@ -1072,7 +1104,7 @@ export interface ConnectPeer {
|
|
|
1072
1104
|
*/
|
|
1073
1105
|
Tags?: Tag[];
|
|
1074
1106
|
/**
|
|
1075
|
-
* <p>The subnet ARN for the Connect peer.</p>
|
|
1107
|
+
* <p>The subnet ARN for the Connect peer. This only applies only when the protocol is NO_ENCAP.</p>
|
|
1076
1108
|
* @public
|
|
1077
1109
|
*/
|
|
1078
1110
|
SubnetArn?: string;
|
|
@@ -1144,6 +1176,43 @@ export interface CoreNetworkEdge {
|
|
|
1144
1176
|
*/
|
|
1145
1177
|
InsideCidrBlocks?: string[];
|
|
1146
1178
|
}
|
|
1179
|
+
/**
|
|
1180
|
+
* <p>Describes the segments associated with the service insertion action.</p>
|
|
1181
|
+
* @public
|
|
1182
|
+
*/
|
|
1183
|
+
export interface ServiceInsertionSegments {
|
|
1184
|
+
/**
|
|
1185
|
+
* <p>The list of segments associated with the <code>send-via</code> action.</p>
|
|
1186
|
+
* @public
|
|
1187
|
+
*/
|
|
1188
|
+
SendVia?: string[];
|
|
1189
|
+
/**
|
|
1190
|
+
* <p>The list of segments associated with the <code>send-to</code> action.</p>
|
|
1191
|
+
* @public
|
|
1192
|
+
*/
|
|
1193
|
+
SendTo?: string[];
|
|
1194
|
+
}
|
|
1195
|
+
/**
|
|
1196
|
+
* <p>Describes a network function group.</p>
|
|
1197
|
+
* @public
|
|
1198
|
+
*/
|
|
1199
|
+
export interface CoreNetworkNetworkFunctionGroup {
|
|
1200
|
+
/**
|
|
1201
|
+
* <p>The name of the network function group.</p>
|
|
1202
|
+
* @public
|
|
1203
|
+
*/
|
|
1204
|
+
Name?: string;
|
|
1205
|
+
/**
|
|
1206
|
+
* <p>The core network edge locations.</p>
|
|
1207
|
+
* @public
|
|
1208
|
+
*/
|
|
1209
|
+
EdgeLocations?: string[];
|
|
1210
|
+
/**
|
|
1211
|
+
* <p>The segments associated with the network function group.</p>
|
|
1212
|
+
* @public
|
|
1213
|
+
*/
|
|
1214
|
+
Segments?: ServiceInsertionSegments;
|
|
1215
|
+
}
|
|
1147
1216
|
/**
|
|
1148
1217
|
* <p>Describes a core network segment, which are dedicated routes. Only attachments within this segment can communicate with each other.</p>
|
|
1149
1218
|
* @public
|
|
@@ -1219,6 +1288,11 @@ export interface CoreNetwork {
|
|
|
1219
1288
|
* @public
|
|
1220
1289
|
*/
|
|
1221
1290
|
Segments?: CoreNetworkSegment[];
|
|
1291
|
+
/**
|
|
1292
|
+
* <p>The network function groups associated with a core network.</p>
|
|
1293
|
+
* @public
|
|
1294
|
+
*/
|
|
1295
|
+
NetworkFunctionGroups?: CoreNetworkNetworkFunctionGroup[];
|
|
1222
1296
|
/**
|
|
1223
1297
|
* <p>The edges within a core network.</p>
|
|
1224
1298
|
* @public
|
|
@@ -1230,6 +1304,118 @@ export interface CoreNetwork {
|
|
|
1230
1304
|
*/
|
|
1231
1305
|
Tags?: Tag[];
|
|
1232
1306
|
}
|
|
1307
|
+
/**
|
|
1308
|
+
* @public
|
|
1309
|
+
* @enum
|
|
1310
|
+
*/
|
|
1311
|
+
export declare const SegmentActionServiceInsertion: {
|
|
1312
|
+
readonly SEND_TO: "send-to";
|
|
1313
|
+
readonly SEND_VIA: "send-via";
|
|
1314
|
+
};
|
|
1315
|
+
/**
|
|
1316
|
+
* @public
|
|
1317
|
+
*/
|
|
1318
|
+
export type SegmentActionServiceInsertion = (typeof SegmentActionServiceInsertion)[keyof typeof SegmentActionServiceInsertion];
|
|
1319
|
+
/**
|
|
1320
|
+
* @public
|
|
1321
|
+
* @enum
|
|
1322
|
+
*/
|
|
1323
|
+
export declare const SendViaMode: {
|
|
1324
|
+
readonly DUAL_HOP: "dual-hop";
|
|
1325
|
+
readonly SINGLE_HOP: "single-hop";
|
|
1326
|
+
};
|
|
1327
|
+
/**
|
|
1328
|
+
* @public
|
|
1329
|
+
*/
|
|
1330
|
+
export type SendViaMode = (typeof SendViaMode)[keyof typeof SendViaMode];
|
|
1331
|
+
/**
|
|
1332
|
+
* <p>Describes a network function group for service insertion.</p>
|
|
1333
|
+
* @public
|
|
1334
|
+
*/
|
|
1335
|
+
export interface NetworkFunctionGroup {
|
|
1336
|
+
/**
|
|
1337
|
+
* <p>The name of the network function group.</p>
|
|
1338
|
+
* @public
|
|
1339
|
+
*/
|
|
1340
|
+
Name?: string;
|
|
1341
|
+
}
|
|
1342
|
+
/**
|
|
1343
|
+
* <p>Describes the edge that's used for the override. </p>
|
|
1344
|
+
* @public
|
|
1345
|
+
*/
|
|
1346
|
+
export interface EdgeOverride {
|
|
1347
|
+
/**
|
|
1348
|
+
* <p>The list of edge locations.</p>
|
|
1349
|
+
* @public
|
|
1350
|
+
*/
|
|
1351
|
+
EdgeSets?: string[][];
|
|
1352
|
+
/**
|
|
1353
|
+
* <p>The edge that should be used when overriding the current edge order.</p>
|
|
1354
|
+
* @public
|
|
1355
|
+
*/
|
|
1356
|
+
UseEdge?: string;
|
|
1357
|
+
}
|
|
1358
|
+
/**
|
|
1359
|
+
* <p>The list of network function groups and edge overrides for the service insertion
|
|
1360
|
+
* action. Used for both the <code>send-to</code> and <code>send-via</code> actions.</p>
|
|
1361
|
+
* @public
|
|
1362
|
+
*/
|
|
1363
|
+
export interface Via {
|
|
1364
|
+
/**
|
|
1365
|
+
* <p>The list of network function groups associated with the service insertion action.</p>
|
|
1366
|
+
* @public
|
|
1367
|
+
*/
|
|
1368
|
+
NetworkFunctionGroups?: NetworkFunctionGroup[];
|
|
1369
|
+
/**
|
|
1370
|
+
* <p>Describes any edge overrides. An edge override is a specific edge to be used for traffic.</p>
|
|
1371
|
+
* @public
|
|
1372
|
+
*/
|
|
1373
|
+
WithEdgeOverrides?: EdgeOverride[];
|
|
1374
|
+
}
|
|
1375
|
+
/**
|
|
1376
|
+
* <p>Displays a list of the destination segments. Used only when the service insertion
|
|
1377
|
+
* action is <code>send-to</code>. </p>
|
|
1378
|
+
* @public
|
|
1379
|
+
*/
|
|
1380
|
+
export interface WhenSentTo {
|
|
1381
|
+
/**
|
|
1382
|
+
* <p>The list of destination segments when the service insertion action is <code>send-to</code>.</p>
|
|
1383
|
+
* @public
|
|
1384
|
+
*/
|
|
1385
|
+
WhenSentToSegmentsList?: string[];
|
|
1386
|
+
}
|
|
1387
|
+
/**
|
|
1388
|
+
* <p>Describes the action that the service insertion will take for any segments associated with it.</p>
|
|
1389
|
+
* @public
|
|
1390
|
+
*/
|
|
1391
|
+
export interface ServiceInsertionAction {
|
|
1392
|
+
/**
|
|
1393
|
+
* <p>The action the service insertion takes for traffic.
|
|
1394
|
+
* <code>send-via</code> sends east-west traffic between attachments.
|
|
1395
|
+
* <code>send-to</code> sends north-south traffic to the
|
|
1396
|
+
* security appliance, and then from that to either the Internet or to an on-premesis
|
|
1397
|
+
* location. </p>
|
|
1398
|
+
* @public
|
|
1399
|
+
*/
|
|
1400
|
+
Action?: SegmentActionServiceInsertion;
|
|
1401
|
+
/**
|
|
1402
|
+
* <p>Describes the mode packets take for the <code>send-via</code> action. This is not used when the action is <code>send-to</code>. <code>dual-hop</code> packets traverse attachments in both the source to the destination core network edges. This mode requires that an inspection attachment must be present in all Regions of the service insertion-enabled segments.
|
|
1403
|
+
* For <code>single-hop</code>, packets traverse a single intermediate inserted attachment. You can use <code>EdgeOverride</code> to specify a specific edge to use. </p>
|
|
1404
|
+
* @public
|
|
1405
|
+
*/
|
|
1406
|
+
Mode?: SendViaMode;
|
|
1407
|
+
/**
|
|
1408
|
+
* <p>The list of destination segments if the service insertion action is <code>send-via</code>.</p>
|
|
1409
|
+
* @public
|
|
1410
|
+
*/
|
|
1411
|
+
WhenSentTo?: WhenSentTo;
|
|
1412
|
+
/**
|
|
1413
|
+
* <p>The list of network function groups and any edge overrides for the chosen service
|
|
1414
|
+
* insertion action. Used for both <code>send-to</code> or <code>send-via</code>.</p>
|
|
1415
|
+
* @public
|
|
1416
|
+
*/
|
|
1417
|
+
Via?: Via;
|
|
1418
|
+
}
|
|
1233
1419
|
/**
|
|
1234
1420
|
* <p>Describes a core network change.</p>
|
|
1235
1421
|
* @public
|
|
@@ -1240,6 +1426,11 @@ export interface CoreNetworkChangeValues {
|
|
|
1240
1426
|
* @public
|
|
1241
1427
|
*/
|
|
1242
1428
|
SegmentName?: string;
|
|
1429
|
+
/**
|
|
1430
|
+
* <p>The network function group name if the change event is associated with a network function group.</p>
|
|
1431
|
+
* @public
|
|
1432
|
+
*/
|
|
1433
|
+
NetworkFunctionGroupName?: string;
|
|
1243
1434
|
/**
|
|
1244
1435
|
* <p>The Regions where edges are located in a core network. </p>
|
|
1245
1436
|
* @public
|
|
@@ -1270,6 +1461,11 @@ export interface CoreNetworkChangeValues {
|
|
|
1270
1461
|
* @public
|
|
1271
1462
|
*/
|
|
1272
1463
|
SharedSegments?: string[];
|
|
1464
|
+
/**
|
|
1465
|
+
* <p>Describes the service insertion action. </p>
|
|
1466
|
+
* @public
|
|
1467
|
+
*/
|
|
1468
|
+
ServiceInsertionActions?: ServiceInsertionAction[];
|
|
1273
1469
|
}
|
|
1274
1470
|
/**
|
|
1275
1471
|
* <p>Details describing a core network change.</p>
|
|
@@ -1322,6 +1518,11 @@ export interface CoreNetworkChangeEventValues {
|
|
|
1322
1518
|
* @public
|
|
1323
1519
|
*/
|
|
1324
1520
|
SegmentName?: string;
|
|
1521
|
+
/**
|
|
1522
|
+
* <p>The changed network function group name.</p>
|
|
1523
|
+
* @public
|
|
1524
|
+
*/
|
|
1525
|
+
NetworkFunctionGroupName?: string;
|
|
1325
1526
|
/**
|
|
1326
1527
|
* <p>The ID of the attachment if the change event is associated with an attachment. </p>
|
|
1327
1528
|
* @public
|
|
@@ -1369,6 +1570,27 @@ export interface CoreNetworkChangeEvent {
|
|
|
1369
1570
|
*/
|
|
1370
1571
|
Values?: CoreNetworkChangeEventValues;
|
|
1371
1572
|
}
|
|
1573
|
+
/**
|
|
1574
|
+
* <p>Describes a core network </p>
|
|
1575
|
+
* @public
|
|
1576
|
+
*/
|
|
1577
|
+
export interface CoreNetworkNetworkFunctionGroupIdentifier {
|
|
1578
|
+
/**
|
|
1579
|
+
* <p>The ID of the core network.</p>
|
|
1580
|
+
* @public
|
|
1581
|
+
*/
|
|
1582
|
+
CoreNetworkId?: string;
|
|
1583
|
+
/**
|
|
1584
|
+
* <p>The network function group name.</p>
|
|
1585
|
+
* @public
|
|
1586
|
+
*/
|
|
1587
|
+
NetworkFunctionGroupName?: string;
|
|
1588
|
+
/**
|
|
1589
|
+
* <p>The location for the core network edge.</p>
|
|
1590
|
+
* @public
|
|
1591
|
+
*/
|
|
1592
|
+
EdgeLocation?: string;
|
|
1593
|
+
}
|
|
1372
1594
|
/**
|
|
1373
1595
|
* @public
|
|
1374
1596
|
* @enum
|
|
@@ -1670,7 +1892,7 @@ export interface CreateConnectPeerRequest {
|
|
|
1670
1892
|
*/
|
|
1671
1893
|
ConnectAttachmentId: string | undefined;
|
|
1672
1894
|
/**
|
|
1673
|
-
* <p>A Connect peer core network address
|
|
1895
|
+
* <p>A Connect peer core network address. This only applies only when the protocol is <code>GRE</code>.</p>
|
|
1674
1896
|
* @public
|
|
1675
1897
|
*/
|
|
1676
1898
|
CoreNetworkAddress?: string;
|
|
@@ -1680,7 +1902,7 @@ export interface CreateConnectPeerRequest {
|
|
|
1680
1902
|
*/
|
|
1681
1903
|
PeerAddress: string | undefined;
|
|
1682
1904
|
/**
|
|
1683
|
-
* <p>The Connect peer BGP options
|
|
1905
|
+
* <p>The Connect peer BGP options. This only applies only when the protocol is <code>GRE</code>.</p>
|
|
1684
1906
|
* @public
|
|
1685
1907
|
*/
|
|
1686
1908
|
BgpOptions?: BgpOptions;
|
|
@@ -1700,7 +1922,7 @@ export interface CreateConnectPeerRequest {
|
|
|
1700
1922
|
*/
|
|
1701
1923
|
ClientToken?: string;
|
|
1702
1924
|
/**
|
|
1703
|
-
* <p>The subnet ARN for the Connect peer.</p>
|
|
1925
|
+
* <p>The subnet ARN for the Connect peer. This only applies only when the protocol is NO_ENCAP.</p>
|
|
1704
1926
|
* @public
|
|
1705
1927
|
*/
|
|
1706
1928
|
SubnetArn?: string;
|
|
@@ -3525,11 +3747,26 @@ export interface GetNetworkResourceCountsRequest {
|
|
|
3525
3747
|
* <ul>
|
|
3526
3748
|
* <li>
|
|
3527
3749
|
* <p>
|
|
3750
|
+
* <code>attachment</code>
|
|
3751
|
+
* </p>
|
|
3752
|
+
* </li>
|
|
3753
|
+
* <li>
|
|
3754
|
+
* <p>
|
|
3755
|
+
* <code>connect-peer</code>
|
|
3756
|
+
* </p>
|
|
3757
|
+
* </li>
|
|
3758
|
+
* <li>
|
|
3759
|
+
* <p>
|
|
3528
3760
|
* <code>connection</code>
|
|
3529
3761
|
* </p>
|
|
3530
3762
|
* </li>
|
|
3531
3763
|
* <li>
|
|
3532
3764
|
* <p>
|
|
3765
|
+
* <code>core-network</code>
|
|
3766
|
+
* </p>
|
|
3767
|
+
* </li>
|
|
3768
|
+
* <li>
|
|
3769
|
+
* <p>
|
|
3533
3770
|
* <code>device</code>
|
|
3534
3771
|
* </p>
|
|
3535
3772
|
* </li>
|
|
@@ -3540,6 +3777,11 @@ export interface GetNetworkResourceCountsRequest {
|
|
|
3540
3777
|
* </li>
|
|
3541
3778
|
* <li>
|
|
3542
3779
|
* <p>
|
|
3780
|
+
* <code>peering</code>
|
|
3781
|
+
* </p>
|
|
3782
|
+
* </li>
|
|
3783
|
+
* <li>
|
|
3784
|
+
* <p>
|
|
3543
3785
|
* <code>site</code>
|
|
3544
3786
|
* </p>
|
|
3545
3787
|
* </li>
|
|
@@ -3675,11 +3917,26 @@ export interface GetNetworkResourceRelationshipsRequest {
|
|
|
3675
3917
|
* <ul>
|
|
3676
3918
|
* <li>
|
|
3677
3919
|
* <p>
|
|
3920
|
+
* <code>attachment</code>
|
|
3921
|
+
* </p>
|
|
3922
|
+
* </li>
|
|
3923
|
+
* <li>
|
|
3924
|
+
* <p>
|
|
3925
|
+
* <code>connect-peer</code>
|
|
3926
|
+
* </p>
|
|
3927
|
+
* </li>
|
|
3928
|
+
* <li>
|
|
3929
|
+
* <p>
|
|
3678
3930
|
* <code>connection</code>
|
|
3679
3931
|
* </p>
|
|
3680
3932
|
* </li>
|
|
3681
3933
|
* <li>
|
|
3682
3934
|
* <p>
|
|
3935
|
+
* <code>core-network</code>
|
|
3936
|
+
* </p>
|
|
3937
|
+
* </li>
|
|
3938
|
+
* <li>
|
|
3939
|
+
* <p>
|
|
3683
3940
|
* <code>device</code>
|
|
3684
3941
|
* </p>
|
|
3685
3942
|
* </li>
|
|
@@ -3690,6 +3947,11 @@ export interface GetNetworkResourceRelationshipsRequest {
|
|
|
3690
3947
|
* </li>
|
|
3691
3948
|
* <li>
|
|
3692
3949
|
* <p>
|
|
3950
|
+
* <code>peering</code>
|
|
3951
|
+
* </p>
|
|
3952
|
+
* </li>
|
|
3953
|
+
* <li>
|
|
3954
|
+
* <p>
|
|
3693
3955
|
* <code>site</code>
|
|
3694
3956
|
* </p>
|
|
3695
3957
|
* </li>
|
|
@@ -3812,74 +4074,94 @@ export interface GetNetworkResourcesRequest {
|
|
|
3812
4074
|
* <ul>
|
|
3813
4075
|
* <li>
|
|
3814
4076
|
* <p>
|
|
3815
|
-
* <code>dxcon</code>
|
|
3816
|
-
*
|
|
4077
|
+
* <code>dxcon</code>
|
|
4078
|
+
* </p>
|
|
3817
4079
|
* </li>
|
|
3818
4080
|
* <li>
|
|
3819
4081
|
* <p>
|
|
3820
|
-
* <code>dx-gateway</code>
|
|
3821
|
-
*
|
|
4082
|
+
* <code>dx-gateway</code>
|
|
4083
|
+
* </p>
|
|
3822
4084
|
* </li>
|
|
3823
4085
|
* <li>
|
|
3824
4086
|
* <p>
|
|
3825
|
-
* <code>dx-vif</code>
|
|
3826
|
-
*
|
|
4087
|
+
* <code>dx-vif</code>
|
|
4088
|
+
* </p>
|
|
3827
4089
|
* </li>
|
|
3828
4090
|
* </ul>
|
|
3829
4091
|
* <p>The following are the supported resource types for Network Manager:</p>
|
|
3830
4092
|
* <ul>
|
|
3831
4093
|
* <li>
|
|
3832
4094
|
* <p>
|
|
3833
|
-
* <code>
|
|
3834
|
-
*
|
|
4095
|
+
* <code>attachment</code>
|
|
4096
|
+
* </p>
|
|
4097
|
+
* </li>
|
|
4098
|
+
* <li>
|
|
4099
|
+
* <p>
|
|
4100
|
+
* <code>connect-peer</code>
|
|
4101
|
+
* </p>
|
|
4102
|
+
* </li>
|
|
4103
|
+
* <li>
|
|
4104
|
+
* <p>
|
|
4105
|
+
* <code>connection</code>
|
|
4106
|
+
* </p>
|
|
3835
4107
|
* </li>
|
|
3836
4108
|
* <li>
|
|
3837
4109
|
* <p>
|
|
3838
|
-
* <code>
|
|
3839
|
-
*
|
|
4110
|
+
* <code>core-network</code>
|
|
4111
|
+
* </p>
|
|
3840
4112
|
* </li>
|
|
3841
4113
|
* <li>
|
|
3842
4114
|
* <p>
|
|
3843
|
-
* <code>
|
|
3844
|
-
*
|
|
4115
|
+
* <code>device</code>
|
|
4116
|
+
* </p>
|
|
3845
4117
|
* </li>
|
|
3846
4118
|
* <li>
|
|
3847
4119
|
* <p>
|
|
3848
|
-
* <code>
|
|
3849
|
-
*
|
|
4120
|
+
* <code>link</code>
|
|
4121
|
+
* </p>
|
|
4122
|
+
* </li>
|
|
4123
|
+
* <li>
|
|
4124
|
+
* <p>
|
|
4125
|
+
* <code>peering</code>
|
|
4126
|
+
* </p>
|
|
4127
|
+
* </li>
|
|
4128
|
+
* <li>
|
|
4129
|
+
* <p>
|
|
4130
|
+
* <code>site</code>
|
|
4131
|
+
* </p>
|
|
3850
4132
|
* </li>
|
|
3851
4133
|
* </ul>
|
|
3852
4134
|
* <p>The following are the supported resource types for Amazon VPC:</p>
|
|
3853
4135
|
* <ul>
|
|
3854
4136
|
* <li>
|
|
3855
4137
|
* <p>
|
|
3856
|
-
* <code>customer-gateway</code>
|
|
3857
|
-
*
|
|
4138
|
+
* <code>customer-gateway</code>
|
|
4139
|
+
* </p>
|
|
3858
4140
|
* </li>
|
|
3859
4141
|
* <li>
|
|
3860
4142
|
* <p>
|
|
3861
|
-
* <code>transit-gateway</code>
|
|
3862
|
-
*
|
|
4143
|
+
* <code>transit-gateway</code>
|
|
4144
|
+
* </p>
|
|
3863
4145
|
* </li>
|
|
3864
4146
|
* <li>
|
|
3865
4147
|
* <p>
|
|
3866
|
-
* <code>transit-gateway-attachment</code>
|
|
3867
|
-
*
|
|
4148
|
+
* <code>transit-gateway-attachment</code>
|
|
4149
|
+
* </p>
|
|
3868
4150
|
* </li>
|
|
3869
4151
|
* <li>
|
|
3870
4152
|
* <p>
|
|
3871
|
-
* <code>transit-gateway-connect-peer</code>
|
|
3872
|
-
*
|
|
4153
|
+
* <code>transit-gateway-connect-peer</code>
|
|
4154
|
+
* </p>
|
|
3873
4155
|
* </li>
|
|
3874
4156
|
* <li>
|
|
3875
4157
|
* <p>
|
|
3876
|
-
* <code>transit-gateway-route-table</code>
|
|
3877
|
-
*
|
|
4158
|
+
* <code>transit-gateway-route-table</code>
|
|
4159
|
+
* </p>
|
|
3878
4160
|
* </li>
|
|
3879
4161
|
* <li>
|
|
3880
4162
|
* <p>
|
|
3881
|
-
* <code>vpn-connection</code>
|
|
3882
|
-
*
|
|
4163
|
+
* <code>vpn-connection</code>
|
|
4164
|
+
* </p>
|
|
3883
4165
|
* </li>
|
|
3884
4166
|
* </ul>
|
|
3885
4167
|
* @public
|
|
@@ -3950,11 +4232,26 @@ export interface NetworkResource {
|
|
|
3950
4232
|
* <ul>
|
|
3951
4233
|
* <li>
|
|
3952
4234
|
* <p>
|
|
4235
|
+
* <code>attachment</code>
|
|
4236
|
+
* </p>
|
|
4237
|
+
* </li>
|
|
4238
|
+
* <li>
|
|
4239
|
+
* <p>
|
|
4240
|
+
* <code>connect-peer</code>
|
|
4241
|
+
* </p>
|
|
4242
|
+
* </li>
|
|
4243
|
+
* <li>
|
|
4244
|
+
* <p>
|
|
3953
4245
|
* <code>connection</code>
|
|
3954
4246
|
* </p>
|
|
3955
4247
|
* </li>
|
|
3956
4248
|
* <li>
|
|
3957
4249
|
* <p>
|
|
4250
|
+
* <code>core-network</code>
|
|
4251
|
+
* </p>
|
|
4252
|
+
* </li>
|
|
4253
|
+
* <li>
|
|
4254
|
+
* <p>
|
|
3958
4255
|
* <code>device</code>
|
|
3959
4256
|
* </p>
|
|
3960
4257
|
* </li>
|
|
@@ -3965,6 +4262,11 @@ export interface NetworkResource {
|
|
|
3965
4262
|
* </li>
|
|
3966
4263
|
* <li>
|
|
3967
4264
|
* <p>
|
|
4265
|
+
* <code>peering</code>
|
|
4266
|
+
* </p>
|
|
4267
|
+
* </li>
|
|
4268
|
+
* <li>
|
|
4269
|
+
* <p>
|
|
3968
4270
|
* <code>site</code>
|
|
3969
4271
|
* </p>
|
|
3970
4272
|
* </li>
|
|
@@ -4066,6 +4368,11 @@ export interface RouteTableIdentifier {
|
|
|
4066
4368
|
* @public
|
|
4067
4369
|
*/
|
|
4068
4370
|
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
4371
|
+
/**
|
|
4372
|
+
* <p>The route table identifier associated with the network function group.</p>
|
|
4373
|
+
* @public
|
|
4374
|
+
*/
|
|
4375
|
+
CoreNetworkNetworkFunctionGroup?: CoreNetworkNetworkFunctionGroupIdentifier;
|
|
4069
4376
|
}
|
|
4070
4377
|
/**
|
|
4071
4378
|
* @public
|
|
@@ -4166,6 +4473,11 @@ export interface NetworkRouteDestination {
|
|
|
4166
4473
|
* @public
|
|
4167
4474
|
*/
|
|
4168
4475
|
SegmentName?: string;
|
|
4476
|
+
/**
|
|
4477
|
+
* <p>The network function group name associated with the destination.</p>
|
|
4478
|
+
* @public
|
|
4479
|
+
*/
|
|
4480
|
+
NetworkFunctionGroupName?: string;
|
|
4169
4481
|
/**
|
|
4170
4482
|
* <p>The edge location for the network destination.</p>
|
|
4171
4483
|
* @public
|
|
@@ -4219,6 +4531,7 @@ export interface NetworkRoute {
|
|
|
4219
4531
|
*/
|
|
4220
4532
|
export declare const RouteTableType: {
|
|
4221
4533
|
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
4534
|
+
readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
|
|
4222
4535
|
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
4223
4536
|
};
|
|
4224
4537
|
/**
|
|
@@ -4285,63 +4598,11 @@ export interface GetNetworkTelemetryRequest {
|
|
|
4285
4598
|
*/
|
|
4286
4599
|
AccountId?: string;
|
|
4287
4600
|
/**
|
|
4288
|
-
* <p>The resource type
|
|
4289
|
-
* <p>The following are the supported resource types for Direct Connect:</p>
|
|
4601
|
+
* <p>The resource type. The following are the supported resource types:</p>
|
|
4290
4602
|
* <ul>
|
|
4291
4603
|
* <li>
|
|
4292
4604
|
* <p>
|
|
4293
|
-
* <code>
|
|
4294
|
-
* </p>
|
|
4295
|
-
* </li>
|
|
4296
|
-
* <li>
|
|
4297
|
-
* <p>
|
|
4298
|
-
* <code>dx-gateway</code>
|
|
4299
|
-
* </p>
|
|
4300
|
-
* </li>
|
|
4301
|
-
* <li>
|
|
4302
|
-
* <p>
|
|
4303
|
-
* <code>dx-vif</code>
|
|
4304
|
-
* </p>
|
|
4305
|
-
* </li>
|
|
4306
|
-
* </ul>
|
|
4307
|
-
* <p>The following are the supported resource types for Network Manager:</p>
|
|
4308
|
-
* <ul>
|
|
4309
|
-
* <li>
|
|
4310
|
-
* <p>
|
|
4311
|
-
* <code>connection</code>
|
|
4312
|
-
* </p>
|
|
4313
|
-
* </li>
|
|
4314
|
-
* <li>
|
|
4315
|
-
* <p>
|
|
4316
|
-
* <code>device</code>
|
|
4317
|
-
* </p>
|
|
4318
|
-
* </li>
|
|
4319
|
-
* <li>
|
|
4320
|
-
* <p>
|
|
4321
|
-
* <code>link</code>
|
|
4322
|
-
* </p>
|
|
4323
|
-
* </li>
|
|
4324
|
-
* <li>
|
|
4325
|
-
* <p>
|
|
4326
|
-
* <code>site</code>
|
|
4327
|
-
* </p>
|
|
4328
|
-
* </li>
|
|
4329
|
-
* </ul>
|
|
4330
|
-
* <p>The following are the supported resource types for Amazon VPC:</p>
|
|
4331
|
-
* <ul>
|
|
4332
|
-
* <li>
|
|
4333
|
-
* <p>
|
|
4334
|
-
* <code>customer-gateway</code>
|
|
4335
|
-
* </p>
|
|
4336
|
-
* </li>
|
|
4337
|
-
* <li>
|
|
4338
|
-
* <p>
|
|
4339
|
-
* <code>transit-gateway</code>
|
|
4340
|
-
* </p>
|
|
4341
|
-
* </li>
|
|
4342
|
-
* <li>
|
|
4343
|
-
* <p>
|
|
4344
|
-
* <code>transit-gateway-attachment</code>
|
|
4605
|
+
* <code>connect-peer</code>
|
|
4345
4606
|
* </p>
|
|
4346
4607
|
* </li>
|
|
4347
4608
|
* <li>
|
|
@@ -4351,11 +4612,6 @@ export interface GetNetworkTelemetryRequest {
|
|
|
4351
4612
|
* </li>
|
|
4352
4613
|
* <li>
|
|
4353
4614
|
* <p>
|
|
4354
|
-
* <code>transit-gateway-route-table</code>
|
|
4355
|
-
* </p>
|
|
4356
|
-
* </li>
|
|
4357
|
-
* <li>
|
|
4358
|
-
* <p>
|
|
4359
4615
|
* <code>vpn-connection</code>
|
|
4360
4616
|
* </p>
|
|
4361
4617
|
* </li>
|