@aws-sdk/client-networkmanager 3.934.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.
- package/dist-cjs/index.js +226 -225
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +225 -0
- package/dist-es/models/errors.js +141 -0
- package/dist-es/models/models_0.js +1 -366
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +513 -0
- package/dist-types/models/errors.d.ts +183 -0
- package/dist-types/models/models_0.d.ts +2 -694
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +286 -0
- package/dist-types/ts3.4/models/errors.d.ts +80 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -366
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { NetworkManagerExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { NetworkManagerServiceException } from "./models/NetworkManagerServiceException";
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
export declare const AttachmentType: {
|
|
2
|
+
readonly CONNECT: "CONNECT";
|
|
3
|
+
readonly DIRECT_CONNECT_GATEWAY: "DIRECT_CONNECT_GATEWAY";
|
|
4
|
+
readonly SITE_TO_SITE_VPN: "SITE_TO_SITE_VPN";
|
|
5
|
+
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
6
|
+
readonly VPC: "VPC";
|
|
7
|
+
};
|
|
8
|
+
export type AttachmentType =
|
|
9
|
+
(typeof AttachmentType)[keyof typeof AttachmentType];
|
|
10
|
+
export declare const AttachmentErrorCode: {
|
|
11
|
+
readonly DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS: "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS";
|
|
12
|
+
readonly DIRECT_CONNECT_GATEWAY_NOT_FOUND: "DIRECT_CONNECT_GATEWAY_NOT_FOUND";
|
|
13
|
+
readonly DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF: "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF";
|
|
14
|
+
readonly MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED: "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED";
|
|
15
|
+
readonly SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE: "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE";
|
|
16
|
+
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
17
|
+
readonly SUBNET_NO_FREE_ADDRESSES: "SUBNET_NO_FREE_ADDRESSES";
|
|
18
|
+
readonly SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS";
|
|
19
|
+
readonly SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE";
|
|
20
|
+
readonly VPC_NOT_FOUND: "VPC_NOT_FOUND";
|
|
21
|
+
readonly VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND";
|
|
22
|
+
};
|
|
23
|
+
export type AttachmentErrorCode =
|
|
24
|
+
(typeof AttachmentErrorCode)[keyof typeof AttachmentErrorCode];
|
|
25
|
+
export declare const AttachmentState: {
|
|
26
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
27
|
+
readonly CREATING: "CREATING";
|
|
28
|
+
readonly DELETING: "DELETING";
|
|
29
|
+
readonly FAILED: "FAILED";
|
|
30
|
+
readonly PENDING_ATTACHMENT_ACCEPTANCE: "PENDING_ATTACHMENT_ACCEPTANCE";
|
|
31
|
+
readonly PENDING_NETWORK_UPDATE: "PENDING_NETWORK_UPDATE";
|
|
32
|
+
readonly PENDING_TAG_ACCEPTANCE: "PENDING_TAG_ACCEPTANCE";
|
|
33
|
+
readonly REJECTED: "REJECTED";
|
|
34
|
+
readonly UPDATING: "UPDATING";
|
|
35
|
+
};
|
|
36
|
+
export type AttachmentState =
|
|
37
|
+
(typeof AttachmentState)[keyof typeof AttachmentState];
|
|
38
|
+
export declare const ValidationExceptionReason: {
|
|
39
|
+
readonly CANNOT_PARSE: "CannotParse";
|
|
40
|
+
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
41
|
+
readonly OTHER: "Other";
|
|
42
|
+
readonly UNKNOWN_OPERATION: "UnknownOperation";
|
|
43
|
+
};
|
|
44
|
+
export type ValidationExceptionReason =
|
|
45
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
46
|
+
export declare const ConnectPeerAssociationState: {
|
|
47
|
+
readonly available: "AVAILABLE";
|
|
48
|
+
readonly deleted: "DELETED";
|
|
49
|
+
readonly deleting: "DELETING";
|
|
50
|
+
readonly pending: "PENDING";
|
|
51
|
+
};
|
|
52
|
+
export type ConnectPeerAssociationState =
|
|
53
|
+
(typeof ConnectPeerAssociationState)[keyof typeof ConnectPeerAssociationState];
|
|
54
|
+
export declare const CustomerGatewayAssociationState: {
|
|
55
|
+
readonly available: "AVAILABLE";
|
|
56
|
+
readonly deleted: "DELETED";
|
|
57
|
+
readonly deleting: "DELETING";
|
|
58
|
+
readonly pending: "PENDING";
|
|
59
|
+
};
|
|
60
|
+
export type CustomerGatewayAssociationState =
|
|
61
|
+
(typeof CustomerGatewayAssociationState)[keyof typeof CustomerGatewayAssociationState];
|
|
62
|
+
export declare const LinkAssociationState: {
|
|
63
|
+
readonly available: "AVAILABLE";
|
|
64
|
+
readonly deleted: "DELETED";
|
|
65
|
+
readonly deleting: "DELETING";
|
|
66
|
+
readonly pending: "PENDING";
|
|
67
|
+
};
|
|
68
|
+
export type LinkAssociationState =
|
|
69
|
+
(typeof LinkAssociationState)[keyof typeof LinkAssociationState];
|
|
70
|
+
export declare const TransitGatewayConnectPeerAssociationState: {
|
|
71
|
+
readonly available: "AVAILABLE";
|
|
72
|
+
readonly deleted: "DELETED";
|
|
73
|
+
readonly deleting: "DELETING";
|
|
74
|
+
readonly pending: "PENDING";
|
|
75
|
+
};
|
|
76
|
+
export type TransitGatewayConnectPeerAssociationState =
|
|
77
|
+
(typeof TransitGatewayConnectPeerAssociationState)[keyof typeof TransitGatewayConnectPeerAssociationState];
|
|
78
|
+
export declare const ChangeAction: {
|
|
79
|
+
readonly ADD: "ADD";
|
|
80
|
+
readonly MODIFY: "MODIFY";
|
|
81
|
+
readonly REMOVE: "REMOVE";
|
|
82
|
+
};
|
|
83
|
+
export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
|
|
84
|
+
export declare const ChangeSetState: {
|
|
85
|
+
readonly EXECUTING: "EXECUTING";
|
|
86
|
+
readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
|
|
87
|
+
readonly FAILED_GENERATION: "FAILED_GENERATION";
|
|
88
|
+
readonly OUT_OF_DATE: "OUT_OF_DATE";
|
|
89
|
+
readonly PENDING_GENERATION: "PENDING_GENERATION";
|
|
90
|
+
readonly READY_TO_EXECUTE: "READY_TO_EXECUTE";
|
|
91
|
+
};
|
|
92
|
+
export type ChangeSetState =
|
|
93
|
+
(typeof ChangeSetState)[keyof typeof ChangeSetState];
|
|
94
|
+
export declare const ChangeStatus: {
|
|
95
|
+
readonly COMPLETE: "COMPLETE";
|
|
96
|
+
readonly FAILED: "FAILED";
|
|
97
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
98
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
99
|
+
};
|
|
100
|
+
export type ChangeStatus = (typeof ChangeStatus)[keyof typeof ChangeStatus];
|
|
101
|
+
export declare const ChangeType: {
|
|
102
|
+
readonly ATTACHMENT_MAPPING: "ATTACHMENT_MAPPING";
|
|
103
|
+
readonly ATTACHMENT_POLICIES_CONFIGURATION: "ATTACHMENT_POLICIES_CONFIGURATION";
|
|
104
|
+
readonly ATTACHMENT_ROUTE_PROPAGATION: "ATTACHMENT_ROUTE_PROPAGATION";
|
|
105
|
+
readonly ATTACHMENT_ROUTE_STATIC: "ATTACHMENT_ROUTE_STATIC";
|
|
106
|
+
readonly CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION";
|
|
107
|
+
readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
|
|
108
|
+
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
109
|
+
readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
|
|
110
|
+
readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
|
|
111
|
+
readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
|
|
112
|
+
};
|
|
113
|
+
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
|
114
|
+
export declare const TunnelProtocol: {
|
|
115
|
+
readonly GRE: "GRE";
|
|
116
|
+
readonly NO_ENCAP: "NO_ENCAP";
|
|
117
|
+
};
|
|
118
|
+
export type TunnelProtocol =
|
|
119
|
+
(typeof TunnelProtocol)[keyof typeof TunnelProtocol];
|
|
120
|
+
export declare const ConnectionState: {
|
|
121
|
+
readonly available: "AVAILABLE";
|
|
122
|
+
readonly deleting: "DELETING";
|
|
123
|
+
readonly pending: "PENDING";
|
|
124
|
+
readonly updating: "UPDATING";
|
|
125
|
+
};
|
|
126
|
+
export type ConnectionState =
|
|
127
|
+
(typeof ConnectionState)[keyof typeof ConnectionState];
|
|
128
|
+
export declare const ConnectionStatus: {
|
|
129
|
+
readonly DOWN: "DOWN";
|
|
130
|
+
readonly UP: "UP";
|
|
131
|
+
};
|
|
132
|
+
export type ConnectionStatus =
|
|
133
|
+
(typeof ConnectionStatus)[keyof typeof ConnectionStatus];
|
|
134
|
+
export declare const ConnectionType: {
|
|
135
|
+
readonly BGP: "BGP";
|
|
136
|
+
readonly IPSEC: "IPSEC";
|
|
137
|
+
};
|
|
138
|
+
export type ConnectionType =
|
|
139
|
+
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
140
|
+
export declare const ConnectPeerErrorCode: {
|
|
141
|
+
readonly EDGE_LOCATION_NO_FREE_IPS: "EDGE_LOCATION_NO_FREE_IPS";
|
|
142
|
+
readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
|
|
143
|
+
readonly INVALID_INSIDE_CIDR_BLOCK: "INVALID_INSIDE_CIDR_BLOCK";
|
|
144
|
+
readonly IP_OUTSIDE_SUBNET_CIDR_RANGE: "IP_OUTSIDE_SUBNET_CIDR_RANGE";
|
|
145
|
+
readonly NO_ASSOCIATED_CIDR_BLOCK: "NO_ASSOCIATED_CIDR_BLOCK";
|
|
146
|
+
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
147
|
+
};
|
|
148
|
+
export type ConnectPeerErrorCode =
|
|
149
|
+
(typeof ConnectPeerErrorCode)[keyof typeof ConnectPeerErrorCode];
|
|
150
|
+
export declare const ConnectPeerState: {
|
|
151
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
152
|
+
readonly CREATING: "CREATING";
|
|
153
|
+
readonly DELETING: "DELETING";
|
|
154
|
+
readonly FAILED: "FAILED";
|
|
155
|
+
};
|
|
156
|
+
export type ConnectPeerState =
|
|
157
|
+
(typeof ConnectPeerState)[keyof typeof ConnectPeerState];
|
|
158
|
+
export declare const CoreNetworkState: {
|
|
159
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
160
|
+
readonly CREATING: "CREATING";
|
|
161
|
+
readonly DELETING: "DELETING";
|
|
162
|
+
readonly UPDATING: "UPDATING";
|
|
163
|
+
};
|
|
164
|
+
export type CoreNetworkState =
|
|
165
|
+
(typeof CoreNetworkState)[keyof typeof CoreNetworkState];
|
|
166
|
+
export declare const SegmentActionServiceInsertion: {
|
|
167
|
+
readonly SEND_TO: "send-to";
|
|
168
|
+
readonly SEND_VIA: "send-via";
|
|
169
|
+
};
|
|
170
|
+
export type SegmentActionServiceInsertion =
|
|
171
|
+
(typeof SegmentActionServiceInsertion)[keyof typeof SegmentActionServiceInsertion];
|
|
172
|
+
export declare const SendViaMode: {
|
|
173
|
+
readonly DUAL_HOP: "dual-hop";
|
|
174
|
+
readonly SINGLE_HOP: "single-hop";
|
|
175
|
+
};
|
|
176
|
+
export type SendViaMode = (typeof SendViaMode)[keyof typeof SendViaMode];
|
|
177
|
+
export declare const CoreNetworkPolicyAlias: {
|
|
178
|
+
readonly LATEST: "LATEST";
|
|
179
|
+
readonly LIVE: "LIVE";
|
|
180
|
+
};
|
|
181
|
+
export type CoreNetworkPolicyAlias =
|
|
182
|
+
(typeof CoreNetworkPolicyAlias)[keyof typeof CoreNetworkPolicyAlias];
|
|
183
|
+
export declare const DeviceState: {
|
|
184
|
+
readonly available: "AVAILABLE";
|
|
185
|
+
readonly deleting: "DELETING";
|
|
186
|
+
readonly pending: "PENDING";
|
|
187
|
+
readonly updating: "UPDATING";
|
|
188
|
+
};
|
|
189
|
+
export type DeviceState = (typeof DeviceState)[keyof typeof DeviceState];
|
|
190
|
+
export declare const GlobalNetworkState: {
|
|
191
|
+
readonly available: "AVAILABLE";
|
|
192
|
+
readonly deleting: "DELETING";
|
|
193
|
+
readonly pending: "PENDING";
|
|
194
|
+
readonly updating: "UPDATING";
|
|
195
|
+
};
|
|
196
|
+
export type GlobalNetworkState =
|
|
197
|
+
(typeof GlobalNetworkState)[keyof typeof GlobalNetworkState];
|
|
198
|
+
export declare const LinkState: {
|
|
199
|
+
readonly available: "AVAILABLE";
|
|
200
|
+
readonly deleting: "DELETING";
|
|
201
|
+
readonly pending: "PENDING";
|
|
202
|
+
readonly updating: "UPDATING";
|
|
203
|
+
};
|
|
204
|
+
export type LinkState = (typeof LinkState)[keyof typeof LinkState];
|
|
205
|
+
export declare const SiteState: {
|
|
206
|
+
readonly available: "AVAILABLE";
|
|
207
|
+
readonly deleting: "DELETING";
|
|
208
|
+
readonly pending: "PENDING";
|
|
209
|
+
readonly updating: "UPDATING";
|
|
210
|
+
};
|
|
211
|
+
export type SiteState = (typeof SiteState)[keyof typeof SiteState];
|
|
212
|
+
export declare const PeeringErrorCode: {
|
|
213
|
+
readonly EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE";
|
|
214
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
215
|
+
readonly INVALID_TRANSIT_GATEWAY_STATE: "INVALID_TRANSIT_GATEWAY_STATE";
|
|
216
|
+
readonly MISSING_REQUIRED_PERMISSIONS: "MISSING_PERMISSIONS";
|
|
217
|
+
readonly TRANSIT_GATEWAY_NOT_FOUND: "TRANSIT_GATEWAY_NOT_FOUND";
|
|
218
|
+
readonly TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED: "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED";
|
|
219
|
+
};
|
|
220
|
+
export type PeeringErrorCode =
|
|
221
|
+
(typeof PeeringErrorCode)[keyof typeof PeeringErrorCode];
|
|
222
|
+
export declare const PeeringType: {
|
|
223
|
+
readonly TRANSIT_GATEWAY: "TRANSIT_GATEWAY";
|
|
224
|
+
};
|
|
225
|
+
export type PeeringType = (typeof PeeringType)[keyof typeof PeeringType];
|
|
226
|
+
export declare const PeeringState: {
|
|
227
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
228
|
+
readonly CREATING: "CREATING";
|
|
229
|
+
readonly DELETING: "DELETING";
|
|
230
|
+
readonly FAILED: "FAILED";
|
|
231
|
+
};
|
|
232
|
+
export type PeeringState = (typeof PeeringState)[keyof typeof PeeringState];
|
|
233
|
+
export declare const TransitGatewayRegistrationState: {
|
|
234
|
+
readonly available: "AVAILABLE";
|
|
235
|
+
readonly deleted: "DELETED";
|
|
236
|
+
readonly deleting: "DELETING";
|
|
237
|
+
readonly failed: "FAILED";
|
|
238
|
+
readonly pending: "PENDING";
|
|
239
|
+
};
|
|
240
|
+
export type TransitGatewayRegistrationState =
|
|
241
|
+
(typeof TransitGatewayRegistrationState)[keyof typeof TransitGatewayRegistrationState];
|
|
242
|
+
export declare const RouteState: {
|
|
243
|
+
readonly ACTIVE: "ACTIVE";
|
|
244
|
+
readonly BLACKHOLE: "BLACKHOLE";
|
|
245
|
+
};
|
|
246
|
+
export type RouteState = (typeof RouteState)[keyof typeof RouteState];
|
|
247
|
+
export declare const RouteType: {
|
|
248
|
+
readonly PROPAGATED: "PROPAGATED";
|
|
249
|
+
readonly STATIC: "STATIC";
|
|
250
|
+
};
|
|
251
|
+
export type RouteType = (typeof RouteType)[keyof typeof RouteType];
|
|
252
|
+
export declare const RouteTableType: {
|
|
253
|
+
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
254
|
+
readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
|
|
255
|
+
readonly TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE";
|
|
256
|
+
};
|
|
257
|
+
export type RouteTableType =
|
|
258
|
+
(typeof RouteTableType)[keyof typeof RouteTableType];
|
|
259
|
+
export declare const RouteAnalysisCompletionReasonCode: {
|
|
260
|
+
readonly BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND";
|
|
261
|
+
readonly CYCLIC_PATH_DETECTED: "CYCLIC_PATH_DETECTED";
|
|
262
|
+
readonly INACTIVE_ROUTE_FOR_DESTINATION_FOUND: "INACTIVE_ROUTE_FOR_DESTINATION_FOUND";
|
|
263
|
+
readonly MAX_HOPS_EXCEEDED: "MAX_HOPS_EXCEEDED";
|
|
264
|
+
readonly NO_DESTINATION_ARN_PROVIDED: "NO_DESTINATION_ARN_PROVIDED";
|
|
265
|
+
readonly POSSIBLE_MIDDLEBOX: "POSSIBLE_MIDDLEBOX";
|
|
266
|
+
readonly ROUTE_NOT_FOUND: "ROUTE_NOT_FOUND";
|
|
267
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH";
|
|
268
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND";
|
|
269
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY: "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY";
|
|
270
|
+
readonly TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND";
|
|
271
|
+
};
|
|
272
|
+
export type RouteAnalysisCompletionReasonCode =
|
|
273
|
+
(typeof RouteAnalysisCompletionReasonCode)[keyof typeof RouteAnalysisCompletionReasonCode];
|
|
274
|
+
export declare const RouteAnalysisCompletionResultCode: {
|
|
275
|
+
readonly CONNECTED: "CONNECTED";
|
|
276
|
+
readonly NOT_CONNECTED: "NOT_CONNECTED";
|
|
277
|
+
};
|
|
278
|
+
export type RouteAnalysisCompletionResultCode =
|
|
279
|
+
(typeof RouteAnalysisCompletionResultCode)[keyof typeof RouteAnalysisCompletionResultCode];
|
|
280
|
+
export declare const RouteAnalysisStatus: {
|
|
281
|
+
readonly completed: "COMPLETED";
|
|
282
|
+
readonly failed: "FAILED";
|
|
283
|
+
readonly running: "RUNNING";
|
|
284
|
+
};
|
|
285
|
+
export type RouteAnalysisStatus =
|
|
286
|
+
(typeof RouteAnalysisStatus)[keyof typeof RouteAnalysisStatus];
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { CoreNetworkPolicyError, ValidationExceptionField } from "./models_0";
|
|
4
|
+
import { NetworkManagerServiceException as __BaseException } from "./NetworkManagerServiceException";
|
|
5
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
6
|
+
readonly name: "AccessDeniedException";
|
|
7
|
+
readonly $fault: "client";
|
|
8
|
+
Message: string | undefined;
|
|
9
|
+
constructor(
|
|
10
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
export declare class ConflictException extends __BaseException {
|
|
14
|
+
readonly name: "ConflictException";
|
|
15
|
+
readonly $fault: "client";
|
|
16
|
+
Message: string | undefined;
|
|
17
|
+
ResourceId: string | undefined;
|
|
18
|
+
ResourceType: string | undefined;
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
20
|
+
}
|
|
21
|
+
export declare class InternalServerException extends __BaseException {
|
|
22
|
+
readonly name: "InternalServerException";
|
|
23
|
+
readonly $fault: "server";
|
|
24
|
+
Message: string | undefined;
|
|
25
|
+
RetryAfterSeconds?: number | undefined;
|
|
26
|
+
constructor(
|
|
27
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
31
|
+
readonly name: "ResourceNotFoundException";
|
|
32
|
+
readonly $fault: "client";
|
|
33
|
+
Message: string | undefined;
|
|
34
|
+
ResourceId: string | undefined;
|
|
35
|
+
ResourceType: string | undefined;
|
|
36
|
+
Context?: Record<string, string> | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class ThrottlingException extends __BaseException {
|
|
42
|
+
readonly name: "ThrottlingException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
Message: string | undefined;
|
|
45
|
+
RetryAfterSeconds?: number | undefined;
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
export declare class ValidationException extends __BaseException {
|
|
51
|
+
readonly name: "ValidationException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
Message: string | undefined;
|
|
54
|
+
Reason?: ValidationExceptionReason | undefined;
|
|
55
|
+
Fields?: ValidationExceptionField[] | undefined;
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
61
|
+
readonly name: "ServiceQuotaExceededException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
Message: string | undefined;
|
|
64
|
+
ResourceId?: string | undefined;
|
|
65
|
+
ResourceType?: string | undefined;
|
|
66
|
+
LimitCode: string | undefined;
|
|
67
|
+
ServiceCode: string | undefined;
|
|
68
|
+
constructor(
|
|
69
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
export declare class CoreNetworkPolicyException extends __BaseException {
|
|
73
|
+
readonly name: "CoreNetworkPolicyException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Message: string | undefined;
|
|
76
|
+
Errors?: CoreNetworkPolicyError[] | undefined;
|
|
77
|
+
constructor(
|
|
78
|
+
opts: __ExceptionOptionType<CoreNetworkPolicyException, __BaseException>
|
|
79
|
+
);
|
|
80
|
+
}
|