@aws-sdk/client-networkmanager 3.933.0 → 3.935.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.
@@ -1,35 +1,44 @@
1
+ import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
1
2
  import {
2
- AutomaticJsonStringConversion as __AutomaticJsonStringConversion,
3
- ExceptionOptionType as __ExceptionOptionType,
4
- } from "@smithy/smithy-client";
5
- import { NetworkManagerServiceException as __BaseException } from "./NetworkManagerServiceException";
3
+ AttachmentErrorCode,
4
+ AttachmentState,
5
+ AttachmentType,
6
+ ChangeAction,
7
+ ChangeSetState,
8
+ ChangeStatus,
9
+ ChangeType,
10
+ ConnectionState,
11
+ ConnectionStatus,
12
+ ConnectionType,
13
+ ConnectPeerAssociationState,
14
+ ConnectPeerErrorCode,
15
+ ConnectPeerState,
16
+ CoreNetworkPolicyAlias,
17
+ CoreNetworkState,
18
+ CustomerGatewayAssociationState,
19
+ DeviceState,
20
+ GlobalNetworkState,
21
+ LinkAssociationState,
22
+ LinkState,
23
+ PeeringErrorCode,
24
+ PeeringState,
25
+ PeeringType,
26
+ RouteAnalysisCompletionReasonCode,
27
+ RouteAnalysisCompletionResultCode,
28
+ RouteAnalysisStatus,
29
+ RouteState,
30
+ RouteTableType,
31
+ RouteType,
32
+ SegmentActionServiceInsertion,
33
+ SendViaMode,
34
+ SiteState,
35
+ TransitGatewayConnectPeerAssociationState,
36
+ TransitGatewayRegistrationState,
37
+ TunnelProtocol,
38
+ } from "./enums";
6
39
  export interface AcceptAttachmentRequest {
7
40
  AttachmentId: string | undefined;
8
41
  }
