@aws-sdk/client-networkmanager 3.686.0 → 3.691.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-types/models/models_0.d.ts +626 -626
- package/dist-types/ts3.4/models/models_0.d.ts +640 -626
- package/package.json +7 -7
|
@@ -27,24 +27,24 @@ export declare const AttachmentErrorCode: {
|
|
|
27
27
|
export type AttachmentErrorCode =
|
|
28
28
|
(typeof AttachmentErrorCode)[keyof typeof AttachmentErrorCode];
|
|
29
29
|
export interface AttachmentError {
|
|
30
|
-
Code?: AttachmentErrorCode;
|
|
31
|
-
Message?: string;
|
|
32
|
-
ResourceArn?: string;
|
|
33
|
-
RequestId?: string;
|
|
30
|
+
Code?: AttachmentErrorCode | undefined;
|
|
31
|
+
Message?: string | undefined;
|
|
32
|
+
ResourceArn?: string | undefined;
|
|
33
|
+
RequestId?: string | undefined;
|
|
34
34
|
}
|
|
35
35
|
export interface Tag {
|
|
36
|
-
Key?: string;
|
|
37
|
-
Value?: string;
|
|
36
|
+
Key?: string | undefined;
|
|
37
|
+
Value?: string | undefined;
|
|
38
38
|
}
|
|
39
39
|
export interface ProposedNetworkFunctionGroupChange {
|
|
40
|
-
Tags?: Tag[];
|
|
41
|
-
AttachmentPolicyRuleNumber?: number;
|
|
42
|
-
NetworkFunctionGroupName?: string;
|
|
40
|
+
Tags?: Tag[] | undefined;
|
|
41
|
+
AttachmentPolicyRuleNumber?: number | undefined;
|
|
42
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
43
43
|
}
|
|
44
44
|
export interface ProposedSegmentChange {
|
|
45
|
-
Tags?: Tag[];
|
|
46
|
-
AttachmentPolicyRuleNumber?: number;
|
|
47
|
-
SegmentName?: string;
|
|
45
|
+
Tags?: Tag[] | undefined;
|
|
46
|
+
AttachmentPolicyRuleNumber?: number | undefined;
|
|
47
|
+
SegmentName?: string | undefined;
|
|
48
48
|
}
|
|
49
49
|
export declare const AttachmentState: {
|
|
50
50
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -60,26 +60,28 @@ export declare const AttachmentState: {
|
|
|
60
60
|
export type AttachmentState =
|
|
61
61
|
(typeof AttachmentState)[keyof typeof AttachmentState];
|
|
62
62
|
export interface Attachment {
|
|
63
|
-
CoreNetworkId?: string;
|
|
64
|
-
CoreNetworkArn?: string;
|
|
65
|
-
AttachmentId?: string;
|
|
66
|
-
OwnerAccountId?: string;
|
|
67
|
-
AttachmentType?: AttachmentType;
|
|
68
|
-
State?: AttachmentState;
|
|
69
|
-
EdgeLocation?: string;
|
|
70
|
-
ResourceArn?: string;
|
|
71
|
-
AttachmentPolicyRuleNumber?: number;
|
|
72
|
-
SegmentName?: string;
|
|
73
|
-
NetworkFunctionGroupName?: string;
|
|
74
|
-
Tags?: Tag[];
|
|
75
|
-
ProposedSegmentChange?: ProposedSegmentChange;
|
|
76
|
-
ProposedNetworkFunctionGroupChange?:
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
63
|
+
CoreNetworkId?: string | undefined;
|
|
64
|
+
CoreNetworkArn?: string | undefined;
|
|
65
|
+
AttachmentId?: string | undefined;
|
|
66
|
+
OwnerAccountId?: string | undefined;
|
|
67
|
+
AttachmentType?: AttachmentType | undefined;
|
|
68
|
+
State?: AttachmentState | undefined;
|
|
69
|
+
EdgeLocation?: string | undefined;
|
|
70
|
+
ResourceArn?: string | undefined;
|
|
71
|
+
AttachmentPolicyRuleNumber?: number | undefined;
|
|
72
|
+
SegmentName?: string | undefined;
|
|
73
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
74
|
+
Tags?: Tag[] | undefined;
|
|
75
|
+
ProposedSegmentChange?: ProposedSegmentChange | undefined;
|
|
76
|
+
ProposedNetworkFunctionGroupChange?:
|
|
77
|
+
| ProposedNetworkFunctionGroupChange
|
|
78
|
+
| undefined;
|
|
79
|
+
CreatedAt?: Date | undefined;
|
|
80
|
+
UpdatedAt?: Date | undefined;
|
|
81
|
+
LastModificationErrors?: AttachmentError[] | undefined;
|
|
80
82
|
}
|
|
81
83
|
export interface AcceptAttachmentResponse {
|
|
82
|
-
Attachment?: Attachment;
|
|
84
|
+
Attachment?: Attachment | undefined;
|
|
83
85
|
}
|
|
84
86
|
export declare class AccessDeniedException extends __BaseException {
|
|
85
87
|
readonly name: "AccessDeniedException";
|
|
@@ -101,7 +103,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
101
103
|
readonly name: "InternalServerException";
|
|
102
104
|
readonly $fault: "server";
|
|
103
105
|
Message: string | undefined;
|
|
104
|
-
RetryAfterSeconds?: number;
|
|
106
|
+
RetryAfterSeconds?: number | undefined;
|
|
105
107
|
constructor(
|
|
106
108
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
107
109
|
);
|
|
@@ -112,7 +114,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
112
114
|
Message: string | undefined;
|
|
113
115
|
ResourceId: string | undefined;
|
|
114
116
|
ResourceType: string | undefined;
|
|
115
|
-
Context?: Record<string, string
|
|
117
|
+
Context?: Record<string, string> | undefined;
|
|
116
118
|
constructor(
|
|
117
119
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
118
120
|
);
|
|
@@ -121,7 +123,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
121
123
|
readonly name: "ThrottlingException";
|
|
122
124
|
readonly $fault: "client";
|
|
123
125
|
Message: string | undefined;
|
|
124
|
-
RetryAfterSeconds?: number;
|
|
126
|
+
RetryAfterSeconds?: number | undefined;
|
|
125
127
|
constructor(
|
|
126
128
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
127
129
|
);
|
|
@@ -142,21 +144,21 @@ export declare class ValidationException extends __BaseException {
|
|
|
142
144
|
readonly name: "ValidationException";
|
|
143
145
|
readonly $fault: "client";
|
|
144
146
|
Message: string | undefined;
|
|
145
|
-
Reason?: ValidationExceptionReason;
|
|
146
|
-
Fields?: ValidationExceptionField[];
|
|
147
|
+
Reason?: ValidationExceptionReason | undefined;
|
|
148
|
+
Fields?: ValidationExceptionField[] | undefined;
|
|
147
149
|
constructor(
|
|
148
150
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
149
151
|
);
|
|
150
152
|
}
|
|
151
153
|
export interface AccountStatus {
|
|
152
|
-
AccountId?: string;
|
|
153
|
-
SLRDeploymentStatus?: string;
|
|
154
|
+
AccountId?: string | undefined;
|
|
155
|
+
SLRDeploymentStatus?: string | undefined;
|
|
154
156
|
}
|
|
155
157
|
export interface AssociateConnectPeerRequest {
|
|
156
158
|
GlobalNetworkId: string | undefined;
|
|
157
159
|
ConnectPeerId: string | undefined;
|
|
158
160
|
DeviceId: string | undefined;
|
|
159
|
-
LinkId?: string;
|
|
161
|
+
LinkId?: string | undefined;
|
|
160
162
|
}
|
|
161
163
|
export declare const ConnectPeerAssociationState: {
|
|
162
164
|
readonly available: "AVAILABLE";
|
|
@@ -167,21 +169,21 @@ export declare const ConnectPeerAssociationState: {
|
|
|
167
169
|
export type ConnectPeerAssociationState =
|
|
168
170
|
(typeof ConnectPeerAssociationState)[keyof typeof ConnectPeerAssociationState];
|
|
169
171
|
export interface ConnectPeerAssociation {
|
|
170
|
-
ConnectPeerId?: string;
|
|
171
|
-
GlobalNetworkId?: string;
|
|
172
|
-
DeviceId?: string;
|
|
173
|
-
LinkId?: string;
|
|
174
|
-
State?: ConnectPeerAssociationState;
|
|
172
|
+
ConnectPeerId?: string | undefined;
|
|
173
|
+
GlobalNetworkId?: string | undefined;
|
|
174
|
+
DeviceId?: string | undefined;
|
|
175
|
+
LinkId?: string | undefined;
|
|
176
|
+
State?: ConnectPeerAssociationState | undefined;
|
|
175
177
|
}
|
|
176
178
|
export interface AssociateConnectPeerResponse {
|
|
177
|
-
ConnectPeerAssociation?: ConnectPeerAssociation;
|
|
179
|
+
ConnectPeerAssociation?: ConnectPeerAssociation | undefined;
|
|
178
180
|
}
|
|
179
181
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
180
182
|
readonly name: "ServiceQuotaExceededException";
|
|
181
183
|
readonly $fault: "client";
|
|
182
184
|
Message: string | undefined;
|
|
183
|
-
ResourceId?: string;
|
|
184
|
-
ResourceType?: string;
|
|
185
|
+
ResourceId?: string | undefined;
|
|
186
|
+
ResourceType?: string | undefined;
|
|
185
187
|
LimitCode: string | undefined;
|
|
186
188
|
ServiceCode: string | undefined;
|
|
187
189
|
constructor(
|
|
@@ -192,7 +194,7 @@ export interface AssociateCustomerGatewayRequest {
|
|
|
192
194
|
CustomerGatewayArn: string | undefined;
|
|
193
195
|
GlobalNetworkId: string | undefined;
|
|
194
196
|
DeviceId: string | undefined;
|
|
195
|
-
LinkId?: string;
|
|
197
|
+
LinkId?: string | undefined;
|
|
196
198
|
}
|
|
197
199
|
export declare const CustomerGatewayAssociationState: {
|
|
198
200
|
readonly available: "AVAILABLE";
|
|
@@ -203,14 +205,14 @@ export declare const CustomerGatewayAssociationState: {
|
|
|
203
205
|
export type CustomerGatewayAssociationState =
|
|
204
206
|
(typeof CustomerGatewayAssociationState)[keyof typeof CustomerGatewayAssociationState];
|
|
205
207
|
export interface CustomerGatewayAssociation {
|
|
206
|
-
CustomerGatewayArn?: string;
|
|
207
|
-
GlobalNetworkId?: string;
|
|
208
|
-
DeviceId?: string;
|
|
209
|
-
LinkId?: string;
|
|
210
|
-
State?: CustomerGatewayAssociationState;
|
|
208
|
+
CustomerGatewayArn?: string | undefined;
|
|
209
|
+
GlobalNetworkId?: string | undefined;
|
|
210
|
+
DeviceId?: string | undefined;
|
|
211
|
+
LinkId?: string | undefined;
|
|
212
|
+
State?: CustomerGatewayAssociationState | undefined;
|
|
211
213
|
}
|
|
212
214
|
export interface AssociateCustomerGatewayResponse {
|
|
213
|
-
CustomerGatewayAssociation?: CustomerGatewayAssociation;
|
|
215
|
+
CustomerGatewayAssociation?: CustomerGatewayAssociation | undefined;
|
|
214
216
|
}
|
|
215
217
|
export interface AssociateLinkRequest {
|
|
216
218
|
GlobalNetworkId: string | undefined;
|
|
@@ -226,19 +228,19 @@ export declare const LinkAssociationState: {
|
|
|
226
228
|
export type LinkAssociationState =
|
|
227
229
|
(typeof LinkAssociationState)[keyof typeof LinkAssociationState];
|
|
228
230
|
export interface LinkAssociation {
|
|
229
|
-
GlobalNetworkId?: string;
|
|
230
|
-
DeviceId?: string;
|
|
231
|
-
LinkId?: string;
|
|
232
|
-
LinkAssociationState?: LinkAssociationState;
|
|
231
|
+
GlobalNetworkId?: string | undefined;
|
|
232
|
+
DeviceId?: string | undefined;
|
|
233
|
+
LinkId?: string | undefined;
|
|
234
|
+
LinkAssociationState?: LinkAssociationState | undefined;
|
|
233
235
|
}
|
|
234
236
|
export interface AssociateLinkResponse {
|
|
235
|
-
LinkAssociation?: LinkAssociation;
|
|
237
|
+
LinkAssociation?: LinkAssociation | undefined;
|
|
236
238
|
}
|
|
237
239
|
export interface AssociateTransitGatewayConnectPeerRequest {
|
|
238
240
|
GlobalNetworkId: string | undefined;
|
|
239
241
|
TransitGatewayConnectPeerArn: string | undefined;
|
|
240
242
|
DeviceId: string | undefined;
|
|
241
|
-
LinkId?: string;
|
|
243
|
+
LinkId?: string | undefined;
|
|
242
244
|
}
|
|
243
245
|
export declare const TransitGatewayConnectPeerAssociationState: {
|
|
244
246
|
readonly available: "AVAILABLE";
|
|
@@ -249,25 +251,27 @@ export declare const TransitGatewayConnectPeerAssociationState: {
|
|
|
249
251
|
export type TransitGatewayConnectPeerAssociationState =
|
|
250
252
|
(typeof TransitGatewayConnectPeerAssociationState)[keyof typeof TransitGatewayConnectPeerAssociationState];
|
|
251
253
|
export interface TransitGatewayConnectPeerAssociation {
|
|
252
|
-
TransitGatewayConnectPeerArn?: string;
|
|
253
|
-
GlobalNetworkId?: string;
|
|
254
|
-
DeviceId?: string;
|
|
255
|
-
LinkId?: string;
|
|
256
|
-
State?: TransitGatewayConnectPeerAssociationState;
|
|
254
|
+
TransitGatewayConnectPeerArn?: string | undefined;
|
|
255
|
+
GlobalNetworkId?: string | undefined;
|
|
256
|
+
DeviceId?: string | undefined;
|
|
257
|
+
LinkId?: string | undefined;
|
|
258
|
+
State?: TransitGatewayConnectPeerAssociationState | undefined;
|
|
257
259
|
}
|
|
258
260
|
export interface AssociateTransitGatewayConnectPeerResponse {
|
|
259
|
-
TransitGatewayConnectPeerAssociation?:
|
|
261
|
+
TransitGatewayConnectPeerAssociation?:
|
|
262
|
+
| TransitGatewayConnectPeerAssociation
|
|
263
|
+
| undefined;
|
|
260
264
|
}
|
|
261
265
|
export interface AWSLocation {
|
|
262
|
-
Zone?: string;
|
|
263
|
-
SubnetArn?: string;
|
|
266
|
+
Zone?: string | undefined;
|
|
267
|
+
SubnetArn?: string | undefined;
|
|
264
268
|
}
|
|
265
269
|
export interface Bandwidth {
|
|
266
|
-
UploadSpeed?: number;
|
|
267
|
-
DownloadSpeed?: number;
|
|
270
|
+
UploadSpeed?: number | undefined;
|
|
271
|
+
DownloadSpeed?: number | undefined;
|
|
268
272
|
}
|
|
269
273
|
export interface BgpOptions {
|
|
270
|
-
PeerAsn?: number;
|
|
274
|
+
PeerAsn?: number | undefined;
|
|
271
275
|
}
|
|
272
276
|
export declare const ChangeAction: {
|
|
273
277
|
readonly ADD: "ADD";
|
|
@@ -312,12 +316,12 @@ export declare const TunnelProtocol: {
|
|
|
312
316
|
export type TunnelProtocol =
|
|
313
317
|
(typeof TunnelProtocol)[keyof typeof TunnelProtocol];
|
|
314
318
|
export interface ConnectAttachmentOptions {
|
|
315
|
-
Protocol?: TunnelProtocol;
|
|
319
|
+
Protocol?: TunnelProtocol | undefined;
|
|
316
320
|
}
|
|
317
321
|
export interface ConnectAttachment {
|
|
318
|
-
Attachment?: Attachment;
|
|
319
|
-
TransportAttachmentId?: string;
|
|
320
|
-
Options?: ConnectAttachmentOptions;
|
|
322
|
+
Attachment?: Attachment | undefined;
|
|
323
|
+
TransportAttachmentId?: string | undefined;
|
|
324
|
+
Options?: ConnectAttachmentOptions | undefined;
|
|
321
325
|
}
|
|
322
326
|
export declare const ConnectionState: {
|
|
323
327
|
readonly available: "AVAILABLE";
|
|
@@ -328,17 +332,17 @@ export declare const ConnectionState: {
|
|
|
328
332
|
export type ConnectionState =
|
|
329
333
|
(typeof ConnectionState)[keyof typeof ConnectionState];
|
|
330
334
|
export interface Connection {
|
|
331
|
-
ConnectionId?: string;
|
|
332
|
-
ConnectionArn?: string;
|
|
333
|
-
GlobalNetworkId?: string;
|
|
334
|
-
DeviceId?: string;
|
|
335
|
-
ConnectedDeviceId?: string;
|
|
336
|
-
LinkId?: string;
|
|
337
|
-
ConnectedLinkId?: string;
|
|
338
|
-
Description?: string;
|
|
339
|
-
CreatedAt?: Date;
|
|
340
|
-
State?: ConnectionState;
|
|
341
|
-
Tags?: Tag[];
|
|
335
|
+
ConnectionId?: string | undefined;
|
|
336
|
+
ConnectionArn?: string | undefined;
|
|
337
|
+
GlobalNetworkId?: string | undefined;
|
|
338
|
+
DeviceId?: string | undefined;
|
|
339
|
+
ConnectedDeviceId?: string | undefined;
|
|
340
|
+
LinkId?: string | undefined;
|
|
341
|
+
ConnectedLinkId?: string | undefined;
|
|
342
|
+
Description?: string | undefined;
|
|
343
|
+
CreatedAt?: Date | undefined;
|
|
344
|
+
State?: ConnectionState | undefined;
|
|
345
|
+
Tags?: Tag[] | undefined;
|
|
342
346
|
}
|
|
343
347
|
export declare const ConnectionStatus: {
|
|
344
348
|
readonly DOWN: "DOWN";
|
|
@@ -353,22 +357,22 @@ export declare const ConnectionType: {
|
|
|
353
357
|
export type ConnectionType =
|
|
354
358
|
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
355
359
|
export interface ConnectionHealth {
|
|
356
|
-
Type?: ConnectionType;
|
|
357
|
-
Status?: ConnectionStatus;
|
|
358
|
-
Timestamp?: Date;
|
|
360
|
+
Type?: ConnectionType | undefined;
|
|
361
|
+
Status?: ConnectionStatus | undefined;
|
|
362
|
+
Timestamp?: Date | undefined;
|
|
359
363
|
}
|
|
360
364
|
export interface ConnectPeerBgpConfiguration {
|
|
361
|
-
CoreNetworkAsn?: number;
|
|
362
|
-
PeerAsn?: number;
|
|
363
|
-
CoreNetworkAddress?: string;
|
|
364
|
-
PeerAddress?: string;
|
|
365
|
+
CoreNetworkAsn?: number | undefined;
|
|
366
|
+
PeerAsn?: number | undefined;
|
|
367
|
+
CoreNetworkAddress?: string | undefined;
|
|
368
|
+
PeerAddress?: string | undefined;
|
|
365
369
|
}
|
|
366
370
|
export interface ConnectPeerConfiguration {
|
|
367
|
-
CoreNetworkAddress?: string;
|
|
368
|
-
PeerAddress?: string;
|
|
369
|
-
InsideCidrBlocks?: string[];
|
|
370
|
-
Protocol?: TunnelProtocol;
|
|
371
|
-
BgpConfigurations?: ConnectPeerBgpConfiguration[];
|
|
371
|
+
CoreNetworkAddress?: string | undefined;
|
|
372
|
+
PeerAddress?: string | undefined;
|
|
373
|
+
InsideCidrBlocks?: string[] | undefined;
|
|
374
|
+
Protocol?: TunnelProtocol | undefined;
|
|
375
|
+
BgpConfigurations?: ConnectPeerBgpConfiguration[] | undefined;
|
|
372
376
|
}
|
|
373
377
|
export declare const ConnectPeerErrorCode: {
|
|
374
378
|
readonly EDGE_LOCATION_NO_FREE_IPS: "EDGE_LOCATION_NO_FREE_IPS";
|
|
@@ -381,10 +385,10 @@ export declare const ConnectPeerErrorCode: {
|
|
|
381
385
|
export type ConnectPeerErrorCode =
|
|
382
386
|
(typeof ConnectPeerErrorCode)[keyof typeof ConnectPeerErrorCode];
|
|
383
387
|
export interface ConnectPeerError {
|
|
384
|
-
Code?: ConnectPeerErrorCode;
|
|
385
|
-
Message?: string;
|
|
386
|
-
ResourceArn?: string;
|
|
387
|
-
RequestId?: string;
|
|
388
|
+
Code?: ConnectPeerErrorCode | undefined;
|
|
389
|
+
Message?: string | undefined;
|
|
390
|
+
ResourceArn?: string | undefined;
|
|
391
|
+
RequestId?: string | undefined;
|
|
388
392
|
}
|
|
389
393
|
export declare const ConnectPeerState: {
|
|
390
394
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -395,45 +399,45 @@ export declare const ConnectPeerState: {
|
|
|
395
399
|
export type ConnectPeerState =
|
|
396
400
|
(typeof ConnectPeerState)[keyof typeof ConnectPeerState];
|
|
397
401
|
export interface ConnectPeer {
|
|
398
|
-
CoreNetworkId?: string;
|
|
399
|
-
ConnectAttachmentId?: string;
|
|
400
|
-
ConnectPeerId?: string;
|
|
401
|
-
EdgeLocation?: string;
|
|
402
|
-
State?: ConnectPeerState;
|
|
403
|
-
CreatedAt?: Date;
|
|
404
|
-
Configuration?: ConnectPeerConfiguration;
|
|
405
|
-
Tags?: Tag[];
|
|
406
|
-
SubnetArn?: string;
|
|
407
|
-
LastModificationErrors?: ConnectPeerError[];
|
|
402
|
+
CoreNetworkId?: string | undefined;
|
|
403
|
+
ConnectAttachmentId?: string | undefined;
|
|
404
|
+
ConnectPeerId?: string | undefined;
|
|
405
|
+
EdgeLocation?: string | undefined;
|
|
406
|
+
State?: ConnectPeerState | undefined;
|
|
407
|
+
CreatedAt?: Date | undefined;
|
|
408
|
+
Configuration?: ConnectPeerConfiguration | undefined;
|
|
409
|
+
Tags?: Tag[] | undefined;
|
|
410
|
+
SubnetArn?: string | undefined;
|
|
411
|
+
LastModificationErrors?: ConnectPeerError[] | undefined;
|
|
408
412
|
}
|
|
409
413
|
export interface ConnectPeerSummary {
|
|
410
|
-
CoreNetworkId?: string;
|
|
411
|
-
ConnectAttachmentId?: string;
|
|
412
|
-
ConnectPeerId?: string;
|
|
413
|
-
EdgeLocation?: string;
|
|
414
|
-
ConnectPeerState?: ConnectPeerState;
|
|
415
|
-
CreatedAt?: Date;
|
|
416
|
-
Tags?: Tag[];
|
|
417
|
-
SubnetArn?: string;
|
|
414
|
+
CoreNetworkId?: string | undefined;
|
|
415
|
+
ConnectAttachmentId?: string | undefined;
|
|
416
|
+
ConnectPeerId?: string | undefined;
|
|
417
|
+
EdgeLocation?: string | undefined;
|
|
418
|
+
ConnectPeerState?: ConnectPeerState | undefined;
|
|
419
|
+
CreatedAt?: Date | undefined;
|
|
420
|
+
Tags?: Tag[] | undefined;
|
|
421
|
+
SubnetArn?: string | undefined;
|
|
418
422
|
}
|
|
419
423
|
export interface CoreNetworkEdge {
|
|
420
|
-
EdgeLocation?: string;
|
|
421
|
-
Asn?: number;
|
|
422
|
-
InsideCidrBlocks?: string[];
|
|
424
|
+
EdgeLocation?: string | undefined;
|
|
425
|
+
Asn?: number | undefined;
|
|
426
|
+
InsideCidrBlocks?: string[] | undefined;
|
|
423
427
|
}
|
|
424
428
|
export interface ServiceInsertionSegments {
|
|
425
|
-
SendVia?: string[];
|
|
426
|
-
SendTo?: string[];
|
|
429
|
+
SendVia?: string[] | undefined;
|
|
430
|
+
SendTo?: string[] | undefined;
|
|
427
431
|
}
|
|
428
432
|
export interface CoreNetworkNetworkFunctionGroup {
|
|
429
|
-
Name?: string;
|
|
430
|
-
EdgeLocations?: string[];
|
|
431
|
-
Segments?: ServiceInsertionSegments;
|
|
433
|
+
Name?: string | undefined;
|
|
434
|
+
EdgeLocations?: string[] | undefined;
|
|
435
|
+
Segments?: ServiceInsertionSegments | undefined;
|
|
432
436
|
}
|
|
433
437
|
export interface CoreNetworkSegment {
|
|
434
|
-
Name?: string;
|
|
435
|
-
EdgeLocations?: string[];
|
|
436
|
-
SharedSegments?: string[];
|
|
438
|
+
Name?: string | undefined;
|
|
439
|
+
EdgeLocations?: string[] | undefined;
|
|
440
|
+
SharedSegments?: string[] | undefined;
|
|
437
441
|
}
|
|
438
442
|
export declare const CoreNetworkState: {
|
|
439
443
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -444,16 +448,16 @@ export declare const CoreNetworkState: {
|
|
|
444
448
|
export type CoreNetworkState =
|
|
445
449
|
(typeof CoreNetworkState)[keyof typeof CoreNetworkState];
|
|
446
450
|
export interface CoreNetwork {
|
|
447
|
-
GlobalNetworkId?: string;
|
|
448
|
-
CoreNetworkId?: string;
|
|
449
|
-
CoreNetworkArn?: string;
|
|
450
|
-
Description?: string;
|
|
451
|
-
CreatedAt?: Date;
|
|
452
|
-
State?: CoreNetworkState;
|
|
453
|
-
Segments?: CoreNetworkSegment[];
|
|
454
|
-
NetworkFunctionGroups?: CoreNetworkNetworkFunctionGroup[];
|
|
455
|
-
Edges?: CoreNetworkEdge[];
|
|
456
|
-
Tags?: Tag[];
|
|
451
|
+
GlobalNetworkId?: string | undefined;
|
|
452
|
+
CoreNetworkId?: string | undefined;
|
|
453
|
+
CoreNetworkArn?: string | undefined;
|
|
454
|
+
Description?: string | undefined;
|
|
455
|
+
CreatedAt?: Date | undefined;
|
|
456
|
+
State?: CoreNetworkState | undefined;
|
|
457
|
+
Segments?: CoreNetworkSegment[] | undefined;
|
|
458
|
+
NetworkFunctionGroups?: CoreNetworkNetworkFunctionGroup[] | undefined;
|
|
459
|
+
Edges?: CoreNetworkEdge[] | undefined;
|
|
460
|
+
Tags?: Tag[] | undefined;
|
|
457
461
|
}
|
|
458
462
|
export declare const SegmentActionServiceInsertion: {
|
|
459
463
|
readonly SEND_TO: "send-to";
|
|
@@ -467,63 +471,63 @@ export declare const SendViaMode: {
|
|
|
467
471
|
};
|
|
468
472
|
export type SendViaMode = (typeof SendViaMode)[keyof typeof SendViaMode];
|
|
469
473
|
export interface NetworkFunctionGroup {
|
|
470
|
-
Name?: string;
|
|
474
|
+
Name?: string | undefined;
|
|
471
475
|
}
|
|
472
476
|
export interface EdgeOverride {
|
|
473
|
-
EdgeSets?: string[][];
|
|
474
|
-
UseEdge?: string;
|
|
477
|
+
EdgeSets?: string[][] | undefined;
|
|
478
|
+
UseEdge?: string | undefined;
|
|
475
479
|
}
|
|
476
480
|
export interface Via {
|
|
477
|
-
NetworkFunctionGroups?: NetworkFunctionGroup[];
|
|
478
|
-
WithEdgeOverrides?: EdgeOverride[];
|
|
481
|
+
NetworkFunctionGroups?: NetworkFunctionGroup[] | undefined;
|
|
482
|
+
WithEdgeOverrides?: EdgeOverride[] | undefined;
|
|
479
483
|
}
|
|
480
484
|
export interface WhenSentTo {
|
|
481
|
-
WhenSentToSegmentsList?: string[];
|
|
485
|
+
WhenSentToSegmentsList?: string[] | undefined;
|
|
482
486
|
}
|
|
483
487
|
export interface ServiceInsertionAction {
|
|
484
|
-
Action?: SegmentActionServiceInsertion;
|
|
485
|
-
Mode?: SendViaMode;
|
|
486
|
-
WhenSentTo?: WhenSentTo;
|
|
487
|
-
Via?: Via;
|
|
488
|
+
Action?: SegmentActionServiceInsertion | undefined;
|
|
489
|
+
Mode?: SendViaMode | undefined;
|
|
490
|
+
WhenSentTo?: WhenSentTo | undefined;
|
|
491
|
+
Via?: Via | undefined;
|
|
488
492
|
}
|
|
489
493
|
export interface CoreNetworkChangeValues {
|
|
490
|
-
SegmentName?: string;
|
|
491
|
-
NetworkFunctionGroupName?: string;
|
|
492
|
-
EdgeLocations?: string[];
|
|
493
|
-
Asn?: number;
|
|
494
|
-
Cidr?: string;
|
|
495
|
-
DestinationIdentifier?: string;
|
|
496
|
-
InsideCidrBlocks?: string[];
|
|
497
|
-
SharedSegments?: string[];
|
|
498
|
-
ServiceInsertionActions?: ServiceInsertionAction[];
|
|
494
|
+
SegmentName?: string | undefined;
|
|
495
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
496
|
+
EdgeLocations?: string[] | undefined;
|
|
497
|
+
Asn?: number | undefined;
|
|
498
|
+
Cidr?: string | undefined;
|
|
499
|
+
DestinationIdentifier?: string | undefined;
|
|
500
|
+
InsideCidrBlocks?: string[] | undefined;
|
|
501
|
+
SharedSegments?: string[] | undefined;
|
|
502
|
+
ServiceInsertionActions?: ServiceInsertionAction[] | undefined;
|
|
499
503
|
}
|
|
500
504
|
export interface CoreNetworkChange {
|
|
501
|
-
Type?: ChangeType;
|
|
502
|
-
Action?: ChangeAction;
|
|
503
|
-
Identifier?: string;
|
|
504
|
-
PreviousValues?: CoreNetworkChangeValues;
|
|
505
|
-
NewValues?: CoreNetworkChangeValues;
|
|
506
|
-
IdentifierPath?: string;
|
|
505
|
+
Type?: ChangeType | undefined;
|
|
506
|
+
Action?: ChangeAction | undefined;
|
|
507
|
+
Identifier?: string | undefined;
|
|
508
|
+
PreviousValues?: CoreNetworkChangeValues | undefined;
|
|
509
|
+
NewValues?: CoreNetworkChangeValues | undefined;
|
|
510
|
+
IdentifierPath?: string | undefined;
|
|
507
511
|
}
|
|
508
512
|
export interface CoreNetworkChangeEventValues {
|
|
509
|
-
EdgeLocation?: string;
|
|
510
|
-
SegmentName?: string;
|
|
511
|
-
NetworkFunctionGroupName?: string;
|
|
512
|
-
AttachmentId?: string;
|
|
513
|
-
Cidr?: string;
|
|
513
|
+
EdgeLocation?: string | undefined;
|
|
514
|
+
SegmentName?: string | undefined;
|
|
515
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
516
|
+
AttachmentId?: string | undefined;
|
|
517
|
+
Cidr?: string | undefined;
|
|
514
518
|
}
|
|
515
519
|
export interface CoreNetworkChangeEvent {
|
|
516
|
-
Type?: ChangeType;
|
|
517
|
-
Action?: ChangeAction;
|
|
518
|
-
IdentifierPath?: string;
|
|
519
|
-
EventTime?: Date;
|
|
520
|
-
Status?: ChangeStatus;
|
|
521
|
-
Values?: CoreNetworkChangeEventValues;
|
|
520
|
+
Type?: ChangeType | undefined;
|
|
521
|
+
Action?: ChangeAction | undefined;
|
|
522
|
+
IdentifierPath?: string | undefined;
|
|
523
|
+
EventTime?: Date | undefined;
|
|
524
|
+
Status?: ChangeStatus | undefined;
|
|
525
|
+
Values?: CoreNetworkChangeEventValues | undefined;
|
|
522
526
|
}
|
|
523
527
|
export interface CoreNetworkNetworkFunctionGroupIdentifier {
|
|
524
|
-
CoreNetworkId?: string;
|
|
525
|
-
NetworkFunctionGroupName?: string;
|
|
526
|
-
EdgeLocation?: string;
|
|
528
|
+
CoreNetworkId?: string | undefined;
|
|
529
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
530
|
+
EdgeLocation?: string | undefined;
|
|
527
531
|
}
|
|
528
532
|
export declare const CoreNetworkPolicyAlias: {
|
|
529
533
|
readonly LATEST: "LATEST";
|
|
@@ -534,111 +538,111 @@ export type CoreNetworkPolicyAlias =
|
|
|
534
538
|
export interface CoreNetworkPolicyError {
|
|
535
539
|
ErrorCode: string | undefined;
|
|
536
540
|
Message: string | undefined;
|
|
537
|
-
Path?: string;
|
|
541
|
+
Path?: string | undefined;
|
|
538
542
|
}
|
|
539
543
|
export interface CoreNetworkPolicy {
|
|
540
|
-
CoreNetworkId?: string;
|
|
541
|
-
PolicyVersionId?: number;
|
|
542
|
-
Alias?: CoreNetworkPolicyAlias;
|
|
543
|
-
Description?: string;
|
|
544
|
-
CreatedAt?: Date;
|
|
545
|
-
ChangeSetState?: ChangeSetState;
|
|
546
|
-
PolicyErrors?: CoreNetworkPolicyError[];
|
|
547
|
-
PolicyDocument?: __LazyJsonString | string;
|
|
544
|
+
CoreNetworkId?: string | undefined;
|
|
545
|
+
PolicyVersionId?: number | undefined;
|
|
546
|
+
Alias?: CoreNetworkPolicyAlias | undefined;
|
|
547
|
+
Description?: string | undefined;
|
|
548
|
+
CreatedAt?: Date | undefined;
|
|
549
|
+
ChangeSetState?: ChangeSetState | undefined;
|
|
550
|
+
PolicyErrors?: CoreNetworkPolicyError[] | undefined;
|
|
551
|
+
PolicyDocument?: __LazyJsonString | string | undefined;
|
|
548
552
|
}
|
|
549
553
|
export declare class CoreNetworkPolicyException extends __BaseException {
|
|
550
554
|
readonly name: "CoreNetworkPolicyException";
|
|
551
555
|
readonly $fault: "client";
|
|
552
556
|
Message: string | undefined;
|
|
553
|
-
Errors?: CoreNetworkPolicyError[];
|
|
557
|
+
Errors?: CoreNetworkPolicyError[] | undefined;
|
|
554
558
|
constructor(
|
|
555
559
|
opts: __ExceptionOptionType<CoreNetworkPolicyException, __BaseException>
|
|
556
560
|
);
|
|
557
561
|
}
|
|
558
562
|
export interface CoreNetworkPolicyVersion {
|
|
559
|
-
CoreNetworkId?: string;
|
|
560
|
-
PolicyVersionId?: number;
|
|
561
|
-
Alias?: CoreNetworkPolicyAlias;
|
|
562
|
-
Description?: string;
|
|
563
|
-
CreatedAt?: Date;
|
|
564
|
-
ChangeSetState?: ChangeSetState;
|
|
563
|
+
CoreNetworkId?: string | undefined;
|
|
564
|
+
PolicyVersionId?: number | undefined;
|
|
565
|
+
Alias?: CoreNetworkPolicyAlias | undefined;
|
|
566
|
+
Description?: string | undefined;
|
|
567
|
+
CreatedAt?: Date | undefined;
|
|
568
|
+
ChangeSetState?: ChangeSetState | undefined;
|
|
565
569
|
}
|
|
566
570
|
export interface CoreNetworkSegmentEdgeIdentifier {
|
|
567
|
-
CoreNetworkId?: string;
|
|
568
|
-
SegmentName?: string;
|
|
569
|
-
EdgeLocation?: string;
|
|
571
|
+
CoreNetworkId?: string | undefined;
|
|
572
|
+
SegmentName?: string | undefined;
|
|
573
|
+
EdgeLocation?: string | undefined;
|
|
570
574
|
}
|
|
571
575
|
export interface CoreNetworkSummary {
|
|
572
|
-
CoreNetworkId?: string;
|
|
573
|
-
CoreNetworkArn?: string;
|
|
574
|
-
GlobalNetworkId?: string;
|
|
575
|
-
OwnerAccountId?: string;
|
|
576
|
-
State?: CoreNetworkState;
|
|
577
|
-
Description?: string;
|
|
578
|
-
Tags?: Tag[];
|
|
576
|
+
CoreNetworkId?: string | undefined;
|
|
577
|
+
CoreNetworkArn?: string | undefined;
|
|
578
|
+
GlobalNetworkId?: string | undefined;
|
|
579
|
+
OwnerAccountId?: string | undefined;
|
|
580
|
+
State?: CoreNetworkState | undefined;
|
|
581
|
+
Description?: string | undefined;
|
|
582
|
+
Tags?: Tag[] | undefined;
|
|
579
583
|
}
|
|
580
584
|
export interface CreateConnectAttachmentRequest {
|
|
581
585
|
CoreNetworkId: string | undefined;
|
|
582
586
|
EdgeLocation: string | undefined;
|
|
583
587
|
TransportAttachmentId: string | undefined;
|
|
584
588
|
Options: ConnectAttachmentOptions | undefined;
|
|
585
|
-
Tags?: Tag[];
|
|
586
|
-
ClientToken?: string;
|
|
589
|
+
Tags?: Tag[] | undefined;
|
|
590
|
+
ClientToken?: string | undefined;
|
|
587
591
|
}
|
|
588
592
|
export interface CreateConnectAttachmentResponse {
|
|
589
|
-
ConnectAttachment?: ConnectAttachment;
|
|
593
|
+
ConnectAttachment?: ConnectAttachment | undefined;
|
|
590
594
|
}
|
|
591
595
|
export interface CreateConnectionRequest {
|
|
592
596
|
GlobalNetworkId: string | undefined;
|
|
593
597
|
DeviceId: string | undefined;
|
|
594
598
|
ConnectedDeviceId: string | undefined;
|
|
595
|
-
LinkId?: string;
|
|
596
|
-
ConnectedLinkId?: string;
|
|
597
|
-
Description?: string;
|
|
598
|
-
Tags?: Tag[];
|
|
599
|
+
LinkId?: string | undefined;
|
|
600
|
+
ConnectedLinkId?: string | undefined;
|
|
601
|
+
Description?: string | undefined;
|
|
602
|
+
Tags?: Tag[] | undefined;
|
|
599
603
|
}
|
|
600
604
|
export interface CreateConnectionResponse {
|
|
601
|
-
Connection?: Connection;
|
|
605
|
+
Connection?: Connection | undefined;
|
|
602
606
|
}
|
|
603
607
|
export interface CreateConnectPeerRequest {
|
|
604
608
|
ConnectAttachmentId: string | undefined;
|
|
605
|
-
CoreNetworkAddress?: string;
|
|
609
|
+
CoreNetworkAddress?: string | undefined;
|
|
606
610
|
PeerAddress: string | undefined;
|
|
607
|
-
BgpOptions?: BgpOptions;
|
|
608
|
-
InsideCidrBlocks?: string[];
|
|
609
|
-
Tags?: Tag[];
|
|
610
|
-
ClientToken?: string;
|
|
611
|
-
SubnetArn?: string;
|
|
611
|
+
BgpOptions?: BgpOptions | undefined;
|
|
612
|
+
InsideCidrBlocks?: string[] | undefined;
|
|
613
|
+
Tags?: Tag[] | undefined;
|
|
614
|
+
ClientToken?: string | undefined;
|
|
615
|
+
SubnetArn?: string | undefined;
|
|
612
616
|
}
|
|
613
617
|
export interface CreateConnectPeerResponse {
|
|
614
|
-
ConnectPeer?: ConnectPeer;
|
|
618
|
+
ConnectPeer?: ConnectPeer | undefined;
|
|
615
619
|
}
|
|
616
620
|
export interface CreateCoreNetworkRequest {
|
|
617
621
|
GlobalNetworkId: string | undefined;
|
|
618
|
-
Description?: string;
|
|
619
|
-
Tags?: Tag[];
|
|
620
|
-
PolicyDocument?: string;
|
|
621
|
-
ClientToken?: string;
|
|
622
|
+
Description?: string | undefined;
|
|
623
|
+
Tags?: Tag[] | undefined;
|
|
624
|
+
PolicyDocument?: string | undefined;
|
|
625
|
+
ClientToken?: string | undefined;
|
|
622
626
|
}
|
|
623
627
|
export interface CreateCoreNetworkResponse {
|
|
624
|
-
CoreNetwork?: CoreNetwork;
|
|
628
|
+
CoreNetwork?: CoreNetwork | undefined;
|
|
625
629
|
}
|
|
626
630
|
export interface Location {
|
|
627
|
-
Address?: string;
|
|
628
|
-
Latitude?: string;
|
|
629
|
-
Longitude?: string;
|
|
631
|
+
Address?: string | undefined;
|
|
632
|
+
Latitude?: string | undefined;
|
|
633
|
+
Longitude?: string | undefined;
|
|
630
634
|
}
|
|
631
635
|
export interface CreateDeviceRequest {
|
|
632
636
|
GlobalNetworkId: string | undefined;
|
|
633
|
-
AWSLocation?: AWSLocation;
|
|
634
|
-
Description?: string;
|
|
635
|
-
Type?: string;
|
|
636
|
-
Vendor?: string;
|
|
637
|
-
Model?: string;
|
|
638
|
-
SerialNumber?: string;
|
|
639
|
-
Location?: Location;
|
|
640
|
-
SiteId?: string;
|
|
641
|
-
Tags?: Tag[];
|
|
637
|
+
AWSLocation?: AWSLocation | undefined;
|
|
638
|
+
Description?: string | undefined;
|
|
639
|
+
Type?: string | undefined;
|
|
640
|
+
Vendor?: string | undefined;
|
|
641
|
+
Model?: string | undefined;
|
|
642
|
+
SerialNumber?: string | undefined;
|
|
643
|
+
Location?: Location | undefined;
|
|
644
|
+
SiteId?: string | undefined;
|
|
645
|
+
Tags?: Tag[] | undefined;
|
|
642
646
|
}
|
|
643
647
|
export declare const DeviceState: {
|
|
644
648
|
readonly available: "AVAILABLE";
|
|
@@ -648,27 +652,27 @@ export declare const DeviceState: {
|
|
|
648
652
|
};
|
|
649
653
|
export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
|
|
650
654
|
export interface Device {
|
|
651
|
-
DeviceId?: string;
|
|
652
|
-
DeviceArn?: string;
|
|
653
|
-
GlobalNetworkId?: string;
|
|
654
|
-
AWSLocation?: AWSLocation;
|
|
655
|
-
Description?: string;
|
|
656
|
-
Type?: string;
|
|
657
|
-
Vendor?: string;
|
|
658
|
-
Model?: string;
|
|
659
|
-
SerialNumber?: string;
|
|
660
|
-
Location?: Location;
|
|
661
|
-
SiteId?: string;
|
|
662
|
-
CreatedAt?: Date;
|
|
663
|
-
State?: DeviceState;
|
|
664
|
-
Tags?: Tag[];
|
|
655
|
+
DeviceId?: string | undefined;
|
|
656
|
+
DeviceArn?: string | undefined;
|
|
657
|
+
GlobalNetworkId?: string | undefined;
|
|
658
|
+
AWSLocation?: AWSLocation | undefined;
|
|
659
|
+
Description?: string | undefined;
|
|
660
|
+
Type?: string | undefined;
|
|
661
|
+
Vendor?: string | undefined;
|
|
662
|
+
Model?: string | undefined;
|
|
663
|
+
SerialNumber?: string | undefined;
|
|
664
|
+
Location?: Location | undefined;
|
|
665
|
+
SiteId?: string | undefined;
|
|
666
|
+
CreatedAt?: Date | undefined;
|
|
667
|
+
State?: DeviceState | undefined;
|
|
668
|
+
Tags?: Tag[] | undefined;
|
|
665
669
|
}
|
|
666
670
|
export interface CreateDeviceResponse {
|
|
667
|
-
Device?: Device;
|
|
671
|
+
Device?: Device | undefined;
|
|
668
672
|
}
|
|
669
673
|
export interface CreateGlobalNetworkRequest {
|
|
670
|
-
Description?: string;
|
|
671
|
-
Tags?: Tag[];
|
|
674
|
+
Description?: string | undefined;
|
|
675
|
+
Tags?: Tag[] | undefined;
|
|
672
676
|
}
|
|
673
677
|
export declare const GlobalNetworkState: {
|
|
674
678
|
readonly available: "AVAILABLE";
|
|
@@ -679,24 +683,24 @@ export declare const GlobalNetworkState: {
|
|
|
679
683
|
export type GlobalNetworkState =
|
|
680
684
|
(typeof GlobalNetworkState)[keyof typeof GlobalNetworkState];
|
|
681
685
|
export interface GlobalNetwork {
|
|
682
|
-
GlobalNetworkId?: string;
|
|
683
|
-
GlobalNetworkArn?: string;
|
|
684
|
-
Description?: string;
|
|
685
|
-
CreatedAt?: Date;
|
|
686
|
-
State?: GlobalNetworkState;
|
|
687
|
-
Tags?: Tag[];
|
|
686
|
+
GlobalNetworkId?: string | undefined;
|
|
687
|
+
GlobalNetworkArn?: string | undefined;
|
|
688
|
+
Description?: string | undefined;
|
|
689
|
+
CreatedAt?: Date | undefined;
|
|
690
|
+
State?: GlobalNetworkState | undefined;
|
|
691
|
+
Tags?: Tag[] | undefined;
|
|
688
692
|
}
|
|
689
693
|
export interface CreateGlobalNetworkResponse {
|
|
690
|
-
GlobalNetwork?: GlobalNetwork;
|
|
694
|
+
GlobalNetwork?: GlobalNetwork | undefined;
|
|
691
695
|
}
|
|
692
696
|
export interface CreateLinkRequest {
|
|
693
697
|
GlobalNetworkId: string | undefined;
|
|
694
|
-
Description?: string;
|
|
695
|
-
Type?: string;
|
|
698
|
+
Description?: string | undefined;
|
|
699
|
+
Type?: string | undefined;
|
|
696
700
|
Bandwidth: Bandwidth | undefined;
|
|
697
|
-
Provider?: string;
|
|
701
|
+
Provider?: string | undefined;
|
|
698
702
|
SiteId: string | undefined;
|
|
699
|
-
Tags?: Tag[];
|
|
703
|
+
Tags?: Tag[] | undefined;
|
|
700
704
|
}
|
|
701
705
|
export declare const LinkState: {
|
|
702
706
|
readonly available: "AVAILABLE";
|
|
@@ -706,26 +710,26 @@ export declare const LinkState: {
|
|
|
706
710
|
};
|
|
707
711
|
export type LinkState = (typeof LinkState)[keyof typeof LinkState];
|
|
708
712
|
export interface Link {
|
|
709
|
-
LinkId?: string;
|
|
710
|
-
LinkArn?: string;
|
|
711
|
-
GlobalNetworkId?: string;
|
|
712
|
-
SiteId?: string;
|
|
713
|
-
Description?: string;
|
|
714
|
-
Type?: string;
|
|
715
|
-
Bandwidth?: Bandwidth;
|
|
716
|
-
Provider?: string;
|
|
717
|
-
CreatedAt?: Date;
|
|
718
|
-
State?: LinkState;
|
|
719
|
-
Tags?: Tag[];
|
|
713
|
+
LinkId?: string | undefined;
|
|
714
|
+
LinkArn?: string | undefined;
|
|
715
|
+
GlobalNetworkId?: string | undefined;
|
|
716
|
+
SiteId?: string | undefined;
|
|
717
|
+
Description?: string | undefined;
|
|
718
|
+
Type?: string | undefined;
|
|
719
|
+
Bandwidth?: Bandwidth | undefined;
|
|
720
|
+
Provider?: string | undefined;
|
|
721
|
+
CreatedAt?: Date | undefined;
|
|
722
|
+
State?: LinkState | undefined;
|
|
723
|
+
Tags?: Tag[] | undefined;
|
|
720
724
|
}
|
|
721
725
|
export interface CreateLinkResponse {
|
|
722
|
-
Link?: Link;
|
|
726
|
+
Link?: Link | undefined;
|
|
723
727
|
}
|
|
724
728
|
export interface CreateSiteRequest {
|
|
725
729
|
GlobalNetworkId: string | undefined;
|
|
726
|
-
Description?: string;
|
|
727
|
-
Location?: Location;
|
|
728
|
-
Tags?: Tag[];
|
|
730
|
+
Description?: string | undefined;
|
|
731
|
+
Location?: Location | undefined;
|
|
732
|
+
Tags?: Tag[] | undefined;
|
|
729
733
|
}
|
|
730
734
|
export declare const SiteState: {
|
|
731
735
|
readonly available: "AVAILABLE";
|
|
@@ -735,36 +739,36 @@ export declare const SiteState: {
|
|
|
735
739
|
};
|
|
736
740
|
export type SiteState = (typeof SiteState)[keyof typeof SiteState];
|
|
737
741
|
export interface Site {
|
|
738
|
-
SiteId?: string;
|
|
739
|
-
SiteArn?: string;
|
|
740
|
-
GlobalNetworkId?: string;
|
|
741
|
-
Description?: string;
|
|
742
|
-
Location?: Location;
|
|
743
|
-
CreatedAt?: Date;
|
|
744
|
-
State?: SiteState;
|
|
745
|
-
Tags?: Tag[];
|
|
742
|
+
SiteId?: string | undefined;
|
|
743
|
+
SiteArn?: string | undefined;
|
|
744
|
+
GlobalNetworkId?: string | undefined;
|
|
745
|
+
Description?: string | undefined;
|
|
746
|
+
Location?: Location | undefined;
|
|
747
|
+
CreatedAt?: Date | undefined;
|
|
748
|
+
State?: SiteState | undefined;
|
|
749
|
+
Tags?: Tag[] | undefined;
|
|
746
750
|
}
|
|
747
751
|
export interface CreateSiteResponse {
|
|
748
|
-
Site?: Site;
|
|
752
|
+
Site?: Site | undefined;
|
|
749
753
|
}
|
|
750
754
|
export interface CreateSiteToSiteVpnAttachmentRequest {
|
|
751
755
|
CoreNetworkId: string | undefined;
|
|
752
756
|
VpnConnectionArn: string | undefined;
|
|
753
|
-
Tags?: Tag[];
|
|
754
|
-
ClientToken?: string;
|
|
757
|
+
Tags?: Tag[] | undefined;
|
|
758
|
+
ClientToken?: string | undefined;
|
|
755
759
|
}
|
|
756
760
|
export interface SiteToSiteVpnAttachment {
|
|
757
|
-
Attachment?: Attachment;
|
|
758
|
-
VpnConnectionArn?: string;
|
|
761
|
+
Attachment?: Attachment | undefined;
|
|
762
|
+
VpnConnectionArn?: string | undefined;
|
|
759
763
|
}
|
|
760
764
|
export interface CreateSiteToSiteVpnAttachmentResponse {
|
|
761
|
-
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment;
|
|
765
|
+
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment | undefined;
|
|
762
766
|
}
|
|
763
767
|
export interface CreateTransitGatewayPeeringRequest {
|
|
764
768
|
CoreNetworkId: string | undefined;
|
|
765
769
|
TransitGatewayArn: string | undefined;
|
|
766
|
-
Tags?: Tag[];
|
|
767
|
-
ClientToken?: string;
|
|
770
|
+
Tags?: Tag[] | undefined;
|
|
771
|
+
ClientToken?: string | undefined;
|
|
768
772
|
}
|
|
769
773
|
export declare const PeeringErrorCode: {
|
|
770
774
|
readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
|
|
@@ -777,14 +781,14 @@ export declare const PeeringErrorCode: {
|
|
|
777
781
|
export type PeeringErrorCode =
|
|
778
782
|
(typeof PeeringErrorCode)[keyof typeof PeeringErrorCode];
|
|
779
783
|
export interface PermissionsErrorContext {
|
|
780
|
-
MissingPermission?: string;
|
|
784
|
+
MissingPermission?: string | undefined;
|
|
781
785
|
}
|
|
782
786
|
export interface PeeringError {
|
|
783
|
-
Code?: PeeringErrorCode;
|
|
784
|
-
Message?: string;
|
|
785
|
-
ResourceArn?: string;
|
|
786
|
-
RequestId?: string;
|
|
787
|
-
MissingPermissionsContext?: PermissionsErrorContext;
|
|
787
|
+
Code?: PeeringErrorCode | undefined;
|
|
788
|
+
Message?: string | undefined;
|
|
789
|
+
ResourceArn?: string | undefined;
|
|
790
|
+
RequestId?: string | undefined;
|
|
791
|
+
MissingPermissionsContext?: PermissionsErrorContext | undefined;
|
|
788
792
|
}
|
|
789
793
|
export declare const PeeringType: {
|
|
790
794
|
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
@@ -798,117 +802,119 @@ export declare const PeeringState: {
|
|
|
798
802
|
};
|
|
799
803
|
export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
|
|
800
804
|
export interface Peering {
|
|
801
|
-
CoreNetworkId?: string;
|
|
802
|
-
CoreNetworkArn?: string;
|
|
803
|
-
PeeringId?: string;
|
|
804
|
-
OwnerAccountId?: string;
|
|
805
|
-
PeeringType?: PeeringType;
|
|
806
|
-
State?: PeeringState;
|
|
807
|
-
EdgeLocation?: string;
|
|
808
|
-
ResourceArn?: string;
|
|
809
|
-
Tags?: Tag[];
|
|
810
|
-
CreatedAt?: Date;
|
|
811
|
-
LastModificationErrors?: PeeringError[];
|
|
805
|
+
CoreNetworkId?: string | undefined;
|
|
806
|
+
CoreNetworkArn?: string | undefined;
|
|
807
|
+
PeeringId?: string | undefined;
|
|
808
|
+
OwnerAccountId?: string | undefined;
|
|
809
|
+
PeeringType?: PeeringType | undefined;
|
|
810
|
+
State?: PeeringState | undefined;
|
|
811
|
+
EdgeLocation?: string | undefined;
|
|
812
|
+
ResourceArn?: string | undefined;
|
|
813
|
+
Tags?: Tag[] | undefined;
|
|
814
|
+
CreatedAt?: Date | undefined;
|
|
815
|
+
LastModificationErrors?: PeeringError[] | undefined;
|
|
812
816
|
}
|
|
813
817
|
export interface TransitGatewayPeering {
|
|
814
|
-
Peering?: Peering;
|
|
815
|
-
TransitGatewayArn?: string;
|
|
816
|
-
TransitGatewayPeeringAttachmentId?: string;
|
|
818
|
+
Peering?: Peering | undefined;
|
|
819
|
+
TransitGatewayArn?: string | undefined;
|
|
820
|
+
TransitGatewayPeeringAttachmentId?: string | undefined;
|
|
817
821
|
}
|
|
818
822
|
export interface CreateTransitGatewayPeeringResponse {
|
|
819
|
-
TransitGatewayPeering?: TransitGatewayPeering;
|
|
823
|
+
TransitGatewayPeering?: TransitGatewayPeering | undefined;
|
|
820
824
|
}
|
|
821
825
|
export interface CreateTransitGatewayRouteTableAttachmentRequest {
|
|
822
826
|
PeeringId: string | undefined;
|
|
823
827
|
TransitGatewayRouteTableArn: string | undefined;
|
|
824
|
-
Tags?: Tag[];
|
|
825
|
-
ClientToken?: string;
|
|
828
|
+
Tags?: Tag[] | undefined;
|
|
829
|
+
ClientToken?: string | undefined;
|
|
826
830
|
}
|
|
827
831
|
export interface TransitGatewayRouteTableAttachment {
|
|
828
|
-
Attachment?: Attachment;
|
|
829
|
-
PeeringId?: string;
|
|
830
|
-
TransitGatewayRouteTableArn?: string;
|
|
832
|
+
Attachment?: Attachment | undefined;
|
|
833
|
+
PeeringId?: string | undefined;
|
|
834
|
+
TransitGatewayRouteTableArn?: string | undefined;
|
|
831
835
|
}
|
|
832
836
|
export interface CreateTransitGatewayRouteTableAttachmentResponse {
|
|
833
|
-
TransitGatewayRouteTableAttachment?:
|
|
837
|
+
TransitGatewayRouteTableAttachment?:
|
|
838
|
+
| TransitGatewayRouteTableAttachment
|
|
839
|
+
| undefined;
|
|
834
840
|
}
|
|
835
841
|
export interface VpcOptions {
|
|
836
|
-
Ipv6Support?: boolean;
|
|
837
|
-
ApplianceModeSupport?: boolean;
|
|
842
|
+
Ipv6Support?: boolean | undefined;
|
|
843
|
+
ApplianceModeSupport?: boolean | undefined;
|
|
838
844
|
}
|
|
839
845
|
export interface CreateVpcAttachmentRequest {
|
|
840
846
|
CoreNetworkId: string | undefined;
|
|
841
847
|
VpcArn: string | undefined;
|
|
842
848
|
SubnetArns: string[] | undefined;
|
|
843
|
-
Options?: VpcOptions;
|
|
844
|
-
Tags?: Tag[];
|
|
845
|
-
ClientToken?: string;
|
|
849
|
+
Options?: VpcOptions | undefined;
|
|
850
|
+
Tags?: Tag[] | undefined;
|
|
851
|
+
ClientToken?: string | undefined;
|
|
846
852
|
}
|
|
847
853
|
export interface VpcAttachment {
|
|
848
|
-
Attachment?: Attachment;
|
|
849
|
-
SubnetArns?: string[];
|
|
850
|
-
Options?: VpcOptions;
|
|
854
|
+
Attachment?: Attachment | undefined;
|
|
855
|
+
SubnetArns?: string[] | undefined;
|
|
856
|
+
Options?: VpcOptions | undefined;
|
|
851
857
|
}
|
|
852
858
|
export interface CreateVpcAttachmentResponse {
|
|
853
|
-
VpcAttachment?: VpcAttachment;
|
|
859
|
+
VpcAttachment?: VpcAttachment | undefined;
|
|
854
860
|
}
|
|
855
861
|
export interface DeleteAttachmentRequest {
|
|
856
862
|
AttachmentId: string | undefined;
|
|
857
863
|
}
|
|
858
864
|
export interface DeleteAttachmentResponse {
|
|
859
|
-
Attachment?: Attachment;
|
|
865
|
+
Attachment?: Attachment | undefined;
|
|
860
866
|
}
|
|
861
867
|
export interface DeleteConnectionRequest {
|
|
862
868
|
GlobalNetworkId: string | undefined;
|
|
863
869
|
ConnectionId: string | undefined;
|
|
864
870
|
}
|
|
865
871
|
export interface DeleteConnectionResponse {
|
|
866
|
-
Connection?: Connection;
|
|
872
|
+
Connection?: Connection | undefined;
|
|
867
873
|
}
|
|
868
874
|
export interface DeleteConnectPeerRequest {
|
|
869
875
|
ConnectPeerId: string | undefined;
|
|
870
876
|
}
|
|
871
877
|
export interface DeleteConnectPeerResponse {
|
|
872
|
-
ConnectPeer?: ConnectPeer;
|
|
878
|
+
ConnectPeer?: ConnectPeer | undefined;
|
|
873
879
|
}
|
|
874
880
|
export interface DeleteCoreNetworkRequest {
|
|
875
881
|
CoreNetworkId: string | undefined;
|
|
876
882
|
}
|
|
877
883
|
export interface DeleteCoreNetworkResponse {
|
|
878
|
-
CoreNetwork?: CoreNetwork;
|
|
884
|
+
CoreNetwork?: CoreNetwork | undefined;
|
|
879
885
|
}
|
|
880
886
|
export interface DeleteCoreNetworkPolicyVersionRequest {
|
|
881
887
|
CoreNetworkId: string | undefined;
|
|
882
888
|
PolicyVersionId: number | undefined;
|
|
883
889
|
}
|
|
884
890
|
export interface DeleteCoreNetworkPolicyVersionResponse {
|
|
885
|
-
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
891
|
+
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
886
892
|
}
|
|
887
893
|
export interface DeleteDeviceRequest {
|
|
888
894
|
GlobalNetworkId: string | undefined;
|
|
889
895
|
DeviceId: string | undefined;
|
|
890
896
|
}
|
|
891
897
|
export interface DeleteDeviceResponse {
|
|
892
|
-
Device?: Device;
|
|
898
|
+
Device?: Device | undefined;
|
|
893
899
|
}
|
|
894
900
|
export interface DeleteGlobalNetworkRequest {
|
|
895
901
|
GlobalNetworkId: string | undefined;
|
|
896
902
|
}
|
|
897
903
|
export interface DeleteGlobalNetworkResponse {
|
|
898
|
-
GlobalNetwork?: GlobalNetwork;
|
|
904
|
+
GlobalNetwork?: GlobalNetwork | undefined;
|
|
899
905
|
}
|
|
900
906
|
export interface DeleteLinkRequest {
|
|
901
907
|
GlobalNetworkId: string | undefined;
|
|
902
908
|
LinkId: string | undefined;
|
|
903
909
|
}
|
|
904
910
|
export interface DeleteLinkResponse {
|
|
905
|
-
Link?: Link;
|
|
911
|
+
Link?: Link | undefined;
|
|
906
912
|
}
|
|
907
913
|
export interface DeletePeeringRequest {
|
|
908
914
|
PeeringId: string | undefined;
|
|
909
915
|
}
|
|
910
916
|
export interface DeletePeeringResponse {
|
|
911
|
-
Peering?: Peering;
|
|
917
|
+
Peering?: Peering | undefined;
|
|
912
918
|
}
|
|
913
919
|
export interface DeleteResourcePolicyRequest {
|
|
914
920
|
ResourceArn: string | undefined;
|
|
@@ -919,7 +925,7 @@ export interface DeleteSiteRequest {
|
|
|
919
925
|
SiteId: string | undefined;
|
|
920
926
|
}
|
|
921
927
|
export interface DeleteSiteResponse {
|
|
922
|
-
Site?: Site;
|
|
928
|
+
Site?: Site | undefined;
|
|
923
929
|
}
|
|
924
930
|
export interface DeregisterTransitGatewayRequest {
|
|
925
931
|
GlobalNetworkId: string | undefined;
|
|
@@ -935,39 +941,39 @@ export declare const TransitGatewayRegistrationState: {
|
|
|
935
941
|
export type TransitGatewayRegistrationState =
|
|
936
942
|
(typeof TransitGatewayRegistrationState)[keyof typeof TransitGatewayRegistrationState];
|
|
937
943
|
export interface TransitGatewayRegistrationStateReason {
|
|
938
|
-
Code?: TransitGatewayRegistrationState;
|
|
939
|
-
Message?: string;
|
|
944
|
+
Code?: TransitGatewayRegistrationState | undefined;
|
|
945
|
+
Message?: string | undefined;
|
|
940
946
|
}
|
|
941
947
|
export interface TransitGatewayRegistration {
|
|
942
|
-
GlobalNetworkId?: string;
|
|
943
|
-
TransitGatewayArn?: string;
|
|
944
|
-
State?: TransitGatewayRegistrationStateReason;
|
|
948
|
+
GlobalNetworkId?: string | undefined;
|
|
949
|
+
TransitGatewayArn?: string | undefined;
|
|
950
|
+
State?: TransitGatewayRegistrationStateReason | undefined;
|
|
945
951
|
}
|
|
946
952
|
export interface DeregisterTransitGatewayResponse {
|
|
947
|
-
TransitGatewayRegistration?: TransitGatewayRegistration;
|
|
953
|
+
TransitGatewayRegistration?: TransitGatewayRegistration | undefined;
|
|
948
954
|
}
|
|
949
955
|
export interface DescribeGlobalNetworksRequest {
|
|
950
|
-
GlobalNetworkIds?: string[];
|
|
951
|
-
MaxResults?: number;
|
|
952
|
-
NextToken?: string;
|
|
956
|
+
GlobalNetworkIds?: string[] | undefined;
|
|
957
|
+
MaxResults?: number | undefined;
|
|
958
|
+
NextToken?: string | undefined;
|
|
953
959
|
}
|
|
954
960
|
export interface DescribeGlobalNetworksResponse {
|
|
955
|
-
GlobalNetworks?: GlobalNetwork[];
|
|
956
|
-
NextToken?: string;
|
|
961
|
+
GlobalNetworks?: GlobalNetwork[] | undefined;
|
|
962
|
+
NextToken?: string | undefined;
|
|
957
963
|
}
|
|
958
964
|
export interface DisassociateConnectPeerRequest {
|
|
959
965
|
GlobalNetworkId: string | undefined;
|
|
960
966
|
ConnectPeerId: string | undefined;
|
|
961
967
|
}
|
|
962
968
|
export interface DisassociateConnectPeerResponse {
|
|
963
|
-
ConnectPeerAssociation?: ConnectPeerAssociation;
|
|
969
|
+
ConnectPeerAssociation?: ConnectPeerAssociation | undefined;
|
|
964
970
|
}
|
|
965
971
|
export interface DisassociateCustomerGatewayRequest {
|
|
966
972
|
GlobalNetworkId: string | undefined;
|
|
967
973
|
CustomerGatewayArn: string | undefined;
|
|
968
974
|
}
|
|
969
975
|
export interface DisassociateCustomerGatewayResponse {
|
|
970
|
-
CustomerGatewayAssociation?: CustomerGatewayAssociation;
|
|
976
|
+
CustomerGatewayAssociation?: CustomerGatewayAssociation | undefined;
|
|
971
977
|
}
|
|
972
978
|
export interface DisassociateLinkRequest {
|
|
973
979
|
GlobalNetworkId: string | undefined;
|
|
@@ -975,14 +981,16 @@ export interface DisassociateLinkRequest {
|
|
|
975
981
|
LinkId: string | undefined;
|
|
976
982
|
}
|
|
977
983
|
export interface DisassociateLinkResponse {
|
|
978
|
-
LinkAssociation?: LinkAssociation;
|
|
984
|
+
LinkAssociation?: LinkAssociation | undefined;
|
|
979
985
|
}
|
|
980
986
|
export interface DisassociateTransitGatewayConnectPeerRequest {
|
|
981
987
|
GlobalNetworkId: string | undefined;
|
|
982
988
|
TransitGatewayConnectPeerArn: string | undefined;
|
|
983
989
|
}
|
|
984
990
|
export interface DisassociateTransitGatewayConnectPeerResponse {
|
|
985
|
-
TransitGatewayConnectPeerAssociation?:
|
|
991
|
+
TransitGatewayConnectPeerAssociation?:
|
|
992
|
+
| TransitGatewayConnectPeerAssociation
|
|
993
|
+
| undefined;
|
|
986
994
|
}
|
|
987
995
|
export interface ExecuteCoreNetworkChangeSetRequest {
|
|
988
996
|
CoreNetworkId: string | undefined;
|
|
@@ -993,179 +1001,181 @@ export interface GetConnectAttachmentRequest {
|
|
|
993
1001
|
AttachmentId: string | undefined;
|
|
994
1002
|
}
|
|
995
1003
|
export interface GetConnectAttachmentResponse {
|
|
996
|
-
ConnectAttachment?: ConnectAttachment;
|
|
1004
|
+
ConnectAttachment?: ConnectAttachment | undefined;
|
|
997
1005
|
}
|
|
998
1006
|
export interface GetConnectionsRequest {
|
|
999
1007
|
GlobalNetworkId: string | undefined;
|
|
1000
|
-
ConnectionIds?: string[];
|
|
1001
|
-
DeviceId?: string;
|
|
1002
|
-
MaxResults?: number;
|
|
1003
|
-
NextToken?: string;
|
|
1008
|
+
ConnectionIds?: string[] | undefined;
|
|
1009
|
+
DeviceId?: string | undefined;
|
|
1010
|
+
MaxResults?: number | undefined;
|
|
1011
|
+
NextToken?: string | undefined;
|
|
1004
1012
|
}
|
|
1005
1013
|
export interface GetConnectionsResponse {
|
|
1006
|
-
Connections?: Connection[];
|
|
1007
|
-
NextToken?: string;
|
|
1014
|
+
Connections?: Connection[] | undefined;
|
|
1015
|
+
NextToken?: string | undefined;
|
|
1008
1016
|
}
|
|
1009
1017
|
export interface GetConnectPeerRequest {
|
|
1010
1018
|
ConnectPeerId: string | undefined;
|
|
1011
1019
|
}
|
|
1012
1020
|
export interface GetConnectPeerResponse {
|
|
1013
|
-
ConnectPeer?: ConnectPeer;
|
|
1021
|
+
ConnectPeer?: ConnectPeer | undefined;
|
|
1014
1022
|
}
|
|
1015
1023
|
export interface GetConnectPeerAssociationsRequest {
|
|
1016
1024
|
GlobalNetworkId: string | undefined;
|
|
1017
|
-
ConnectPeerIds?: string[];
|
|
1018
|
-
MaxResults?: number;
|
|
1019
|
-
NextToken?: string;
|
|
1025
|
+
ConnectPeerIds?: string[] | undefined;
|
|
1026
|
+
MaxResults?: number | undefined;
|
|
1027
|
+
NextToken?: string | undefined;
|
|
1020
1028
|
}
|
|
1021
1029
|
export interface GetConnectPeerAssociationsResponse {
|
|
1022
|
-
ConnectPeerAssociations?: ConnectPeerAssociation[];
|
|
1023
|
-
NextToken?: string;
|
|
1030
|
+
ConnectPeerAssociations?: ConnectPeerAssociation[] | undefined;
|
|
1031
|
+
NextToken?: string | undefined;
|
|
1024
1032
|
}
|
|
1025
1033
|
export interface GetCoreNetworkRequest {
|
|
1026
1034
|
CoreNetworkId: string | undefined;
|
|
1027
1035
|
}
|
|
1028
1036
|
export interface GetCoreNetworkResponse {
|
|
1029
|
-
CoreNetwork?: CoreNetwork;
|
|
1037
|
+
CoreNetwork?: CoreNetwork | undefined;
|
|
1030
1038
|
}
|
|
1031
1039
|
export interface GetCoreNetworkChangeEventsRequest {
|
|
1032
1040
|
CoreNetworkId: string | undefined;
|
|
1033
1041
|
PolicyVersionId: number | undefined;
|
|
1034
|
-
MaxResults?: number;
|
|
1035
|
-
NextToken?: string;
|
|
1042
|
+
MaxResults?: number | undefined;
|
|
1043
|
+
NextToken?: string | undefined;
|
|
1036
1044
|
}
|
|
1037
1045
|
export interface GetCoreNetworkChangeEventsResponse {
|
|
1038
|
-
CoreNetworkChangeEvents?: CoreNetworkChangeEvent[];
|
|
1039
|
-
NextToken?: string;
|
|
1046
|
+
CoreNetworkChangeEvents?: CoreNetworkChangeEvent[] | undefined;
|
|
1047
|
+
NextToken?: string | undefined;
|
|
1040
1048
|
}
|
|
1041
1049
|
export interface GetCoreNetworkChangeSetRequest {
|
|
1042
1050
|
CoreNetworkId: string | undefined;
|
|
1043
1051
|
PolicyVersionId: number | undefined;
|
|
1044
|
-
MaxResults?: number;
|
|
1045
|
-
NextToken?: string;
|
|
1052
|
+
MaxResults?: number | undefined;
|
|
1053
|
+
NextToken?: string | undefined;
|
|
1046
1054
|
}
|
|
1047
1055
|
export interface GetCoreNetworkChangeSetResponse {
|
|
1048
|
-
CoreNetworkChanges?: CoreNetworkChange[];
|
|
1049
|
-
NextToken?: string;
|
|
1056
|
+
CoreNetworkChanges?: CoreNetworkChange[] | undefined;
|
|
1057
|
+
NextToken?: string | undefined;
|
|
1050
1058
|
}
|
|
1051
1059
|
export interface GetCoreNetworkPolicyRequest {
|
|
1052
1060
|
CoreNetworkId: string | undefined;
|
|
1053
|
-
PolicyVersionId?: number;
|
|
1054
|
-
Alias?: CoreNetworkPolicyAlias;
|
|
1061
|
+
PolicyVersionId?: number | undefined;
|
|
1062
|
+
Alias?: CoreNetworkPolicyAlias | undefined;
|
|
1055
1063
|
}
|
|
1056
1064
|
export interface GetCoreNetworkPolicyResponse {
|
|
1057
|
-
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
1065
|
+
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
1058
1066
|
}
|
|
1059
1067
|
export interface GetCustomerGatewayAssociationsRequest {
|
|
1060
1068
|
GlobalNetworkId: string | undefined;
|
|
1061
|
-
CustomerGatewayArns?: string[];
|
|
1062
|
-
MaxResults?: number;
|
|
1063
|
-
NextToken?: string;
|
|
1069
|
+
CustomerGatewayArns?: string[] | undefined;
|
|
1070
|
+
MaxResults?: number | undefined;
|
|
1071
|
+
NextToken?: string | undefined;
|
|
1064
1072
|
}
|
|
1065
1073
|
export interface GetCustomerGatewayAssociationsResponse {
|
|
1066
|
-
CustomerGatewayAssociations?: CustomerGatewayAssociation[];
|
|
1067
|
-
NextToken?: string;
|
|
1074
|
+
CustomerGatewayAssociations?: CustomerGatewayAssociation[] | undefined;
|
|
1075
|
+
NextToken?: string | undefined;
|
|
1068
1076
|
}
|
|
1069
1077
|
export interface GetDevicesRequest {
|
|
1070
1078
|
GlobalNetworkId: string | undefined;
|
|
1071
|
-
DeviceIds?: string[];
|
|
1072
|
-
SiteId?: string;
|
|
1073
|
-
MaxResults?: number;
|
|
1074
|
-
NextToken?: string;
|
|
1079
|
+
DeviceIds?: string[] | undefined;
|
|
1080
|
+
SiteId?: string | undefined;
|
|
1081
|
+
MaxResults?: number | undefined;
|
|
1082
|
+
NextToken?: string | undefined;
|
|
1075
1083
|
}
|
|
1076
1084
|
export interface GetDevicesResponse {
|
|
1077
|
-
Devices?: Device[];
|
|
1078
|
-
NextToken?: string;
|
|
1085
|
+
Devices?: Device[] | undefined;
|
|
1086
|
+
NextToken?: string | undefined;
|
|
1079
1087
|
}
|
|
1080
1088
|
export interface GetLinkAssociationsRequest {
|
|
1081
1089
|
GlobalNetworkId: string | undefined;
|
|
1082
|
-
DeviceId?: string;
|
|
1083
|
-
LinkId?: string;
|
|
1084
|
-
MaxResults?: number;
|
|
1085
|
-
NextToken?: string;
|
|
1090
|
+
DeviceId?: string | undefined;
|
|
1091
|
+
LinkId?: string | undefined;
|
|
1092
|
+
MaxResults?: number | undefined;
|
|
1093
|
+
NextToken?: string | undefined;
|
|
1086
1094
|
}
|
|
1087
1095
|
export interface GetLinkAssociationsResponse {
|
|
1088
|
-
LinkAssociations?: LinkAssociation[];
|
|
1089
|
-
NextToken?: string;
|
|
1096
|
+
LinkAssociations?: LinkAssociation[] | undefined;
|
|
1097
|
+
NextToken?: string | undefined;
|
|
1090
1098
|
}
|
|
1091
1099
|
export interface GetLinksRequest {
|
|
1092
1100
|
GlobalNetworkId: string | undefined;
|
|
1093
|
-
LinkIds?: string[];
|
|
1094
|
-
SiteId?: string;
|
|
1095
|
-
Type?: string;
|
|
1096
|
-
Provider?: string;
|
|
1097
|
-
MaxResults?: number;
|
|
1098
|
-
NextToken?: string;
|
|
1101
|
+
LinkIds?: string[] | undefined;
|
|
1102
|
+
SiteId?: string | undefined;
|
|
1103
|
+
Type?: string | undefined;
|
|
1104
|
+
Provider?: string | undefined;
|
|
1105
|
+
MaxResults?: number | undefined;
|
|
1106
|
+
NextToken?: string | undefined;
|
|
1099
1107
|
}
|
|
1100
1108
|
export interface GetLinksResponse {
|
|
1101
|
-
Links?: Link[];
|
|
1102
|
-
NextToken?: string;
|
|
1109
|
+
Links?: Link[] | undefined;
|
|
1110
|
+
NextToken?: string | undefined;
|
|
1103
1111
|
}
|
|
1104
1112
|
export interface GetNetworkResourceCountsRequest {
|
|
1105
1113
|
GlobalNetworkId: string | undefined;
|
|
1106
|
-
ResourceType?: string;
|
|
1107
|
-
MaxResults?: number;
|
|
1108
|
-
NextToken?: string;
|
|
1114
|
+
ResourceType?: string | undefined;
|
|
1115
|
+
MaxResults?: number | undefined;
|
|
1116
|
+
NextToken?: string | undefined;
|
|
1109
1117
|
}
|
|
1110
1118
|
export interface NetworkResourceCount {
|
|
1111
|
-
ResourceType?: string;
|
|
1112
|
-
Count?: number;
|
|
1119
|
+
ResourceType?: string | undefined;
|
|
1120
|
+
Count?: number | undefined;
|
|
1113
1121
|
}
|
|
1114
1122
|
export interface GetNetworkResourceCountsResponse {
|
|
1115
|
-
NetworkResourceCounts?: NetworkResourceCount[];
|
|
1116
|
-
NextToken?: string;
|
|
1123
|
+
NetworkResourceCounts?: NetworkResourceCount[] | undefined;
|
|
1124
|
+
NextToken?: string | undefined;
|
|
1117
1125
|
}
|
|
1118
1126
|
export interface GetNetworkResourceRelationshipsRequest {
|
|
1119
1127
|
GlobalNetworkId: string | undefined;
|
|
1120
|
-
CoreNetworkId?: string;
|
|
1121
|
-
RegisteredGatewayArn?: string;
|
|
1122
|
-
AwsRegion?: string;
|
|
1123
|
-
AccountId?: string;
|
|
1124
|
-
ResourceType?: string;
|
|
1125
|
-
ResourceArn?: string;
|
|
1126
|
-
MaxResults?: number;
|
|
1127
|
-
NextToken?: string;
|
|
1128
|
+
CoreNetworkId?: string | undefined;
|
|
1129
|
+
RegisteredGatewayArn?: string | undefined;
|
|
1130
|
+
AwsRegion?: string | undefined;
|
|
1131
|
+
AccountId?: string | undefined;
|
|
1132
|
+
ResourceType?: string | undefined;
|
|
1133
|
+
ResourceArn?: string | undefined;
|
|
1134
|
+
MaxResults?: number | undefined;
|
|
1135
|
+
NextToken?: string | undefined;
|
|
1128
1136
|
}
|
|
1129
1137
|
export interface Relationship {
|
|
1130
|
-
From?: string;
|
|
1131
|
-
To?: string;
|
|
1138
|
+
From?: string | undefined;
|
|
1139
|
+
To?: string | undefined;
|
|
1132
1140
|
}
|
|
1133
1141
|
export interface GetNetworkResourceRelationshipsResponse {
|
|
1134
|
-
Relationships?: Relationship[];
|
|
1135
|
-
NextToken?: string;
|
|
1142
|
+
Relationships?: Relationship[] | undefined;
|
|
1143
|
+
NextToken?: string | undefined;
|
|
1136
1144
|
}
|
|
1137
1145
|
export interface GetNetworkResourcesRequest {
|
|
1138
1146
|
GlobalNetworkId: string | undefined;
|
|
1139
|
-
CoreNetworkId?: string;
|
|
1140
|
-
RegisteredGatewayArn?: string;
|
|
1141
|
-
AwsRegion?: string;
|
|
1142
|
-
AccountId?: string;
|
|
1143
|
-
ResourceType?: string;
|
|
1144
|
-
ResourceArn?: string;
|
|
1145
|
-
MaxResults?: number;
|
|
1146
|
-
NextToken?: string;
|
|
1147
|
+
CoreNetworkId?: string | undefined;
|
|
1148
|
+
RegisteredGatewayArn?: string | undefined;
|
|
1149
|
+
AwsRegion?: string | undefined;
|
|
1150
|
+
AccountId?: string | undefined;
|
|
1151
|
+
ResourceType?: string | undefined;
|
|
1152
|
+
ResourceArn?: string | undefined;
|
|
1153
|
+
MaxResults?: number | undefined;
|
|
1154
|
+
NextToken?: string | undefined;
|
|
1147
1155
|
}
|
|
1148
1156
|
export interface NetworkResource {
|
|
1149
|
-
RegisteredGatewayArn?: string;
|
|
1150
|
-
CoreNetworkId?: string;
|
|
1151
|
-
AwsRegion?: string;
|
|
1152
|
-
AccountId?: string;
|
|
1153
|
-
ResourceType?: string;
|
|
1154
|
-
ResourceId?: string;
|
|
1155
|
-
ResourceArn?: string;
|
|
1156
|
-
Definition?: string;
|
|
1157
|
-
DefinitionTimestamp?: Date;
|
|
1158
|
-
Tags?: Tag[];
|
|
1159
|
-
Metadata?: Record<string, string
|
|
1157
|
+
RegisteredGatewayArn?: string | undefined;
|
|
1158
|
+
CoreNetworkId?: string | undefined;
|
|
1159
|
+
AwsRegion?: string | undefined;
|
|
1160
|
+
AccountId?: string | undefined;
|
|
1161
|
+
ResourceType?: string | undefined;
|
|
1162
|
+
ResourceId?: string | undefined;
|
|
1163
|
+
ResourceArn?: string | undefined;
|
|
1164
|
+
Definition?: string | undefined;
|
|
1165
|
+
DefinitionTimestamp?: Date | undefined;
|
|
1166
|
+
Tags?: Tag[] | undefined;
|
|
1167
|
+
Metadata?: Record<string, string> | undefined;
|
|
1160
1168
|
}
|
|
1161
1169
|
export interface GetNetworkResourcesResponse {
|
|
1162
|
-
NetworkResources?: NetworkResource[];
|
|
1163
|
-
NextToken?: string;
|
|
1170
|
+
NetworkResources?: NetworkResource[] | undefined;
|
|
1171
|
+
NextToken?: string | undefined;
|
|
1164
1172
|
}
|
|
1165
1173
|
export interface RouteTableIdentifier {
|
|
1166
|
-
TransitGatewayRouteTableArn?: string;
|
|
1167
|
-
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
1168
|
-
CoreNetworkNetworkFunctionGroup?:
|
|
1174
|
+
TransitGatewayRouteTableArn?: string | undefined;
|
|
1175
|
+
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier | undefined;
|
|
1176
|
+
CoreNetworkNetworkFunctionGroup?:
|
|
1177
|
+
| CoreNetworkNetworkFunctionGroupIdentifier
|
|
1178
|
+
| undefined;
|
|
1169
1179
|
}
|
|
1170
1180
|
export declare const RouteState: {
|
|
1171
1181
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -1180,30 +1190,30 @@ export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
|
1180
1190
|
export interface GetNetworkRoutesRequest {
|
|
1181
1191
|
GlobalNetworkId: string | undefined;
|
|
1182
1192
|
RouteTableIdentifier: RouteTableIdentifier | undefined;
|
|
1183
|
-
ExactCidrMatches?: string[];
|
|
1184
|
-
LongestPrefixMatches?: string[];
|
|
1185
|
-
SubnetOfMatches?: string[];
|
|
1186
|
-
SupernetOfMatches?: string[];
|
|
1187
|
-
PrefixListIds?: string[];
|
|
1188
|
-
States?: RouteState[];
|
|
1189
|
-
Types?: RouteType[];
|
|
1190
|
-
DestinationFilters?: Record<string, string[]
|
|
1193
|
+
ExactCidrMatches?: string[] | undefined;
|
|
1194
|
+
LongestPrefixMatches?: string[] | undefined;
|
|
1195
|
+
SubnetOfMatches?: string[] | undefined;
|
|
1196
|
+
SupernetOfMatches?: string[] | undefined;
|
|
1197
|
+
PrefixListIds?: string[] | undefined;
|
|
1198
|
+
States?: RouteState[] | undefined;
|
|
1199
|
+
Types?: RouteType[] | undefined;
|
|
1200
|
+
DestinationFilters?: Record<string, string[]> | undefined;
|
|
1191
1201
|
}
|
|
1192
1202
|
export interface NetworkRouteDestination {
|
|
1193
|
-
CoreNetworkAttachmentId?: string;
|
|
1194
|
-
TransitGatewayAttachmentId?: string;
|
|
1195
|
-
SegmentName?: string;
|
|
1196
|
-
NetworkFunctionGroupName?: string;
|
|
1197
|
-
EdgeLocation?: string;
|
|
1198
|
-
ResourceType?: string;
|
|
1199
|
-
ResourceId?: string;
|
|
1203
|
+
CoreNetworkAttachmentId?: string | undefined;
|
|
1204
|
+
TransitGatewayAttachmentId?: string | undefined;
|
|
1205
|
+
SegmentName?: string | undefined;
|
|
1206
|
+
NetworkFunctionGroupName?: string | undefined;
|
|
1207
|
+
EdgeLocation?: string | undefined;
|
|
1208
|
+
ResourceType?: string | undefined;
|
|
1209
|
+
ResourceId?: string | undefined;
|
|
1200
1210
|
}
|
|
1201
1211
|
export interface NetworkRoute {
|
|
1202
|
-
DestinationCidrBlock?: string;
|
|
1203
|
-
Destinations?: NetworkRouteDestination[];
|
|
1204
|
-
PrefixListId?: string;
|
|
1205
|
-
State?: RouteState;
|
|
1206
|
-
Type?: RouteType;
|
|
1212
|
+
DestinationCidrBlock?: string | undefined;
|
|
1213
|
+
Destinations?: NetworkRouteDestination[] | undefined;
|
|
1214
|
+
PrefixListId?: string | undefined;
|
|
1215
|
+
State?: RouteState | undefined;
|
|
1216
|
+
Type?: RouteType | undefined;
|
|
1207
1217
|
}
|
|
1208
1218
|
export declare const RouteTableType: {
|
|
1209
1219
|
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
@@ -1213,52 +1223,52 @@ export declare const RouteTableType: {
|
|
|
1213
1223
|
export type RouteTableType =
|
|
1214
1224
|
(typeof RouteTableType)[keyof typeof RouteTableType];
|
|
1215
1225
|
export interface GetNetworkRoutesResponse {
|
|
1216
|
-
RouteTableArn?: string;
|
|
1217
|
-
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier;
|
|
1218
|
-
RouteTableType?: RouteTableType;
|
|
1219
|
-
RouteTableTimestamp?: Date;
|
|
1220
|
-
NetworkRoutes?: NetworkRoute[];
|
|
1226
|
+
RouteTableArn?: string | undefined;
|
|
1227
|
+
CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier | undefined;
|
|
1228
|
+
RouteTableType?: RouteTableType | undefined;
|
|
1229
|
+
RouteTableTimestamp?: Date | undefined;
|
|
1230
|
+
NetworkRoutes?: NetworkRoute[] | undefined;
|
|
1221
1231
|
}
|
|
1222
1232
|
export interface GetNetworkTelemetryRequest {
|
|
1223
1233
|
GlobalNetworkId: string | undefined;
|
|
1224
|
-
CoreNetworkId?: string;
|
|
1225
|
-
RegisteredGatewayArn?: string;
|
|
1226
|
-
AwsRegion?: string;
|
|
1227
|
-
AccountId?: string;
|
|
1228
|
-
ResourceType?: string;
|
|
1229
|
-
ResourceArn?: string;
|
|
1230
|
-
MaxResults?: number;
|
|
1231
|
-
NextToken?: string;
|
|
1234
|
+
CoreNetworkId?: string | undefined;
|
|
1235
|
+
RegisteredGatewayArn?: string | undefined;
|
|
1236
|
+
AwsRegion?: string | undefined;
|
|
1237
|
+
AccountId?: string | undefined;
|
|
1238
|
+
ResourceType?: string | undefined;
|
|
1239
|
+
ResourceArn?: string | undefined;
|
|
1240
|
+
MaxResults?: number | undefined;
|
|
1241
|
+
NextToken?: string | undefined;
|
|
1232
1242
|
}
|
|
1233
1243
|
export interface NetworkTelemetry {
|
|
1234
|
-
RegisteredGatewayArn?: string;
|
|
1235
|
-
CoreNetworkId?: string;
|
|
1236
|
-
AwsRegion?: string;
|
|
1237
|
-
AccountId?: string;
|
|
1238
|
-
ResourceType?: string;
|
|
1239
|
-
ResourceId?: string;
|
|
1240
|
-
ResourceArn?: string;
|
|
1241
|
-
Address?: string;
|
|
1242
|
-
Health?: ConnectionHealth;
|
|
1244
|
+
RegisteredGatewayArn?: string | undefined;
|
|
1245
|
+
CoreNetworkId?: string | undefined;
|
|
1246
|
+
AwsRegion?: string | undefined;
|
|
1247
|
+
AccountId?: string | undefined;
|
|
1248
|
+
ResourceType?: string | undefined;
|
|
1249
|
+
ResourceId?: string | undefined;
|
|
1250
|
+
ResourceArn?: string | undefined;
|
|
1251
|
+
Address?: string | undefined;
|
|
1252
|
+
Health?: ConnectionHealth | undefined;
|
|
1243
1253
|
}
|
|
1244
1254
|
export interface GetNetworkTelemetryResponse {
|
|
1245
|
-
NetworkTelemetry?: NetworkTelemetry[];
|
|
1246
|
-
NextToken?: string;
|
|
1255
|
+
NetworkTelemetry?: NetworkTelemetry[] | undefined;
|
|
1256
|
+
NextToken?: string | undefined;
|
|
1247
1257
|
}
|
|
1248
1258
|
export interface GetResourcePolicyRequest {
|
|
1249
1259
|
ResourceArn: string | undefined;
|
|
1250
1260
|
}
|
|
1251
1261
|
export interface GetResourcePolicyResponse {
|
|
1252
|
-
PolicyDocument?: __LazyJsonString | string;
|
|
1262
|
+
PolicyDocument?: __LazyJsonString | string | undefined;
|
|
1253
1263
|
}
|
|
1254
1264
|
export interface GetRouteAnalysisRequest {
|
|
1255
1265
|
GlobalNetworkId: string | undefined;
|
|
1256
1266
|
RouteAnalysisId: string | undefined;
|
|
1257
1267
|
}
|
|
1258
1268
|
export interface RouteAnalysisEndpointOptions {
|
|
1259
|
-
TransitGatewayAttachmentArn?: string;
|
|
1260
|
-
TransitGatewayArn?: string;
|
|
1261
|
-
IpAddress?: string;
|
|
1269
|
+
TransitGatewayAttachmentArn?: string | undefined;
|
|
1270
|
+
TransitGatewayArn?: string | undefined;
|
|
1271
|
+
IpAddress?: string | undefined;
|
|
1262
1272
|
}
|
|
1263
1273
|
export declare const RouteAnalysisCompletionReasonCode: {
|
|
1264
1274
|
readonly BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND";
|
|
@@ -1282,26 +1292,26 @@ export declare const RouteAnalysisCompletionResultCode: {
|
|
|
1282
1292
|
export type RouteAnalysisCompletionResultCode =
|
|
1283
1293
|
(typeof RouteAnalysisCompletionResultCode)[keyof typeof RouteAnalysisCompletionResultCode];
|
|
1284
1294
|
export interface RouteAnalysisCompletion {
|
|
1285
|
-
ResultCode?: RouteAnalysisCompletionResultCode;
|
|
1286
|
-
ReasonCode?: RouteAnalysisCompletionReasonCode;
|
|
1287
|
-
ReasonContext?: Record<string, string
|
|
1295
|
+
ResultCode?: RouteAnalysisCompletionResultCode | undefined;
|
|
1296
|
+
ReasonCode?: RouteAnalysisCompletionReasonCode | undefined;
|
|
1297
|
+
ReasonContext?: Record<string, string> | undefined;
|
|
1288
1298
|
}
|
|
1289
1299
|
export interface NetworkResourceSummary {
|
|
1290
|
-
RegisteredGatewayArn?: string;
|
|
1291
|
-
ResourceArn?: string;
|
|
1292
|
-
ResourceType?: string;
|
|
1293
|
-
Definition?: string;
|
|
1294
|
-
NameTag?: string;
|
|
1295
|
-
IsMiddlebox?: boolean;
|
|
1300
|
+
RegisteredGatewayArn?: string | undefined;
|
|
1301
|
+
ResourceArn?: string | undefined;
|
|
1302
|
+
ResourceType?: string | undefined;
|
|
1303
|
+
Definition?: string | undefined;
|
|
1304
|
+
NameTag?: string | undefined;
|
|
1305
|
+
IsMiddlebox?: boolean | undefined;
|
|
1296
1306
|
}
|
|
1297
1307
|
export interface PathComponent {
|
|
1298
|
-
Sequence?: number;
|
|
1299
|
-
Resource?: NetworkResourceSummary;
|
|
1300
|
-
DestinationCidrBlock?: string;
|
|
1308
|
+
Sequence?: number | undefined;
|
|
1309
|
+
Resource?: NetworkResourceSummary | undefined;
|
|
1310
|
+
DestinationCidrBlock?: string | undefined;
|
|
1301
1311
|
}
|
|
1302
1312
|
export interface RouteAnalysisPath {
|
|
1303
|
-
CompletionStatus?: RouteAnalysisCompletion;
|
|
1304
|
-
Path?: PathComponent[];
|
|
1313
|
+
CompletionStatus?: RouteAnalysisCompletion | undefined;
|
|
1314
|
+
Path?: PathComponent[] | undefined;
|
|
1305
1315
|
}
|
|
1306
1316
|
export declare const RouteAnalysisStatus: {
|
|
1307
1317
|
readonly completed: "COMPLETED";
|
|
@@ -1311,155 +1321,159 @@ export declare const RouteAnalysisStatus: {
|
|
|
1311
1321
|
export type RouteAnalysisStatus =
|
|
1312
1322
|
(typeof RouteAnalysisStatus)[keyof typeof RouteAnalysisStatus];
|
|
1313
1323
|
export interface RouteAnalysis {
|
|
1314
|
-
GlobalNetworkId?: string;
|
|
1315
|
-
OwnerAccountId?: string;
|
|
1316
|
-
RouteAnalysisId?: string;
|
|
1317
|
-
StartTimestamp?: Date;
|
|
1318
|
-
Status?: RouteAnalysisStatus;
|
|
1319
|
-
Source?: RouteAnalysisEndpointOptions;
|
|
1320
|
-
Destination?: RouteAnalysisEndpointOptions;
|
|
1321
|
-
IncludeReturnPath?: boolean;
|
|
1322
|
-
UseMiddleboxes?: boolean;
|
|
1323
|
-
ForwardPath?: RouteAnalysisPath;
|
|
1324
|
-
ReturnPath?: RouteAnalysisPath;
|
|
1324
|
+
GlobalNetworkId?: string | undefined;
|
|
1325
|
+
OwnerAccountId?: string | undefined;
|
|
1326
|
+
RouteAnalysisId?: string | undefined;
|
|
1327
|
+
StartTimestamp?: Date | undefined;
|
|
1328
|
+
Status?: RouteAnalysisStatus | undefined;
|
|
1329
|
+
Source?: RouteAnalysisEndpointOptions | undefined;
|
|
1330
|
+
Destination?: RouteAnalysisEndpointOptions | undefined;
|
|
1331
|
+
IncludeReturnPath?: boolean | undefined;
|
|
1332
|
+
UseMiddleboxes?: boolean | undefined;
|
|
1333
|
+
ForwardPath?: RouteAnalysisPath | undefined;
|
|
1334
|
+
ReturnPath?: RouteAnalysisPath | undefined;
|
|
1325
1335
|
}
|
|
1326
1336
|
export interface GetRouteAnalysisResponse {
|
|
1327
|
-
RouteAnalysis?: RouteAnalysis;
|
|
1337
|
+
RouteAnalysis?: RouteAnalysis | undefined;
|
|
1328
1338
|
}
|
|
1329
1339
|
export interface GetSitesRequest {
|
|
1330
1340
|
GlobalNetworkId: string | undefined;
|
|
1331
|
-
SiteIds?: string[];
|
|
1332
|
-
MaxResults?: number;
|
|
1333
|
-
NextToken?: string;
|
|
1341
|
+
SiteIds?: string[] | undefined;
|
|
1342
|
+
MaxResults?: number | undefined;
|
|
1343
|
+
NextToken?: string | undefined;
|
|
1334
1344
|
}
|
|
1335
1345
|
export interface GetSitesResponse {
|
|
1336
|
-
Sites?: Site[];
|
|
1337
|
-
NextToken?: string;
|
|
1346
|
+
Sites?: Site[] | undefined;
|
|
1347
|
+
NextToken?: string | undefined;
|
|
1338
1348
|
}
|
|
1339
1349
|
export interface GetSiteToSiteVpnAttachmentRequest {
|
|
1340
1350
|
AttachmentId: string | undefined;
|
|
1341
1351
|
}
|
|
1342
1352
|
export interface GetSiteToSiteVpnAttachmentResponse {
|
|
1343
|
-
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment;
|
|
1353
|
+
SiteToSiteVpnAttachment?: SiteToSiteVpnAttachment | undefined;
|
|
1344
1354
|
}
|
|
1345
1355
|
export interface GetTransitGatewayConnectPeerAssociationsRequest {
|
|
1346
1356
|
GlobalNetworkId: string | undefined;
|
|
1347
|
-
TransitGatewayConnectPeerArns?: string[];
|
|
1348
|
-
MaxResults?: number;
|
|
1349
|
-
NextToken?: string;
|
|
1357
|
+
TransitGatewayConnectPeerArns?: string[] | undefined;
|
|
1358
|
+
MaxResults?: number | undefined;
|
|
1359
|
+
NextToken?: string | undefined;
|
|
1350
1360
|
}
|
|
1351
1361
|
export interface GetTransitGatewayConnectPeerAssociationsResponse {
|
|
1352
|
-
TransitGatewayConnectPeerAssociations?:
|
|
1353
|
-
|
|
1362
|
+
TransitGatewayConnectPeerAssociations?:
|
|
1363
|
+
| TransitGatewayConnectPeerAssociation[]
|
|
1364
|
+
| undefined;
|
|
1365
|
+
NextToken?: string | undefined;
|
|
1354
1366
|
}
|
|
1355
1367
|
export interface GetTransitGatewayPeeringRequest {
|
|
1356
1368
|
PeeringId: string | undefined;
|
|
1357
1369
|
}
|
|
1358
1370
|
export interface GetTransitGatewayPeeringResponse {
|
|
1359
|
-
TransitGatewayPeering?: TransitGatewayPeering;
|
|
1371
|
+
TransitGatewayPeering?: TransitGatewayPeering | undefined;
|
|
1360
1372
|
}
|
|
1361
1373
|
export interface GetTransitGatewayRegistrationsRequest {
|
|
1362
1374
|
GlobalNetworkId: string | undefined;
|
|
1363
|
-
TransitGatewayArns?: string[];
|
|
1364
|
-
MaxResults?: number;
|
|
1365
|
-
NextToken?: string;
|
|
1375
|
+
TransitGatewayArns?: string[] | undefined;
|
|
1376
|
+
MaxResults?: number | undefined;
|
|
1377
|
+
NextToken?: string | undefined;
|
|
1366
1378
|
}
|
|
1367
1379
|
export interface GetTransitGatewayRegistrationsResponse {
|
|
1368
|
-
TransitGatewayRegistrations?: TransitGatewayRegistration[];
|
|
1369
|
-
NextToken?: string;
|
|
1380
|
+
TransitGatewayRegistrations?: TransitGatewayRegistration[] | undefined;
|
|
1381
|
+
NextToken?: string | undefined;
|
|
1370
1382
|
}
|
|
1371
1383
|
export interface GetTransitGatewayRouteTableAttachmentRequest {
|
|
1372
1384
|
AttachmentId: string | undefined;
|
|
1373
1385
|
}
|
|
1374
1386
|
export interface GetTransitGatewayRouteTableAttachmentResponse {
|
|
1375
|
-
TransitGatewayRouteTableAttachment?:
|
|
1387
|
+
TransitGatewayRouteTableAttachment?:
|
|
1388
|
+
| TransitGatewayRouteTableAttachment
|
|
1389
|
+
| undefined;
|
|
1376
1390
|
}
|
|
1377
1391
|
export interface GetVpcAttachmentRequest {
|
|
1378
1392
|
AttachmentId: string | undefined;
|
|
1379
1393
|
}
|
|
1380
1394
|
export interface GetVpcAttachmentResponse {
|
|
1381
|
-
VpcAttachment?: VpcAttachment;
|
|
1395
|
+
VpcAttachment?: VpcAttachment | undefined;
|
|
1382
1396
|
}
|
|
1383
1397
|
export interface ListAttachmentsRequest {
|
|
1384
|
-
CoreNetworkId?: string;
|
|
1385
|
-
AttachmentType?: AttachmentType;
|
|
1386
|
-
EdgeLocation?: string;
|
|
1387
|
-
State?: AttachmentState;
|
|
1388
|
-
MaxResults?: number;
|
|
1389
|
-
NextToken?: string;
|
|
1398
|
+
CoreNetworkId?: string | undefined;
|
|
1399
|
+
AttachmentType?: AttachmentType | undefined;
|
|
1400
|
+
EdgeLocation?: string | undefined;
|
|
1401
|
+
State?: AttachmentState | undefined;
|
|
1402
|
+
MaxResults?: number | undefined;
|
|
1403
|
+
NextToken?: string | undefined;
|
|
1390
1404
|
}
|
|
1391
1405
|
export interface ListAttachmentsResponse {
|
|
1392
|
-
Attachments?: Attachment[];
|
|
1393
|
-
NextToken?: string;
|
|
1406
|
+
Attachments?: Attachment[] | undefined;
|
|
1407
|
+
NextToken?: string | undefined;
|
|
1394
1408
|
}
|
|
1395
1409
|
export interface ListConnectPeersRequest {
|
|
1396
|
-
CoreNetworkId?: string;
|
|
1397
|
-
ConnectAttachmentId?: string;
|
|
1398
|
-
MaxResults?: number;
|
|
1399
|
-
NextToken?: string;
|
|
1410
|
+
CoreNetworkId?: string | undefined;
|
|
1411
|
+
ConnectAttachmentId?: string | undefined;
|
|
1412
|
+
MaxResults?: number | undefined;
|
|
1413
|
+
NextToken?: string | undefined;
|
|
1400
1414
|
}
|
|
1401
1415
|
export interface ListConnectPeersResponse {
|
|
1402
|
-
ConnectPeers?: ConnectPeerSummary[];
|
|
1403
|
-
NextToken?: string;
|
|
1416
|
+
ConnectPeers?: ConnectPeerSummary[] | undefined;
|
|
1417
|
+
NextToken?: string | undefined;
|
|
1404
1418
|
}
|
|
1405
1419
|
export interface ListCoreNetworkPolicyVersionsRequest {
|
|
1406
1420
|
CoreNetworkId: string | undefined;
|
|
1407
|
-
MaxResults?: number;
|
|
1408
|
-
NextToken?: string;
|
|
1421
|
+
MaxResults?: number | undefined;
|
|
1422
|
+
NextToken?: string | undefined;
|
|
1409
1423
|
}
|
|
1410
1424
|
export interface ListCoreNetworkPolicyVersionsResponse {
|
|
1411
|
-
CoreNetworkPolicyVersions?: CoreNetworkPolicyVersion[];
|
|
1412
|
-
NextToken?: string;
|
|
1425
|
+
CoreNetworkPolicyVersions?: CoreNetworkPolicyVersion[] | undefined;
|
|
1426
|
+
NextToken?: string | undefined;
|
|
1413
1427
|
}
|
|
1414
1428
|
export interface ListCoreNetworksRequest {
|
|
1415
|
-
MaxResults?: number;
|
|
1416
|
-
NextToken?: string;
|
|
1429
|
+
MaxResults?: number | undefined;
|
|
1430
|
+
NextToken?: string | undefined;
|
|
1417
1431
|
}
|
|
1418
1432
|
export interface ListCoreNetworksResponse {
|
|
1419
|
-
CoreNetworks?: CoreNetworkSummary[];
|
|
1420
|
-
NextToken?: string;
|
|
1433
|
+
CoreNetworks?: CoreNetworkSummary[] | undefined;
|
|
1434
|
+
NextToken?: string | undefined;
|
|
1421
1435
|
}
|
|
1422
1436
|
export interface ListOrganizationServiceAccessStatusRequest {
|
|
1423
|
-
MaxResults?: number;
|
|
1424
|
-
NextToken?: string;
|
|
1437
|
+
MaxResults?: number | undefined;
|
|
1438
|
+
NextToken?: string | undefined;
|
|
1425
1439
|
}
|
|
1426
1440
|
export interface OrganizationStatus {
|
|
1427
|
-
OrganizationId?: string;
|
|
1428
|
-
OrganizationAwsServiceAccessStatus?: string;
|
|
1429
|
-
SLRDeploymentStatus?: string;
|
|
1430
|
-
AccountStatusList?: AccountStatus[];
|
|
1441
|
+
OrganizationId?: string | undefined;
|
|
1442
|
+
OrganizationAwsServiceAccessStatus?: string | undefined;
|
|
1443
|
+
SLRDeploymentStatus?: string | undefined;
|
|
1444
|
+
AccountStatusList?: AccountStatus[] | undefined;
|
|
1431
1445
|
}
|
|
1432
1446
|
export interface ListOrganizationServiceAccessStatusResponse {
|
|
1433
|
-
OrganizationStatus?: OrganizationStatus;
|
|
1434
|
-
NextToken?: string;
|
|
1447
|
+
OrganizationStatus?: OrganizationStatus | undefined;
|
|
1448
|
+
NextToken?: string | undefined;
|
|
1435
1449
|
}
|
|
1436
1450
|
export interface ListPeeringsRequest {
|
|
1437
|
-
CoreNetworkId?: string;
|
|
1438
|
-
PeeringType?: PeeringType;
|
|
1439
|
-
EdgeLocation?: string;
|
|
1440
|
-
State?: PeeringState;
|
|
1441
|
-
MaxResults?: number;
|
|
1442
|
-
NextToken?: string;
|
|
1451
|
+
CoreNetworkId?: string | undefined;
|
|
1452
|
+
PeeringType?: PeeringType | undefined;
|
|
1453
|
+
EdgeLocation?: string | undefined;
|
|
1454
|
+
State?: PeeringState | undefined;
|
|
1455
|
+
MaxResults?: number | undefined;
|
|
1456
|
+
NextToken?: string | undefined;
|
|
1443
1457
|
}
|
|
1444
1458
|
export interface ListPeeringsResponse {
|
|
1445
|
-
Peerings?: Peering[];
|
|
1446
|
-
NextToken?: string;
|
|
1459
|
+
Peerings?: Peering[] | undefined;
|
|
1460
|
+
NextToken?: string | undefined;
|
|
1447
1461
|
}
|
|
1448
1462
|
export interface ListTagsForResourceRequest {
|
|
1449
1463
|
ResourceArn: string | undefined;
|
|
1450
1464
|
}
|
|
1451
1465
|
export interface ListTagsForResourceResponse {
|
|
1452
|
-
TagList?: Tag[];
|
|
1466
|
+
TagList?: Tag[] | undefined;
|
|
1453
1467
|
}
|
|
1454
1468
|
export interface PutCoreNetworkPolicyRequest {
|
|
1455
1469
|
CoreNetworkId: string | undefined;
|
|
1456
1470
|
PolicyDocument: __LazyJsonString | string | undefined;
|
|
1457
|
-
Description?: string;
|
|
1458
|
-
LatestVersionId?: number;
|
|
1459
|
-
ClientToken?: string;
|
|
1471
|
+
Description?: string | undefined;
|
|
1472
|
+
LatestVersionId?: number | undefined;
|
|
1473
|
+
ClientToken?: string | undefined;
|
|
1460
1474
|
}
|
|
1461
1475
|
export interface PutCoreNetworkPolicyResponse {
|
|
1462
|
-
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
1476
|
+
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
1463
1477
|
}
|
|
1464
1478
|
export interface PutResourcePolicyRequest {
|
|
1465
1479
|
PolicyDocument: __LazyJsonString | string | undefined;
|
|
@@ -1471,40 +1485,40 @@ export interface RegisterTransitGatewayRequest {
|
|
|
1471
1485
|
TransitGatewayArn: string | undefined;
|
|
1472
1486
|
}
|
|
1473
1487
|
export interface RegisterTransitGatewayResponse {
|
|
1474
|
-
TransitGatewayRegistration?: TransitGatewayRegistration;
|
|
1488
|
+
TransitGatewayRegistration?: TransitGatewayRegistration | undefined;
|
|
1475
1489
|
}
|
|
1476
1490
|
export interface RejectAttachmentRequest {
|
|
1477
1491
|
AttachmentId: string | undefined;
|
|
1478
1492
|
}
|
|
1479
1493
|
export interface RejectAttachmentResponse {
|
|
1480
|
-
Attachment?: Attachment;
|
|
1494
|
+
Attachment?: Attachment | undefined;
|
|
1481
1495
|
}
|
|
1482
1496
|
export interface RestoreCoreNetworkPolicyVersionRequest {
|
|
1483
1497
|
CoreNetworkId: string | undefined;
|
|
1484
1498
|
PolicyVersionId: number | undefined;
|
|
1485
1499
|
}
|
|
1486
1500
|
export interface RestoreCoreNetworkPolicyVersionResponse {
|
|
1487
|
-
CoreNetworkPolicy?: CoreNetworkPolicy;
|
|
1501
|
+
CoreNetworkPolicy?: CoreNetworkPolicy | undefined;
|
|
1488
1502
|
}
|
|
1489
1503
|
export interface StartOrganizationServiceAccessUpdateRequest {
|
|
1490
1504
|
Action: string | undefined;
|
|
1491
1505
|
}
|
|
1492
1506
|
export interface StartOrganizationServiceAccessUpdateResponse {
|
|
1493
|
-
OrganizationStatus?: OrganizationStatus;
|
|
1507
|
+
OrganizationStatus?: OrganizationStatus | undefined;
|
|
1494
1508
|
}
|
|
1495
1509
|
export interface RouteAnalysisEndpointOptionsSpecification {
|
|
1496
|
-
TransitGatewayAttachmentArn?: string;
|
|
1497
|
-
IpAddress?: string;
|
|
1510
|
+
TransitGatewayAttachmentArn?: string | undefined;
|
|
1511
|
+
IpAddress?: string | undefined;
|
|
1498
1512
|
}
|
|
1499
1513
|
export interface StartRouteAnalysisRequest {
|
|
1500
1514
|
GlobalNetworkId: string | undefined;
|
|
1501
1515
|
Source: RouteAnalysisEndpointOptionsSpecification | undefined;
|
|
1502
1516
|
Destination: RouteAnalysisEndpointOptionsSpecification | undefined;
|
|
1503
|
-
IncludeReturnPath?: boolean;
|
|
1504
|
-
UseMiddleboxes?: boolean;
|
|
1517
|
+
IncludeReturnPath?: boolean | undefined;
|
|
1518
|
+
UseMiddleboxes?: boolean | undefined;
|
|
1505
1519
|
}
|
|
1506
1520
|
export interface StartRouteAnalysisResponse {
|
|
1507
|
-
RouteAnalysis?: RouteAnalysis;
|
|
1521
|
+
RouteAnalysis?: RouteAnalysis | undefined;
|
|
1508
1522
|
}
|
|
1509
1523
|
export interface TagResourceRequest {
|
|
1510
1524
|
ResourceArn: string | undefined;
|
|
@@ -1519,52 +1533,52 @@ export interface UntagResourceResponse {}
|
|
|
1519
1533
|
export interface UpdateConnectionRequest {
|
|
1520
1534
|
GlobalNetworkId: string | undefined;
|
|
1521
1535
|
ConnectionId: string | undefined;
|
|
1522
|
-
LinkId?: string;
|
|
1523
|
-
ConnectedLinkId?: string;
|
|
1524
|
-
Description?: string;
|
|
1536
|
+
LinkId?: string | undefined;
|
|
1537
|
+
ConnectedLinkId?: string | undefined;
|
|
1538
|
+
Description?: string | undefined;
|
|
1525
1539
|
}
|
|
1526
1540
|
export interface UpdateConnectionResponse {
|
|
1527
|
-
Connection?: Connection;
|
|
1541
|
+
Connection?: Connection | undefined;
|
|
1528
1542
|
}
|
|
1529
1543
|
export interface UpdateCoreNetworkRequest {
|
|
1530
1544
|
CoreNetworkId: string | undefined;
|
|
1531
|
-
Description?: string;
|
|
1545
|
+
Description?: string | undefined;
|
|
1532
1546
|
}
|
|
1533
1547
|
export interface UpdateCoreNetworkResponse {
|
|
1534
|
-
CoreNetwork?: CoreNetwork;
|
|
1548
|
+
CoreNetwork?: CoreNetwork | undefined;
|
|
1535
1549
|
}
|
|
1536
1550
|
export interface UpdateDeviceRequest {
|
|
1537
1551
|
GlobalNetworkId: string | undefined;
|
|
1538
1552
|
DeviceId: string | undefined;
|
|
1539
|
-
AWSLocation?: AWSLocation;
|
|
1540
|
-
Description?: string;
|
|
1541
|
-
Type?: string;
|
|
1542
|
-
Vendor?: string;
|
|
1543
|
-
Model?: string;
|
|
1544
|
-
SerialNumber?: string;
|
|
1545
|
-
Location?: Location;
|
|
1546
|
-
SiteId?: string;
|
|
1553
|
+
AWSLocation?: AWSLocation | undefined;
|
|
1554
|
+
Description?: string | undefined;
|
|
1555
|
+
Type?: string | undefined;
|
|
1556
|
+
Vendor?: string | undefined;
|
|
1557
|
+
Model?: string | undefined;
|
|
1558
|
+
SerialNumber?: string | undefined;
|
|
1559
|
+
Location?: Location | undefined;
|
|
1560
|
+
SiteId?: string | undefined;
|
|
1547
1561
|
}
|
|
1548
1562
|
export interface UpdateDeviceResponse {
|
|
1549
|
-
Device?: Device;
|
|
1563
|
+
Device?: Device | undefined;
|
|
1550
1564
|
}
|
|
1551
1565
|
export interface UpdateGlobalNetworkRequest {
|
|
1552
1566
|
GlobalNetworkId: string | undefined;
|
|
1553
|
-
Description?: string;
|
|
1567
|
+
Description?: string | undefined;
|
|
1554
1568
|
}
|
|
1555
1569
|
export interface UpdateGlobalNetworkResponse {
|
|
1556
|
-
GlobalNetwork?: GlobalNetwork;
|
|
1570
|
+
GlobalNetwork?: GlobalNetwork | undefined;
|
|
1557
1571
|
}
|
|
1558
1572
|
export interface UpdateLinkRequest {
|
|
1559
1573
|
GlobalNetworkId: string | undefined;
|
|
1560
1574
|
LinkId: string | undefined;
|
|
1561
|
-
Description?: string;
|
|
1562
|
-
Type?: string;
|
|
1563
|
-
Bandwidth?: Bandwidth;
|
|
1564
|
-
Provider?: string;
|
|
1575
|
+
Description?: string | undefined;
|
|
1576
|
+
Type?: string | undefined;
|
|
1577
|
+
Bandwidth?: Bandwidth | undefined;
|
|
1578
|
+
Provider?: string | undefined;
|
|
1565
1579
|
}
|
|
1566
1580
|
export interface UpdateLinkResponse {
|
|
1567
|
-
Link?: Link;
|
|
1581
|
+
Link?: Link | undefined;
|
|
1568
1582
|
}
|
|
1569
1583
|
export interface UpdateNetworkResourceMetadataRequest {
|
|
1570
1584
|
GlobalNetworkId: string | undefined;
|
|
@@ -1572,26 +1586,26 @@ export interface UpdateNetworkResourceMetadataRequest {
|
|
|
1572
1586
|
Metadata: Record<string, string> | undefined;
|
|
1573
1587
|
}
|
|
1574
1588
|
export interface UpdateNetworkResourceMetadataResponse {
|
|
1575
|
-
ResourceArn?: string;
|
|
1576
|
-
Metadata?: Record<string, string
|
|
1589
|
+
ResourceArn?: string | undefined;
|
|
1590
|
+
Metadata?: Record<string, string> | undefined;
|
|
1577
1591
|
}
|
|
1578
1592
|
export interface UpdateSiteRequest {
|
|
1579
1593
|
GlobalNetworkId: string | undefined;
|
|
1580
1594
|
SiteId: string | undefined;
|
|
1581
|
-
Description?: string;
|
|
1582
|
-
Location?: Location;
|
|
1595
|
+
Description?: string | undefined;
|
|
1596
|
+
Location?: Location | undefined;
|
|
1583
1597
|
}
|
|
1584
1598
|
export interface UpdateSiteResponse {
|
|
1585
|
-
Site?: Site;
|
|
1599
|
+
Site?: Site | undefined;
|
|
1586
1600
|
}
|
|
1587
1601
|
export interface UpdateVpcAttachmentRequest {
|
|
1588
1602
|
AttachmentId: string | undefined;
|
|
1589
|
-
AddSubnetArns?: string[];
|
|
1590
|
-
RemoveSubnetArns?: string[];
|
|
1591
|
-
Options?: VpcOptions;
|
|
1603
|
+
AddSubnetArns?: string[] | undefined;
|
|
1604
|
+
RemoveSubnetArns?: string[] | undefined;
|
|
1605
|
+
Options?: VpcOptions | undefined;
|
|
1592
1606
|
}
|
|
1593
1607
|
export interface UpdateVpcAttachmentResponse {
|
|
1594
|
-
VpcAttachment?: VpcAttachment;
|
|
1608
|
+
VpcAttachment?: VpcAttachment | undefined;
|
|
1595
1609
|
}
|
|
1596
1610
|
export declare const LocationFilterSensitiveLog: (obj: Location) => any;
|
|
1597
1611
|
export declare const CreateDeviceRequestFilterSensitiveLog: (
|