@aws-sdk/client-global-accelerator 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 +56 -55
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +55 -0
- package/dist-es/models/errors.js +281 -0
- package/dist-es/models/models_0.js +1 -336
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +143 -0
- package/dist-types/models/errors.d.ts +265 -0
- package/dist-types/models/models_0.d.ts +1 -408
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +74 -0
- package/dist-types/ts3.4/models/errors.d.ts +172 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -246
- 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
|
@@ -0,0 +1,265 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { GlobalAcceleratorServiceException as __BaseException } from "./GlobalAcceleratorServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The accelerator that you specified could not be disabled.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AcceleratorNotDisabledException extends __BaseException {
|
|
8
|
+
readonly name: "AcceleratorNotDisabledException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AcceleratorNotDisabledException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The accelerator that you specified doesn't exist.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class AcceleratorNotFoundException extends __BaseException {
|
|
21
|
+
readonly name: "AcceleratorNotFoundException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<AcceleratorNotFoundException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>You don't have access permission.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
34
|
+
readonly name: "AccessDeniedException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>You can't use both of those options.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export declare class ConflictException extends __BaseException {
|
|
47
|
+
readonly name: "ConflictException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <p>The endpoint that you specified doesn't exist.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export declare class EndpointAlreadyExistsException extends __BaseException {
|
|
60
|
+
readonly name: "EndpointAlreadyExistsException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<EndpointAlreadyExistsException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <p>The endpoint group that you specified doesn't exist.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class EndpointGroupNotFoundException extends __BaseException {
|
|
73
|
+
readonly name: "EndpointGroupNotFoundException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
Message?: string | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<EndpointGroupNotFoundException, __BaseException>);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* <p>There was an internal error for Global Accelerator.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export declare class InternalServiceErrorException extends __BaseException {
|
|
86
|
+
readonly name: "InternalServiceErrorException";
|
|
87
|
+
readonly $fault: "server";
|
|
88
|
+
Message?: string | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* <p>An argument that you specified is invalid.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export declare class InvalidArgumentException extends __BaseException {
|
|
99
|
+
readonly name: "InvalidArgumentException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
Message?: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class LimitExceededException extends __BaseException {
|
|
112
|
+
readonly name: "LimitExceededException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
Message?: string | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
118
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
export declare class TransactionInProgressException extends __BaseException {
|
|
125
|
+
readonly name: "TransactionInProgressException";
|
|
126
|
+
readonly $fault: "client";
|
|
127
|
+
Message?: string | undefined;
|
|
128
|
+
/**
|
|
129
|
+
* @internal
|
|
130
|
+
*/
|
|
131
|
+
constructor(opts: __ExceptionOptionType<TransactionInProgressException, __BaseException>);
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* <p>The CIDR that you specified was not found or is incorrect.</p>
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
137
|
+
export declare class ByoipCidrNotFoundException extends __BaseException {
|
|
138
|
+
readonly name: "ByoipCidrNotFoundException";
|
|
139
|
+
readonly $fault: "client";
|
|
140
|
+
Message?: string | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* @internal
|
|
143
|
+
*/
|
|
144
|
+
constructor(opts: __ExceptionOptionType<ByoipCidrNotFoundException, __BaseException>);
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* <p>The CIDR that you specified is not valid for this action. For example, the state of the CIDR might be
|
|
148
|
+
* incorrect for this action.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export declare class IncorrectCidrStateException extends __BaseException {
|
|
152
|
+
readonly name: "IncorrectCidrStateException";
|
|
153
|
+
readonly $fault: "client";
|
|
154
|
+
Message?: string | undefined;
|
|
155
|
+
/**
|
|
156
|
+
* @internal
|
|
157
|
+
*/
|
|
158
|
+
constructor(opts: __ExceptionOptionType<IncorrectCidrStateException, __BaseException>);
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* <p>The listener that you specified has an endpoint group associated with it. You must remove all dependent resources
|
|
162
|
+
* from a listener before you can delete it.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
export declare class AssociatedEndpointGroupFoundException extends __BaseException {
|
|
166
|
+
readonly name: "AssociatedEndpointGroupFoundException";
|
|
167
|
+
readonly $fault: "client";
|
|
168
|
+
Message?: string | undefined;
|
|
169
|
+
/**
|
|
170
|
+
* @internal
|
|
171
|
+
*/
|
|
172
|
+
constructor(opts: __ExceptionOptionType<AssociatedEndpointGroupFoundException, __BaseException>);
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* <p>The accelerator that you specified has a listener associated with it. You must remove all dependent resources from an
|
|
176
|
+
* accelerator before you can delete it.</p>
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
export declare class AssociatedListenerFoundException extends __BaseException {
|
|
180
|
+
readonly name: "AssociatedListenerFoundException";
|
|
181
|
+
readonly $fault: "client";
|
|
182
|
+
Message?: string | undefined;
|
|
183
|
+
/**
|
|
184
|
+
* @internal
|
|
185
|
+
*/
|
|
186
|
+
constructor(opts: __ExceptionOptionType<AssociatedListenerFoundException, __BaseException>);
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* <p>No cross-account attachment was found.</p>
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
192
|
+
export declare class AttachmentNotFoundException extends __BaseException {
|
|
193
|
+
readonly name: "AttachmentNotFoundException";
|
|
194
|
+
readonly $fault: "client";
|
|
195
|
+
Message?: string | undefined;
|
|
196
|
+
/**
|
|
197
|
+
* @internal
|
|
198
|
+
*/
|
|
199
|
+
constructor(opts: __ExceptionOptionType<AttachmentNotFoundException, __BaseException>);
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* <p>The endpoint group that you specified already exists.</p>
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
export declare class EndpointGroupAlreadyExistsException extends __BaseException {
|
|
206
|
+
readonly name: "EndpointGroupAlreadyExistsException";
|
|
207
|
+
readonly $fault: "client";
|
|
208
|
+
Message?: string | undefined;
|
|
209
|
+
/**
|
|
210
|
+
* @internal
|
|
211
|
+
*/
|
|
212
|
+
constructor(opts: __ExceptionOptionType<EndpointGroupAlreadyExistsException, __BaseException>);
|
|
213
|
+
}
|
|
214
|
+
/**
|
|
215
|
+
* <p>The port numbers that you specified are not valid numbers or are not unique for this accelerator.</p>
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
export declare class InvalidPortRangeException extends __BaseException {
|
|
219
|
+
readonly name: "InvalidPortRangeException";
|
|
220
|
+
readonly $fault: "client";
|
|
221
|
+
Message?: string | undefined;
|
|
222
|
+
/**
|
|
223
|
+
* @internal
|
|
224
|
+
*/
|
|
225
|
+
constructor(opts: __ExceptionOptionType<InvalidPortRangeException, __BaseException>);
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* <p>The listener that you specified doesn't exist.</p>
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
export declare class ListenerNotFoundException extends __BaseException {
|
|
232
|
+
readonly name: "ListenerNotFoundException";
|
|
233
|
+
readonly $fault: "client";
|
|
234
|
+
Message?: string | undefined;
|
|
235
|
+
/**
|
|
236
|
+
* @internal
|
|
237
|
+
*/
|
|
238
|
+
constructor(opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>);
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* <p>The endpoint that you specified doesn't exist.</p>
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
export declare class EndpointNotFoundException extends __BaseException {
|
|
245
|
+
readonly name: "EndpointNotFoundException";
|
|
246
|
+
readonly $fault: "client";
|
|
247
|
+
Message?: string | undefined;
|
|
248
|
+
/**
|
|
249
|
+
* @internal
|
|
250
|
+
*/
|
|
251
|
+
constructor(opts: __ExceptionOptionType<EndpointNotFoundException, __BaseException>);
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* <p>There isn't another item to return.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
258
|
+
readonly name: "InvalidNextTokenException";
|
|
259
|
+
readonly $fault: "client";
|
|
260
|
+
Message?: string | undefined;
|
|
261
|
+
/**
|
|
262
|
+
* @internal
|
|
263
|
+
*/
|
|
264
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
265
|
+
}
|