9
- export declare const AttachmentType: {
10
- readonly CONNECT: "CONNECT";
11
- readonly DIRECT_CONNECT_GATEWAY: "DIRECT_CONNECT_GATEWAY";
12
- readonly SITE_TO_SITE_VPN: "SITE_TO_SITE_VPN";
13
- readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
14
- readonly VPC: "VPC";
15
- };
16
- export type AttachmentType =
17
- (typeof AttachmentType)[keyof typeof AttachmentType];
18
- export declare const AttachmentErrorCode: {
19
- readonly DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS: "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS";
20
- readonly DIRECT_CONNECT_GATEWAY_NOT_FOUND: "DIRECT_CONNECT_GATEWAY_NOT_FOUND";
21
- readonly DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF: "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF";
22
- readonly MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED: "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED";
23
- readonly SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE: "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE";
24
- readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
25
- readonly SUBNET_NO_FREE_ADDRESSES: "SUBNET_NO_FREE_ADDRESSES";
26
- readonly SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS";
27
- readonly SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE";
28
- readonly VPC_NOT_FOUND: "VPC_NOT_FOUND";
29
- readonly VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND";
30
- };
31
- export type AttachmentErrorCode =
32
- (typeof AttachmentErrorCode)[keyof typeof AttachmentErrorCode];
33
42
  export interface AttachmentError {
34
43
  Code?: AttachmentErrorCode | undefined;
35
44
  Message?: string | undefined;
@@ -50,19 +59,6 @@ export interface ProposedSegmentChange {
50
59
  AttachmentPolicyRuleNumber?: number | undefined;
51
60
  SegmentName?: string | undefined;
52
61
  }
53
- export declare const AttachmentState: {
54
- readonly AVAILABLE: "AVAILABLE";
55
- readonly CREATING: "CREATING";
56
- readonly DELETING: "DELETING";
57
- readonly FAILED: "FAILED";
58
- readonly PENDING_ATTACHMENT_ACCEPTANCE: "PENDING_ATTACHMENT_ACCEPTANCE";
59
- readonly PENDING_NETWORK_UPDATE: "PENDING_NETWORK_UPDATE";
60
- readonly PENDING_TAG_ACCEPTANCE: "PENDING_TAG_ACCEPTANCE";
61
- readonly REJECTED: "REJECTED";
62
- readonly UPDATING: "UPDATING";
63
- };
64
- export type AttachmentState =
65
- (typeof AttachmentState)[keyof typeof AttachmentState];
66
62
  export interface Attachment {
67
63
  CoreNetworkId?: string | undefined;
68
64
  CoreNetworkArn?: string | undefined;
@@ -88,73 +84,10 @@ export interface Attachment {
88
84
  export interface AcceptAttachmentResponse {
89
85
  Attachment?: Attachment | undefined;
90
86
  }
91
- export declare class AccessDeniedException extends __BaseException {
92
- readonly name: "AccessDeniedException";
93
- readonly $fault: "client";
94
- Message: string | undefined;
95
- constructor(
96
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
97
- );
98
- }
99
- export declare class ConflictException extends __BaseException {
100
- readonly name: "ConflictException";
101
- readonly $fault: "client";
102
- Message: string | undefined;
103
- ResourceId: string | undefined;
104
- ResourceType: string | undefined;
105
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
106
- }
107
- export declare class InternalServerException extends __BaseException {
108
- readonly name: "InternalServerException";
109
- readonly $fault: "server";
110
- Message: string | undefined;
111
- RetryAfterSeconds?: number | undefined;
112
- constructor(
113
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
114
- );
115
- }
116
- export declare class ResourceNotFoundException extends __BaseException {
117
- readonly name: "ResourceNotFoundException";
118
- readonly $fault: "client";
119
- Message: string | undefined;
120
- ResourceId: string | undefined;
121
- ResourceType: string | undefined;
122
- Context?: Record<string, string> | undefined;
123
- constructor(
124
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
125
- );
126
- }
127
- export declare class ThrottlingException extends __BaseException {
128
- readonly name: "ThrottlingException";
129
- readonly $fault: "client";
130
- Message: string | undefined;
131
- RetryAfterSeconds?: number | undefined;
132
- constructor(
133
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
134
- );
135
- }
136
87
  export interface ValidationExceptionField {
137
88
  Name: string | undefined;
138
89
  Message: string | undefined;
139
90
  }
140
- export declare const ValidationExceptionReason: {
141
- readonly CANNOT_PARSE: "CannotParse";
142
- readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
143
- readonly OTHER: "Other";
144
- readonly UNKNOWN_OPERATION: "UnknownOperation";
145
- };
146
- export type ValidationExceptionReason =
147
- (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
148
- export declare class ValidationException extends __BaseException {
149
- readonly name: "ValidationException";
150
- readonly $fault: "client";
151
- Message: string | undefined;
152
- Reason?: ValidationExceptionReason | undefined;
153
- Fields?: ValidationExceptionField[] | undefined;
154
- constructor(
155
- opts: __ExceptionOptionType<ValidationException, __BaseException>
156
- );
157
- }
158
91
  export interface AccountStatus {
159
92
  AccountId?: string | undefined;
160
93
  SLRDeploymentStatus?: string | undefined;
@@ -165,14 +98,6 @@ export interface AssociateConnectPeerRequest {
165
98
  DeviceId: string | undefined;
166
99
  LinkId?: string | undefined;
167
100
  }
168
- export declare const ConnectPeerAssociationState: {
169
- readonly available: "AVAILABLE";
170
- readonly deleted: "DELETED";
171
- readonly deleting: "DELETING";
172
- readonly pending: "PENDING";
173
- };
174
- export type ConnectPeerAssociationState =
175
- (typeof ConnectPeerAssociationState)[keyof typeof ConnectPeerAssociationState];
176
101
  export interface ConnectPeerAssociation {
177
102
  ConnectPeerId?: string | undefined;
178
103
  GlobalNetworkId?: string | undefined;
@@ -183,32 +108,12 @@ export interface ConnectPeerAssociation {
183
108
  export interface AssociateConnectPeerResponse {
184
109
  ConnectPeerAssociation?: ConnectPeerAssociation | undefined;
185
110
  }
186
- export declare class ServiceQuotaExceededException extends __BaseException {
187
- readonly name: "ServiceQuotaExceededException";
188
- readonly $fault: "client";
189
- Message: string | undefined;
190
- ResourceId?: string | undefined;
191
- ResourceType?: string | undefined;
192
- LimitCode: string | undefined;
193
- ServiceCode: string | undefined;
194
- constructor(
195
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
196
- );
197
- }
198
111
  export interface AssociateCustomerGatewayRequest {
199
112
  CustomerGatewayArn: string | undefined;
200
113
  GlobalNetworkId: string | undefined;
201
114
  DeviceId: string | undefined;
202
115
  LinkId?: string | undefined;
203
116
  }
204
- export declare const CustomerGatewayAssociationState: {
205
- readonly available: "AVAILABLE";
206
- readonly deleted: "DELETED";
207
- readonly deleting: "DELETING";
208
- readonly pending: "PENDING";
209
- };
210
- export type CustomerGatewayAssociationState =
211
- (typeof CustomerGatewayAssociationState)[keyof typeof CustomerGatewayAssociationState];
212
117
  export interface CustomerGatewayAssociation {
213
118
  CustomerGatewayArn?: string | undefined;
214
119
  GlobalNetworkId?: string | undefined;
@@ -224,14 +129,6 @@ export interface AssociateLinkRequest {
224
129
  DeviceId: string | undefined;
225
130
  LinkId: string | undefined;
226
131
  }
227
- export declare const LinkAssociationState: {
228
- readonly available: "AVAILABLE";
229
- readonly deleted: "DELETED";
230
- readonly deleting: "DELETING";
231
- readonly pending: "PENDING";
232
- };
233
- export type LinkAssociationState =
234
- (typeof LinkAssociationState)[keyof typeof LinkAssociationState];
235
132
  export interface LinkAssociation {
236
133
  GlobalNetworkId?: string | undefined;
237
134
  DeviceId?: string | undefined;
@@ -247,14 +144,6 @@ export interface AssociateTransitGatewayConnectPeerRequest {
247
144
  DeviceId: string | undefined;
248
145
  LinkId?: string | undefined;
249
146
  }
250
- export declare const TransitGatewayConnectPeerAssociationState: {
251
- readonly available: "AVAILABLE";
252
- readonly deleted: "DELETED";
253
- readonly deleting: "DELETING";
254
- readonly pending: "PENDING";
255
- };
256
- export type TransitGatewayConnectPeerAssociationState =
257
- (typeof TransitGatewayConnectPeerAssociationState)[keyof typeof TransitGatewayConnectPeerAssociationState];
258
147
  export interface TransitGatewayConnectPeerAssociation {
259
148
  TransitGatewayConnectPeerArn?: string | undefined;
260
149
  GlobalNetworkId?: string | undefined;
@@ -278,48 +167,6 @@ export interface Bandwidth {
278
167
  export interface BgpOptions {
279
168
  PeerAsn?: number | undefined;
280
169
  }
281
- export declare const ChangeAction: {
282
- readonly ADD: "ADD";
283
- readonly MODIFY: "MODIFY";
284
- readonly REMOVE: "REMOVE";
285
- };
286
- export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
287
- export declare const ChangeSetState: {
288
- readonly EXECUTING: "EXECUTING";
289
- readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
290
- readonly FAILED_GENERATION: "FAILED_GENERATION";
291
- readonly OUT_OF_DATE: "OUT_OF_DATE";
292
- readonly PENDING_GENERATION: "PENDING_GENERATION";
293
- readonly READY_TO_EXECUTE: "READY_TO_EXECUTE";
294
- };
295
- export type ChangeSetState =
296
- (typeof ChangeSetState)[keyof typeof ChangeSetState];
297
- export declare const ChangeStatus: {
298
- readonly COMPLETE: "COMPLETE";
299
- readonly FAILED: "FAILED";
300
- readonly IN_PROGRESS: "IN_PROGRESS";
301
- readonly NOT_STARTED: "NOT_STARTED";
302
- };
303
- export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
304
- export declare const ChangeType: {
305
- readonly ATTACHMENT_MAPPING: "ATTACHMENT_MAPPING";
306
- readonly ATTACHMENT_POLICIES_CONFIGURATION: "ATTACHMENT_POLICIES_CONFIGURATION";
307
- readonly ATTACHMENT_ROUTE_PROPAGATION: "ATTACHMENT_ROUTE_PROPAGATION";
308
- readonly ATTACHMENT_ROUTE_STATIC: "ATTACHMENT_ROUTE_STATIC";
309
- readonly CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION";
310
- readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
311
- readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
312
- readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
313
- readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
314
- readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
315
- };
316
- export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
317
- export declare const TunnelProtocol: {
318
- readonly GRE: "GRE";
319
- readonly NO_ENCAP: "NO_ENCAP";
320
- };
321
- export type TunnelProtocol =
322
- (typeof TunnelProtocol)[keyof typeof TunnelProtocol];
323
170
  export interface ConnectAttachmentOptions {
324
171
  Protocol?: TunnelProtocol | undefined;
325
172
  }
@@ -328,14 +175,6 @@ export interface ConnectAttachment {
328
175
  TransportAttachmentId?: string | undefined;
329
176
  Options?: ConnectAttachmentOptions | undefined;
330
177
  }
331
- export declare const ConnectionState: {
332
- readonly available: "AVAILABLE";
333
- readonly deleting: "DELETING";
334
- readonly pending: "PENDING";
335
- readonly updating: "UPDATING";
336
- };
337
- export type ConnectionState =
338
- (typeof ConnectionState)[keyof typeof ConnectionState];
339
178
  export interface Connection {
340
179
  ConnectionId?: string | undefined;
341
180
  ConnectionArn?: string | undefined;
@@ -349,18 +188,6 @@ export interface Connection {
349
188
  State?: ConnectionState | undefined;
350
189
  Tags?: Tag[] | undefined;
351
190
  }
352
- export declare const ConnectionStatus: {
353
- readonly DOWN: "DOWN";
354
- readonly UP: "UP";
355
- };
356
- export type ConnectionStatus =
357
- (typeof ConnectionStatus)[keyof typeof ConnectionStatus];
358
- export declare const ConnectionType: {
359
- readonly BGP: "BGP";
360
- readonly IPSEC: "IPSEC";
361
- };
362
- export type ConnectionType =
363
- (typeof ConnectionType)[keyof typeof ConnectionType];
364
191
  export interface ConnectionHealth {
365
192
  Type?: ConnectionType | undefined;
366
193
  Status?: ConnectionStatus | undefined;
@@ -379,30 +206,12 @@ export interface ConnectPeerConfiguration {
379
206
  Protocol?: TunnelProtocol | undefined;
380
207
  BgpConfigurations?: ConnectPeerBgpConfiguration[] | undefined;
381
208
  }
382
- export declare const ConnectPeerErrorCode: {
383
- readonly EDGE_LOCATION_NO_FREE_IPS: "EDGE_LOCATION_NO_FREE_IPS";
384
- readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
385
- readonly INVALID_INSIDE_CIDR_BLOCK: "INVALID_INSIDE_CIDR_BLOCK";
386
- readonly IP_OUTSIDE_SUBNET_CIDR_RANGE: "IP_OUTSIDE_SUBNET_CIDR_RANGE";
387
- readonly NO_ASSOCIATED_CIDR_BLOCK: "NO_ASSOCIATED_CIDR_BLOCK";
388
- readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
389
- };
390
- export type ConnectPeerErrorCode =
391
- (typeof ConnectPeerErrorCode)[keyof typeof ConnectPeerErrorCode];
392
209
  export interface ConnectPeerError {
393
210
  Code?: ConnectPeerErrorCode | undefined;
394
211
  Message?: string | undefined;
395
212
  ResourceArn?: string | undefined;
396
213
  RequestId?: string | undefined;
397
214
  }
398
- export declare const ConnectPeerState: {
399
- readonly AVAILABLE: "AVAILABLE";
400
- readonly CREATING: "CREATING";
401
- readonly DELETING: "DELETING";
402
- readonly FAILED: "FAILED";
403
- };
404
- export type ConnectPeerState =
405
- (typeof ConnectPeerState)[keyof typeof ConnectPeerState];
406
215
  export interface ConnectPeer {
407
216
  CoreNetworkId?: string | undefined;
408
217
  ConnectAttachmentId?: string | undefined;
@@ -444,14 +253,6 @@ export interface CoreNetworkSegment {
444
253
  EdgeLocations?: string[] | undefined;
445
254
  SharedSegments?: string[] | undefined;
446
255
  }
447
- export declare const CoreNetworkState: {
448
- readonly AVAILABLE: "AVAILABLE";
449
- readonly CREATING: "CREATING";
450
- readonly DELETING: "DELETING";
451
- readonly UPDATING: "UPDATING";
452
- };
453
- export type CoreNetworkState =
454
- (typeof CoreNetworkState)[keyof typeof CoreNetworkState];
455
256
  export interface CoreNetwork {
456
257
  GlobalNetworkId?: string | undefined;
457
258
  CoreNetworkId?: string | undefined;
@@ -464,17 +265,6 @@ export interface CoreNetwork {
464
265
  Edges?: CoreNetworkEdge[] | undefined;
465
266
  Tags?: Tag[] | undefined;
466
267
  }
467
- export declare const SegmentActionServiceInsertion: {
468
- readonly SEND_TO: "send-to";
469
- readonly SEND_VIA: "send-via";
470
- };
471
- export type SegmentActionServiceInsertion =
472
- (typeof SegmentActionServiceInsertion)[keyof typeof SegmentActionServiceInsertion];
473
- export declare const SendViaMode: {
474
- readonly DUAL_HOP: "dual-hop";
475
- readonly SINGLE_HOP: "single-hop";
476
- };
477
- export type SendViaMode = (typeof SendViaMode)[keyof typeof SendViaMode];
478
268
  export interface NetworkFunctionGroup {
479
269
  Name?: string | undefined;
480
270
  }
@@ -537,12 +327,6 @@ export interface CoreNetworkNetworkFunctionGroupIdentifier {
537
327
  NetworkFunctionGroupName?: string | undefined;
538
328
  EdgeLocation?: string | undefined;
539
329
  }
540
- export declare const CoreNetworkPolicyAlias: {
541
- readonly LATEST: "LATEST";
542
- readonly LIVE: "LIVE";
543
- };
544
- export type CoreNetworkPolicyAlias =
545
- (typeof CoreNetworkPolicyAlias)[keyof typeof CoreNetworkPolicyAlias];
546
330
  export interface CoreNetworkPolicyError {
547
331
  ErrorCode: string | undefined;
548
332
  Message: string | undefined;
@@ -558,15 +342,6 @@ export interface CoreNetworkPolicy {
558
342
  PolicyErrors?: CoreNetworkPolicyError[] | undefined;
559
343
  PolicyDocument?: __AutomaticJsonStringConversion | string | undefined;
560
344
  }
561
- export declare class CoreNetworkPolicyException extends __BaseException {
562
- readonly name: "CoreNetworkPolicyException";
563
- readonly $fault: "client";
564
- Message: string | undefined;
565
- Errors?: CoreNetworkPolicyError[] | undefined;
566
- constructor(
567
- opts: __ExceptionOptionType<CoreNetworkPolicyException, __BaseException>
568
- );
569
- }
570
345
  export interface CoreNetworkPolicyVersion {
571
346
  CoreNetworkId?: string | undefined;
572
347
  PolicyVersionId?: number | undefined;
@@ -652,13 +427,6 @@ export interface CreateDeviceRequest {
652
427
  SiteId?: string | undefined;
653
428
  Tags?: Tag[] | undefined;
654
429
  }
655
- export declare const DeviceState: {
656
- readonly available: "AVAILABLE";
657
- readonly deleting: "DELETING";
658
- readonly pending: "PENDING";
659
- readonly updating: "UPDATING";
660
- };
661
- export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
662
430
  export interface Device {
663
431
  DeviceId?: string | undefined;
664
432
  DeviceArn?: string | undefined;
@@ -696,14 +464,6 @@ export interface CreateGlobalNetworkRequest {
696
464
  Description?: string | undefined;
697
465
  Tags?: Tag[] | undefined;
698
466
  }
699
- export declare const GlobalNetworkState: {
700
- readonly available: "AVAILABLE";
701
- readonly deleting: "DELETING";
702
- readonly pending: "PENDING";
703
- readonly updating: "UPDATING";
704
- };
705
- export type GlobalNetworkState =
706
- (typeof GlobalNetworkState)[keyof typeof GlobalNetworkState];
707
467
  export interface GlobalNetwork {
708
468
  GlobalNetworkId?: string | undefined;
709
469
  GlobalNetworkArn?: string | undefined;
@@ -724,13 +484,6 @@ export interface CreateLinkRequest {
724
484
  SiteId: string | undefined;
725
485
  Tags?: Tag[] | undefined;
726
486
  }
727
- export declare const LinkState: {
728
- readonly available: "AVAILABLE";
729
- readonly deleting: "DELETING";
730
- readonly pending: "PENDING";
731
- readonly updating: "UPDATING";
732
- };
733
- export type LinkState = (typeof LinkState)[keyof typeof LinkState];
734
487
  export interface Link {
735
488
  LinkId?: string | undefined;
736
489
  LinkArn?: string | undefined;
@@ -753,13 +506,6 @@ export interface CreateSiteRequest {
753
506
  Location?: Location | undefined;
754
507
  Tags?: Tag[] | undefined;
755
508
  }
756
- export declare const SiteState: {
757
- readonly available: "AVAILABLE";
758
- readonly deleting: "DELETING";
759
- readonly pending: "PENDING";
760
- readonly updating: "UPDATING";
761
- };
762
- export type SiteState = (typeof SiteState)[keyof typeof SiteState];
763
509
  export interface Site {
764
510
  SiteId?: string | undefined;
765
511
  SiteArn?: string | undefined;
@@ -792,16 +538,6 @@ export interface CreateTransitGatewayPeeringRequest {
792
538
  Tags?: Tag[] | undefined;
793
539
  ClientToken?: string | undefined;
794
540
  }
795
- export declare const PeeringErrorCode: {
796
- readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
797
- readonly INTERNAL_ERROR: "INTERNAL_ERROR";
798
- readonly INVALID_TRANSIT_GATEWAY_STATE: "INVALID_TRANSIT_GATEWAY_STATE";
799
- readonly MISSING_REQUIRED_PERMISSIONS: "MISSING_PERMISSIONS";
800
- readonly TRANSIT_GATEWAY_NOT_FOUND: "TRANSIT_GATEWAY_NOT_FOUND";
801
- readonly TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED: "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED";
802
- };
803
- export type PeeringErrorCode =
804
- (typeof PeeringErrorCode)[keyof typeof PeeringErrorCode];
805
541
  export interface PermissionsErrorContext {
806
542
  MissingPermission?: string | undefined;
807
543
  }
@@ -812,17 +548,6 @@ export interface PeeringError {
812
548
  RequestId?: string | undefined;
813
549
  MissingPermissionsContext?: PermissionsErrorContext | undefined;
814
550
  }
815
- export declare const PeeringType: {
816
- readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
817
- };
818
- export type PeeringType = (typeof PeeringType)[keyof typeof PeeringType];
819
- export declare const PeeringState: {
820
- readonly AVAILABLE: "AVAILABLE";
821
- readonly CREATING: "CREATING";
822
- readonly DELETING: "DELETING";
823
- readonly FAILED: "FAILED";
824
- };
825
- export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
826
551
  export interface Peering {
827
552
  CoreNetworkId?: string | undefined;
828
553
  CoreNetworkArn?: string | undefined;
@@ -955,15 +680,6 @@ export interface DeregisterTransitGatewayRequest {
955
680
  GlobalNetworkId: string | undefined;
956
681
  TransitGatewayArn: string | undefined;
957
682
  }
958
- export declare const TransitGatewayRegistrationState: {
959
- readonly available: "AVAILABLE";
960
- readonly deleted: "DELETED";
961
- readonly deleting: "DELETING";
962
- readonly failed: "FAILED";
963
- readonly pending: "PENDING";
964
- };
965
- export type TransitGatewayRegistrationState =
966
- (typeof TransitGatewayRegistrationState)[keyof typeof TransitGatewayRegistrationState];
967
683
  export interface TransitGatewayRegistrationStateReason {
968
684
  Code?: TransitGatewayRegistrationState | undefined;
969
685
  Message?: string | undefined;
@@ -1207,16 +923,6 @@ export interface RouteTableIdentifier {
1207
923
  | CoreNetworkNetworkFunctionGroupIdentifier
1208
924
  | undefined;
1209
925
  }
1210
- export declare const RouteState: {
1211
- readonly ACTIVE: "ACTIVE";
1212
- readonly BLACKHOLE: "BLACKHOLE";
1213
- };
1214
- export type RouteState = (typeof RouteState)[keyof typeof RouteState];
1215
- export declare const RouteType: {
1216
- readonly PROPAGATED: "PROPAGATED";
1217
- readonly STATIC: "STATIC";
1218
- };
1219
- export type RouteType = (typeof RouteType)[keyof typeof RouteType];
1220
926
  export interface GetNetworkRoutesRequest {
1221
927
  GlobalNetworkId: string | undefined;
1222
928
  RouteTableIdentifier: RouteTableIdentifier | undefined;
@@ -1245,13 +951,6 @@ export interface NetworkRoute {
1245
951
  State?: RouteState | undefined;
1246
952
  Type?: RouteType | undefined;
1247
953
  }
1248
- export declare const RouteTableType: {
1249
- readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
1250
- readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
1251
- readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
1252
- };
1253
- export type RouteTableType =
1254
- (typeof RouteTableType)[keyof typeof RouteTableType];
1255
954
  export interface GetNetworkRoutesResponse {
1256
955
  RouteTableArn?: string | undefined;
1257
956
  CoreNetworkSegmentEdge?: CoreNetworkSegmentEdgeIdentifier | undefined;
@@ -1300,27 +999,6 @@ export interface RouteAnalysisEndpointOptions {
1300
999
  TransitGatewayArn?: string | undefined;
1301
1000
  IpAddress?: string | undefined;
1302
1001
  }
1303
- export declare const RouteAnalysisCompletionReasonCode: {
1304
- readonly BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND";
1305
- readonly CYCLIC_PATH_DETECTED: "CYCLIC_PATH_DETECTED";
1306
- readonly INACTIVE_ROUTE_FOR_DESTINATION_FOUND: "INACTIVE_ROUTE_FOR_DESTINATION_FOUND";
1307
- readonly MAX_HOPS_EXCEEDED: "MAX_HOPS_EXCEEDED";
1308
- readonly NO_DESTINATION_ARN_PROVIDED: "NO_DESTINATION_ARN_PROVIDED";
1309
- readonly POSSIBLE_MIDDLEBOX: "POSSIBLE_MIDDLEBOX";
1310
- readonly ROUTE_NOT_FOUND: "ROUTE_NOT_FOUND";
1311
- readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH";
1312
- readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND";
1313
- readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY: "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY";
1314
- readonly TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND";
1315
- };
1316
- export type RouteAnalysisCompletionReasonCode =
1317
- (typeof RouteAnalysisCompletionReasonCode)[keyof typeof RouteAnalysisCompletionReasonCode];
1318
- export declare const RouteAnalysisCompletionResultCode: {
1319
- readonly CONNECTED: "CONNECTED";
1320
- readonly NOT_CONNECTED: "NOT_CONNECTED";
1321
- };
1322
- export type RouteAnalysisCompletionResultCode =
1323
- (typeof RouteAnalysisCompletionResultCode)[keyof typeof RouteAnalysisCompletionResultCode];
1324
1002
  export interface RouteAnalysisCompletion {
1325
1003
  ResultCode?: RouteAnalysisCompletionResultCode | undefined;
1326
1004
  ReasonCode?: RouteAnalysisCompletionReasonCode | undefined;
@@ -1343,13 +1021,6 @@ export interface RouteAnalysisPath {
1343
1021
  CompletionStatus?: RouteAnalysisCompletion | undefined;
1344
1022
  Path?: PathComponent[] | undefined;
1345
1023
  }
1346
- export declare const RouteAnalysisStatus: {
1347
- readonly completed: "COMPLETED";
1348
- readonly failed: "FAILED";
1349
- readonly running: "RUNNING";
1350
- };
1351
- export type RouteAnalysisStatus =
1352
- (typeof RouteAnalysisStatus)[keyof typeof RouteAnalysisStatus];
1353
1024
  export interface RouteAnalysis {
1354
1025
  GlobalNetworkId?: string | undefined;
1355
1026
  OwnerAccountId?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-networkmanager",
3
3
  "description": "AWS SDK for JavaScript Networkmanager Client for Node.js, Browser and React Native",
4
- "version": "3.933.0",
4
+ "version": "3.935.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-networkmanager",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";