@aws-sdk/client-networkmanager 3.301.0 → 3.303.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/models/models_0.js +184 -215
- package/dist-es/models/models_0.js +184 -215
- package/dist-types/models/models_0.d.ts +339 -184
- package/dist-types/ts3.4/models/models_0.d.ts +236 -184
- package/package.json +34 -34
|
@@ -6,12 +6,14 @@ import { NetworkManagerServiceException as __BaseException } from "./NetworkMana
|
|
|
6
6
|
export interface AcceptAttachmentRequest {
|
|
7
7
|
AttachmentId: string | undefined;
|
|
8
8
|
}
|
|
9
|
-
export declare
|
|
10
|
-
CONNECT
|
|
11
|
-
SITE_TO_SITE_VPN
|
|
12
|
-
TRANSIT_GATEWAY_ROUTE_TABLE
|
|
13
|
-
VPC
|
|
14
|
-
}
|
|
9
|
+
export declare const AttachmentType: {
|
|
10
|
+
readonly CONNECT: "CONNECT";
|
|
11
|
+
readonly SITE_TO_SITE_VPN: "SITE_TO_SITE_VPN";
|
|
12
|
+
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
13
|
+
readonly VPC: "VPC";
|
|
14
|
+
};
|
|
15
|
+
export type AttachmentType =
|
|
16
|
+
(typeof AttachmentType)[keyof typeof AttachmentType];
|
|
15
17
|
export interface Tag {
|
|
16
18
|
Key?: string;
|
|
17
19
|
Value?: string;
|
|
@@ -21,17 +23,19 @@ export interface ProposedSegmentChange {
|
|
|
21
23
|
AttachmentPolicyRuleNumber?: number;
|
|
22
24
|
SegmentName?: string;
|
|
23
25
|
}
|
|
24
|
-
export declare
|
|
25
|
-
AVAILABLE
|
|
26
|
-
CREATING
|
|
27
|
-
DELETING
|
|
28
|
-
FAILED
|
|
29
|
-
PENDING_ATTACHMENT_ACCEPTANCE
|
|
30
|
-
PENDING_NETWORK_UPDATE
|
|
31
|
-
PENDING_TAG_ACCEPTANCE
|
|
32
|
-
REJECTED
|
|
33
|
-
UPDATING
|
|
34
|
-
}
|
|
26
|
+
export declare const AttachmentState: {
|
|
27
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
28
|
+
readonly CREATING: "CREATING";
|
|
29
|
+
readonly DELETING: "DELETING";
|
|
30
|
+
readonly FAILED: "FAILED";
|
|
31
|
+
readonly PENDING_ATTACHMENT_ACCEPTANCE: "PENDING_ATTACHMENT_ACCEPTANCE";
|
|
32
|
+
readonly PENDING_NETWORK_UPDATE: "PENDING_NETWORK_UPDATE";
|
|
33
|
+
readonly PENDING_TAG_ACCEPTANCE: "PENDING_TAG_ACCEPTANCE";
|
|
34
|
+
readonly REJECTED: "REJECTED";
|
|
35
|
+
readonly UPDATING: "UPDATING";
|
|
36
|
+
};
|
|
37
|
+
export type AttachmentState =
|
|
38
|
+
(typeof AttachmentState)[keyof typeof AttachmentState];
|
|
35
39
|
export interface Attachment {
|
|
36
40
|
CoreNetworkId?: string;
|
|
37
41
|
CoreNetworkArn?: string;
|
|
@@ -100,12 +104,14 @@ export interface ValidationExceptionField {
|
|
|
100
104
|
Name: string | undefined;
|
|
101
105
|
Message: string | undefined;
|
|
102
106
|
}
|
|
103
|
-
export declare
|
|
104
|
-
CANNOT_PARSE
|
|
105
|
-
FIELD_VALIDATION_FAILED
|
|
106
|
-
OTHER
|
|
107
|
-
UNKNOWN_OPERATION
|
|
108
|
-
}
|
|
107
|
+
export declare const ValidationExceptionReason: {
|
|
108
|
+
readonly CANNOT_PARSE: "CannotParse";
|
|
109
|
+
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
110
|
+
readonly OTHER: "Other";
|
|
111
|
+
readonly UNKNOWN_OPERATION: "UnknownOperation";
|
|
112
|
+
};
|
|
113
|
+
export type ValidationExceptionReason =
|
|
114
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
109
115
|
export declare class ValidationException extends __BaseException {
|
|
110
116
|
readonly name: "ValidationException";
|
|
111
117
|
readonly $fault: "client";
|
|
@@ -126,12 +132,14 @@ export interface AssociateConnectPeerRequest {
|
|
|
126
132
|
DeviceId: string | undefined;
|
|
127
133
|
LinkId?: string;
|
|
128
134
|
}
|
|
129
|
-
export declare
|
|
130
|
-
available
|
|
131
|
-
deleted
|
|
132
|
-
deleting
|
|
133
|
-
pending
|
|
134
|
-
}
|
|
135
|
+
export declare const ConnectPeerAssociationState: {
|
|
136
|
+
readonly available: "AVAILABLE";
|
|
137
|
+
readonly deleted: "DELETED";
|
|
138
|
+
readonly deleting: "DELETING";
|
|
139
|
+
readonly pending: "PENDING";
|
|
140
|
+
};
|
|
141
|
+
export type ConnectPeerAssociationState =
|
|
142
|
+
(typeof ConnectPeerAssociationState)[keyof typeof ConnectPeerAssociationState];
|
|
135
143
|
export interface ConnectPeerAssociation {
|
|
136
144
|
ConnectPeerId?: string;
|
|
137
145
|
GlobalNetworkId?: string;
|
|
@@ -160,12 +168,14 @@ export interface AssociateCustomerGatewayRequest {
|
|
|
160
168
|
DeviceId: string | undefined;
|
|
161
169
|
LinkId?: string;
|
|
162
170
|
}
|
|
163
|
-
export declare
|
|
164
|
-
available
|
|
165
|
-
deleted
|
|
166
|
-
deleting
|
|
167
|
-
pending
|
|
168
|
-
}
|
|
171
|
+
export declare const CustomerGatewayAssociationState: {
|
|
172
|
+
readonly available: "AVAILABLE";
|
|
173
|
+
readonly deleted: "DELETED";
|
|
174
|
+
readonly deleting: "DELETING";
|
|
175
|
+
readonly pending: "PENDING";
|
|
176
|
+
};
|
|
177
|
+
export type CustomerGatewayAssociationState =
|
|
178
|
+
(typeof CustomerGatewayAssociationState)[keyof typeof CustomerGatewayAssociationState];
|
|
169
179
|
export interface CustomerGatewayAssociation {
|
|
170
180
|
CustomerGatewayArn?: string;
|
|
171
181
|
GlobalNetworkId?: string;
|
|
@@ -181,12 +191,14 @@ export interface AssociateLinkRequest {
|
|
|
181
191
|
DeviceId: string | undefined;
|
|
182
192
|
LinkId: string | undefined;
|
|
183
193
|
}
|
|
184
|
-
export declare
|
|
185
|
-
available
|
|
186
|
-
deleted
|
|
187
|
-
deleting
|
|
188
|
-
pending
|
|
189
|
-
}
|
|
194
|
+
export declare const LinkAssociationState: {
|
|
195
|
+
readonly available: "AVAILABLE";
|
|
196
|
+
readonly deleted: "DELETED";
|
|
197
|
+
readonly deleting: "DELETING";
|
|
198
|
+
readonly pending: "PENDING";
|
|
199
|
+
};
|
|
200
|
+
export type LinkAssociationState =
|
|
201
|
+
(typeof LinkAssociationState)[keyof typeof LinkAssociationState];
|
|
190
202
|
export interface LinkAssociation {
|
|
191
203
|
GlobalNetworkId?: string;
|
|
192
204
|
DeviceId?: string;
|
|
@@ -202,12 +214,14 @@ export interface AssociateTransitGatewayConnectPeerRequest {
|
|
|
202
214
|
DeviceId: string | undefined;
|
|
203
215
|
LinkId?: string;
|
|
204
216
|
}
|
|
205
|
-
export declare
|
|
206
|
-
available
|
|
207
|
-
deleted
|
|
208
|
-
deleting
|
|
209
|
-
pending
|
|
210
|
-
}
|
|
217
|
+
export declare const TransitGatewayConnectPeerAssociationState: {
|
|
218
|
+
readonly available: "AVAILABLE";
|
|
219
|
+
readonly deleted: "DELETED";
|
|
220
|
+
readonly deleting: "DELETING";
|
|
221
|
+
readonly pending: "PENDING";
|
|
222
|
+
};
|
|
223
|
+
export type TransitGatewayConnectPeerAssociationState =
|
|
224
|
+
(typeof TransitGatewayConnectPeerAssociationState)[keyof typeof TransitGatewayConnectPeerAssociationState];
|
|
211
225
|
export interface TransitGatewayConnectPeerAssociation {
|
|
212
226
|
TransitGatewayConnectPeerArn?: string;
|
|
213
227
|
GlobalNetworkId?: string;
|
|
@@ -229,39 +243,46 @@ export interface Bandwidth {
|
|
|
229
243
|
export interface BgpOptions {
|
|
230
244
|
PeerAsn?: number;
|
|
231
245
|
}
|
|
232
|
-
export declare
|
|
233
|
-
ADD
|
|
234
|
-
MODIFY
|
|
235
|
-
REMOVE
|
|
236
|
-
}
|
|
237
|
-
export
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
246
|
+
export declare const ChangeAction: {
|
|
247
|
+
readonly ADD: "ADD";
|
|
248
|
+
readonly MODIFY: "MODIFY";
|
|
249
|
+
readonly REMOVE: "REMOVE";
|
|
250
|
+
};
|
|
251
|
+
export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
|
|
252
|
+
export declare const ChangeSetState: {
|
|
253
|
+
readonly EXECUTING: "EXECUTING";
|
|
254
|
+
readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
|
|
255
|
+
readonly FAILED_GENERATION: "FAILED_GENERATION";
|
|
256
|
+
readonly OUT_OF_DATE: "OUT_OF_DATE";
|
|
257
|
+
readonly PENDING_GENERATION: "PENDING_GENERATION";
|
|
258
|
+
readonly READY_TO_EXECUTE: "READY_TO_EXECUTE";
|
|
259
|
+
};
|
|
260
|
+
export type ChangeSetState =
|
|
261
|
+
(typeof ChangeSetState)[keyof typeof ChangeSetState];
|
|
262
|
+
export declare const ChangeStatus: {
|
|
263
|
+
readonly COMPLETE: "COMPLETE";
|
|
264
|
+
readonly FAILED: "FAILED";
|
|
265
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
266
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
267
|
+
};
|
|
268
|
+
export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
|
|
269
|
+
export declare const ChangeType: {
|
|
270
|
+
readonly ATTACHMENT_MAPPING: "ATTACHMENT_MAPPING";
|
|
271
|
+
readonly ATTACHMENT_POLICIES_CONFIGURATION: "ATTACHMENT_POLICIES_CONFIGURATION";
|
|
272
|
+
readonly ATTACHMENT_ROUTE_PROPAGATION: "ATTACHMENT_ROUTE_PROPAGATION";
|
|
273
|
+
readonly ATTACHMENT_ROUTE_STATIC: "ATTACHMENT_ROUTE_STATIC";
|
|
274
|
+
readonly CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION";
|
|
275
|
+
readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
|
|
276
|
+
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
277
|
+
readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
|
|
278
|
+
readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
|
|
279
|
+
};
|
|
280
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
281
|
+
export declare const TunnelProtocol: {
|
|
282
|
+
readonly GRE: "GRE";
|
|
283
|
+
};
|
|
284
|
+
export type TunnelProtocol =
|
|
285
|
+
(typeof TunnelProtocol)[keyof typeof TunnelProtocol];
|
|
265
286
|
export interface ConnectAttachmentOptions {
|
|
266
287
|
Protocol?: TunnelProtocol | string;
|
|
267
288
|
}
|
|
@@ -270,12 +291,14 @@ export interface ConnectAttachment {
|
|
|
270
291
|
TransportAttachmentId?: string;
|
|
271
292
|
Options?: ConnectAttachmentOptions;
|
|
272
293
|
}
|
|
273
|
-
export declare
|
|
274
|
-
available
|
|
275
|
-
deleting
|
|
276
|
-
pending
|
|
277
|
-
updating
|
|
278
|
-
}
|
|
294
|
+
export declare const ConnectionState: {
|
|
295
|
+
readonly available: "AVAILABLE";
|
|
296
|
+
readonly deleting: "DELETING";
|
|
297
|
+
readonly pending: "PENDING";
|
|
298
|
+
readonly updating: "UPDATING";
|
|
299
|
+
};
|
|
300
|
+
export type ConnectionState =
|
|
301
|
+
(typeof ConnectionState)[keyof typeof ConnectionState];
|
|
279
302
|
export interface Connection {
|
|
280
303
|
ConnectionId?: string;
|
|
281
304
|
ConnectionArn?: string;
|
|
@@ -289,14 +312,18 @@ export interface Connection {
|
|
|
289
312
|
State?: ConnectionState | string;
|
|
290
313
|
Tags?: Tag[];
|
|
291
314
|
}
|
|
292
|
-
export declare
|
|
293
|
-
DOWN
|
|
294
|
-
UP
|
|
295
|
-
}
|
|
296
|
-
export
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
315
|
+
export declare const ConnectionStatus: {
|
|
316
|
+
readonly DOWN: "DOWN";
|
|
317
|
+
readonly UP: "UP";
|
|
318
|
+
};
|
|
319
|
+
export type ConnectionStatus =
|
|
320
|
+
(typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
321
|
+
export declare const ConnectionType: {
|
|
322
|
+
readonly BGP: "BGP";
|
|
323
|
+
readonly IPSEC: "IPSEC";
|
|
324
|
+
};
|
|
325
|
+
export type ConnectionType =
|
|
326
|
+
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
300
327
|
export interface ConnectionHealth {
|
|
301
328
|
Type?: ConnectionType | string;
|
|
302
329
|
Status?: ConnectionStatus | string;
|
|
@@ -315,12 +342,14 @@ export interface ConnectPeerConfiguration {
|
|
|
315
342
|
Protocol?: TunnelProtocol | string;
|
|
316
343
|
BgpConfigurations?: ConnectPeerBgpConfiguration[];
|
|
317
344
|
}
|
|
318
|
-
export declare
|
|
319
|
-
AVAILABLE
|
|
320
|
-
CREATING
|
|
321
|
-
DELETING
|
|
322
|
-
FAILED
|
|
323
|
-
}
|
|
345
|
+
export declare const ConnectPeerState: {
|
|
346
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
347
|
+
readonly CREATING: "CREATING";
|
|
348
|
+
readonly DELETING: "DELETING";
|
|
349
|
+
readonly FAILED: "FAILED";
|
|
350
|
+
};
|
|
351
|
+
export type ConnectPeerState =
|
|
352
|
+
(typeof ConnectPeerState)[keyof typeof ConnectPeerState];
|
|
324
353
|
export interface ConnectPeer {
|
|
325
354
|
CoreNetworkId?: string;
|
|
326
355
|
ConnectAttachmentId?: string;
|
|
@@ -350,12 +379,14 @@ export interface CoreNetworkSegment {
|
|
|
350
379
|
EdgeLocations?: string[];
|
|
351
380
|
SharedSegments?: string[];
|
|
352
381
|
}
|
|
353
|
-
export declare
|
|
354
|
-
AVAILABLE
|
|
355
|
-
CREATING
|
|
356
|
-
DELETING
|
|
357
|
-
UPDATING
|
|
358
|
-
}
|
|
382
|
+
export declare const CoreNetworkState: {
|
|
383
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
384
|
+
readonly CREATING: "CREATING";
|
|
385
|
+
readonly DELETING: "DELETING";
|
|
386
|
+
readonly UPDATING: "UPDATING";
|
|
387
|
+
};
|
|
388
|
+
export type CoreNetworkState =
|
|
389
|
+
(typeof CoreNetworkState)[keyof typeof CoreNetworkState];
|
|
359
390
|
export interface CoreNetwork {
|
|
360
391
|
GlobalNetworkId?: string;
|
|
361
392
|
CoreNetworkId?: string;
|
|
@@ -398,10 +429,12 @@ export interface CoreNetworkChangeEvent {
|
|
|
398
429
|
Status?: ChangeStatus | string;
|
|
399
430
|
Values?: CoreNetworkChangeEventValues;
|
|
400
431
|
}
|
|
401
|
-
export declare
|
|
402
|
-
LATEST
|
|
403
|
-
LIVE
|
|
404
|
-
}
|
|
432
|
+
export declare const CoreNetworkPolicyAlias: {
|
|
433
|
+
readonly LATEST: "LATEST";
|
|
434
|
+
readonly LIVE: "LIVE";
|
|
435
|
+
};
|
|
436
|
+
export type CoreNetworkPolicyAlias =
|
|
437
|
+
(typeof CoreNetworkPolicyAlias)[keyof typeof CoreNetworkPolicyAlias];
|
|
405
438
|
export interface CoreNetworkPolicyError {
|
|
406
439
|
ErrorCode: string | undefined;
|
|
407
440
|
Message: string | undefined;
|
|
@@ -510,12 +543,13 @@ export interface CreateDeviceRequest {
|
|
|
510
543
|
SiteId?: string;
|
|
511
544
|
Tags?: Tag[];
|
|
512
545
|
}
|
|
513
|
-
export declare
|
|
514
|
-
available
|
|
515
|
-
deleting
|
|
516
|
-
pending
|
|
517
|
-
updating
|
|
518
|
-
}
|
|
546
|
+
export declare const DeviceState: {
|
|
547
|
+
readonly available: "AVAILABLE";
|
|
548
|
+
readonly deleting: "DELETING";
|
|
549
|
+
readonly pending: "PENDING";
|
|
550
|
+
readonly updating: "UPDATING";
|
|
551
|
+
};
|
|
552
|
+
export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
|
|
519
553
|
export interface Device {
|
|
520
554
|
DeviceId?: string;
|
|
521
555
|
DeviceArn?: string;
|
|
@@ -539,12 +573,14 @@ export interface CreateGlobalNetworkRequest {
|
|
|
539
573
|
Description?: string;
|
|
540
574
|
Tags?: Tag[];
|
|
541
575
|
}
|
|
542
|
-
export declare
|
|
543
|
-
available
|
|
544
|
-
deleting
|
|
545
|
-
pending
|
|
546
|
-
updating
|
|
547
|
-
}
|
|
576
|
+
export declare const GlobalNetworkState: {
|
|
577
|
+
readonly available: "AVAILABLE";
|
|
578
|
+
readonly deleting: "DELETING";
|
|
579
|
+
readonly pending: "PENDING";
|
|
580
|
+
readonly updating: "UPDATING";
|
|
581
|
+
};
|
|
582
|
+
export type GlobalNetworkState =
|
|
583
|
+
(typeof GlobalNetworkState)[keyof typeof GlobalNetworkState];
|
|
548
584
|
export interface GlobalNetwork {
|
|
549
585
|
GlobalNetworkId?: string;
|
|
550
586
|
GlobalNetworkArn?: string;
|
|
@@ -565,12 +601,13 @@ export interface CreateLinkRequest {
|
|
|
565
601
|
SiteId: string | undefined;
|
|
566
602
|
Tags?: Tag[];
|
|
567
603
|
}
|
|
568
|
-
export declare
|
|
569
|
-
available
|
|
570
|
-
deleting
|
|
571
|
-
pending
|
|
572
|
-
updating
|
|
573
|
-
}
|
|
604
|
+
export declare const LinkState: {
|
|
605
|
+
readonly available: "AVAILABLE";
|
|
606
|
+
readonly deleting: "DELETING";
|
|
607
|
+
readonly pending: "PENDING";
|
|
608
|
+
readonly updating: "UPDATING";
|
|
609
|
+
};
|
|
610
|
+
export type LinkState = (typeof LinkState)[keyof typeof LinkState];
|
|
574
611
|
export interface Link {
|
|
575
612
|
LinkId?: string;
|
|
576
613
|
LinkArn?: string;
|
|
@@ -593,12 +630,13 @@ export interface CreateSiteRequest {
|
|
|
593
630
|
Location?: Location;
|
|
594
631
|
Tags?: Tag[];
|
|
595
632
|
}
|
|
596
|
-
export declare
|
|
597
|
-
available
|
|
598
|
-
deleting
|
|
599
|
-
pending
|
|
600
|
-
updating
|
|
601
|
-
}
|
|
633
|
+
export declare const SiteState: {
|
|
634
|
+
readonly available: "AVAILABLE";
|
|
635
|
+
readonly deleting: "DELETING";
|
|
636
|
+
readonly pending: "PENDING";
|
|
637
|
+
readonly updating: "UPDATING";
|
|
638
|
+
};
|
|
639
|
+
export type SiteState = (typeof SiteState)[keyof typeof SiteState];
|
|
602
640
|
export interface Site {
|
|
603
641
|
SiteId?: string;
|
|
604
642
|
SiteArn?: string;
|
|
@@ -631,15 +669,17 @@ export interface CreateTransitGatewayPeeringRequest {
|
|
|
631
669
|
Tags?: Tag[];
|
|
632
670
|
ClientToken?: string;
|
|
633
671
|
}
|
|
634
|
-
export declare
|
|
635
|
-
TRANSIT_GATEWAY
|
|
636
|
-
}
|
|
637
|
-
export
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
672
|
+
export declare const PeeringType: {
|
|
673
|
+
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
674
|
+
};
|
|
675
|
+
export type PeeringType = (typeof PeeringType)[keyof typeof PeeringType];
|
|
676
|
+
export declare const PeeringState: {
|
|
677
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
678
|
+
readonly CREATING: "CREATING";
|
|
679
|
+
readonly DELETING: "DELETING";
|
|
680
|
+
readonly FAILED: "FAILED";
|
|
681
|
+
};
|
|
682
|
+
export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
|
|
643
683
|
export interface Peering {
|
|
644
684
|
CoreNetworkId?: string;
|
|
645
685
|
CoreNetworkArn?: string;
|
|
@@ -767,13 +807,15 @@ export interface DeregisterTransitGatewayRequest {
|
|
|
767
807
|
GlobalNetworkId: string | undefined;
|
|
768
808
|
TransitGatewayArn: string | undefined;
|
|
769
809
|
}
|
|
770
|
-
export declare
|
|
771
|
-
available
|
|
772
|
-
deleted
|
|
773
|
-
deleting
|
|
774
|
-
failed
|
|
775
|
-
pending
|
|
776
|
-
}
|
|
810
|
+
export declare const TransitGatewayRegistrationState: {
|
|
811
|
+
readonly available: "AVAILABLE";
|
|
812
|
+
readonly deleted: "DELETED";
|
|
813
|
+
readonly deleting: "DELETING";
|
|
814
|
+
readonly failed: "FAILED";
|
|
815
|
+
readonly pending: "PENDING";
|
|
816
|
+
};
|
|
817
|
+
export type TransitGatewayRegistrationState =
|
|
818
|
+
(typeof TransitGatewayRegistrationState)[keyof typeof TransitGatewayRegistrationState];
|
|
777
819
|
export interface TransitGatewayRegistrationStateReason {
|
|
778
820
|
Code?: TransitGatewayRegistrationState | string;
|
|
779
821
|
Message?: string;
|
|
@@ -1006,14 +1048,16 @@ export interface RouteTableIdentifier {
|
|
|
1006
1048
|
TransitGatewayRouteTableArn?: string;
|
|
1007
1049
|
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
1008
1050
|
}
|
|
1009
|
-
export declare
|
|
1010
|
-
ACTIVE
|
|
1011
|
-
BLACKHOLE
|
|
1012
|
-
}
|
|
1013
|
-
export
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1051
|
+
export declare const RouteState: {
|
|
1052
|
+
readonly ACTIVE: "ACTIVE";
|
|
1053
|
+
readonly BLACKHOLE: "BLACKHOLE";
|
|
1054
|
+
};
|
|
1055
|
+
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
1056
|
+
export declare const RouteType: {
|
|
1057
|
+
readonly PROPAGATED: "PROPAGATED";
|
|
1058
|
+
readonly STATIC: "STATIC";
|
|
1059
|
+
};
|
|
1060
|
+
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
1017
1061
|
export interface GetNetworkRoutesRequest {
|
|
1018
1062
|
GlobalNetworkId: string | undefined;
|
|
1019
1063
|
RouteTableIdentifier: RouteTableIdentifier | undefined;
|
|
@@ -1041,10 +1085,12 @@ export interface NetworkRoute {
|
|
|
1041
1085
|
State?: RouteState | string;
|
|
1042
1086
|
Type?: RouteType | string;
|
|
1043
1087
|
}
|
|
1044
|
-
export declare
|
|
1045
|
-
CORE_NETWORK_SEGMENT
|
|
1046
|
-
TRANSIT_GATEWAY_ROUTE_TABLE
|
|
1047
|
-
}
|
|
1088
|
+
export declare const RouteTableType: {
|
|
1089
|
+
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
1090
|
+
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
1091
|
+
};
|
|
1092
|
+
export type RouteTableType =
|
|
1093
|
+
(typeof RouteTableType)[keyof typeof RouteTableType];
|
|
1048
1094
|
export interface GetNetworkRoutesResponse {
|
|
1049
1095
|
RouteTableArn?: string;
|
|
1050
1096
|
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
@@ -1093,23 +1139,27 @@ export interface RouteAnalysisEndpointOptions {
|
|
|
1093
1139
|
TransitGatewayArn?: string;
|
|
1094
1140
|
IpAddress?: string;
|
|
1095
1141
|
}
|
|
1096
|
-
export declare
|
|
1097
|
-
BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND
|
|
1098
|
-
CYCLIC_PATH_DETECTED
|
|
1099
|
-
INACTIVE_ROUTE_FOR_DESTINATION_FOUND
|
|
1100
|
-
MAX_HOPS_EXCEEDED
|
|
1101
|
-
NO_DESTINATION_ARN_PROVIDED
|
|
1102
|
-
POSSIBLE_MIDDLEBOX
|
|
1103
|
-
ROUTE_NOT_FOUND
|
|
1104
|
-
TRANSIT_GATEWAY_ATTACHMENT
|
|
1105
|
-
TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND
|
|
1106
|
-
TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY
|
|
1107
|
-
TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND
|
|
1108
|
-
}
|
|
1109
|
-
export
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1142
|
+
export declare const RouteAnalysisCompletionReasonCode: {
|
|
1143
|
+
readonly BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND";
|
|
1144
|
+
readonly CYCLIC_PATH_DETECTED: "CYCLIC_PATH_DETECTED";
|
|
1145
|
+
readonly INACTIVE_ROUTE_FOR_DESTINATION_FOUND: "INACTIVE_ROUTE_FOR_DESTINATION_FOUND";
|
|
1146
|
+
readonly MAX_HOPS_EXCEEDED: "MAX_HOPS_EXCEEDED";
|
|
1147
|
+
readonly NO_DESTINATION_ARN_PROVIDED: "NO_DESTINATION_ARN_PROVIDED";
|
|
1148
|
+
readonly POSSIBLE_MIDDLEBOX: "POSSIBLE_MIDDLEBOX";
|
|
1149
|
+
readonly ROUTE_NOT_FOUND: "ROUTE_NOT_FOUND";
|
|
1150
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH";
|
|
1151
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND";
|
|
1152
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY: "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY";
|
|
1153
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND";
|
|
1154
|
+
};
|
|
1155
|
+
export type RouteAnalysisCompletionReasonCode =
|
|
1156
|
+
(typeof RouteAnalysisCompletionReasonCode)[keyof typeof RouteAnalysisCompletionReasonCode];
|
|
1157
|
+
export declare const RouteAnalysisCompletionResultCode: {
|
|
1158
|
+
readonly CONNECTED: "CONNECTED";
|
|
1159
|
+
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
1160
|
+
};
|
|
1161
|
+
export type RouteAnalysisCompletionResultCode =
|
|
1162
|
+
(typeof RouteAnalysisCompletionResultCode)[keyof typeof RouteAnalysisCompletionResultCode];
|
|
1113
1163
|
export interface RouteAnalysisCompletion {
|
|
1114
1164
|
ResultCode?: RouteAnalysisCompletionResultCode | string;
|
|
1115
1165
|
ReasonCode?: RouteAnalysisCompletionReasonCode | string;
|
|
@@ -1132,11 +1182,13 @@ export interface RouteAnalysisPath {
|
|
|
1132
1182
|
CompletionStatus?: RouteAnalysisCompletion;
|
|
1133
1183
|
Path?: PathComponent[];
|
|
1134
1184
|
}
|
|
1135
|
-
export declare
|
|
1136
|
-
completed
|
|
1137
|
-
failed
|
|
1138
|
-
running
|
|
1139
|
-
}
|
|
1185
|
+
export declare const RouteAnalysisStatus: {
|
|
1186
|
+
readonly completed: "COMPLETED";
|
|
1187
|
+
readonly failed: "FAILED";
|
|
1188
|
+
readonly running: "RUNNING";
|
|
1189
|
+
};
|
|
1190
|
+
export type RouteAnalysisStatus =
|
|
1191
|
+
(typeof RouteAnalysisStatus)[keyof typeof RouteAnalysisStatus];
|
|
1140
1192
|
export interface RouteAnalysis {
|
|
1141
1193
|
GlobalNetworkId?: string;
|
|
1142
1194
|
OwnerAccountId?: string;
|