@aws-sdk/client-cloudcontrol 3.934.0 → 3.936.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 +0 -34
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +295 -0
- package/dist-es/models/models_0.js +0 -295
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +291 -0
- package/dist-types/models/models_0.d.ts +0 -291
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +176 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -176
- package/package.json +19 -19
- 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,291 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The resource with the name requested already exists.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AlreadyExistsException extends __BaseException {
|
|
8
|
+
readonly name: "AlreadyExistsException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>The resource is currently being modified by another operation.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
21
|
+
readonly name: "ConcurrentModificationException";
|
|
22
|
+
readonly $fault: "server";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>A resource operation with the specified request token can't be found.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class RequestTokenNotFoundException extends __BaseException {
|
|
34
|
+
readonly name: "RequestTokenNotFoundException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>The specified client token has already been used in another resource request.</p>
|
|
44
|
+
* <p>It's best practice for client tokens to be unique for each resource operation request.
|
|
45
|
+
* However, client token expire after 36 hours.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export declare class ClientTokenConflictException extends __BaseException {
|
|
49
|
+
readonly name: "ClientTokenConflictException";
|
|
50
|
+
readonly $fault: "client";
|
|
51
|
+
Message?: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* <p>Another resource operation is currently being performed on this resource.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class ConcurrentOperationException extends __BaseException {
|
|
62
|
+
readonly name: "ConcurrentOperationException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
Message?: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p>The resource handler has returned that the downstream service generated an error that
|
|
72
|
+
* doesn't map to any other handler error code.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare class GeneralServiceException extends __BaseException {
|
|
76
|
+
readonly name: "GeneralServiceException";
|
|
77
|
+
readonly $fault: "client";
|
|
78
|
+
Message?: string | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
constructor(opts: __ExceptionOptionType<GeneralServiceException, __BaseException>);
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
86
|
+
* include timeouts.</p>
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export declare class HandlerFailureException extends __BaseException {
|
|
90
|
+
readonly name: "HandlerFailureException";
|
|
91
|
+
readonly $fault: "server";
|
|
92
|
+
Message?: string | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
constructor(opts: __ExceptionOptionType<HandlerFailureException, __BaseException>);
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
100
|
+
* handler.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class HandlerInternalFailureException extends __BaseException {
|
|
104
|
+
readonly name: "HandlerInternalFailureException";
|
|
105
|
+
readonly $fault: "server";
|
|
106
|
+
Message?: string | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
constructor(opts: __ExceptionOptionType<HandlerInternalFailureException, __BaseException>);
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* <p>The resource handler has returned that the credentials provided by the user are
|
|
114
|
+
* invalid.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
export declare class InvalidCredentialsException extends __BaseException {
|
|
118
|
+
readonly name: "InvalidCredentialsException";
|
|
119
|
+
readonly $fault: "client";
|
|
120
|
+
Message?: string | undefined;
|
|
121
|
+
/**
|
|
122
|
+
* @internal
|
|
123
|
+
*/
|
|
124
|
+
constructor(opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>);
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
128
|
+
* exception.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
132
|
+
readonly name: "InvalidRequestException";
|
|
133
|
+
readonly $fault: "client";
|
|
134
|
+
Message?: string | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* @internal
|
|
137
|
+
*/
|
|
138
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* <p>The resource handler has returned that the request couldn't be completed due to networking
|
|
142
|
+
* issues, such as a failure to receive a response from the server.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export declare class NetworkFailureException extends __BaseException {
|
|
146
|
+
readonly name: "NetworkFailureException";
|
|
147
|
+
readonly $fault: "server";
|
|
148
|
+
Message?: string | undefined;
|
|
149
|
+
/**
|
|
150
|
+
* @internal
|
|
151
|
+
*/
|
|
152
|
+
constructor(opts: __ExceptionOptionType<NetworkFailureException, __BaseException>);
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
156
|
+
* its ready-state checks.</p>
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export declare class NotStabilizedException extends __BaseException {
|
|
160
|
+
readonly name: "NotStabilizedException";
|
|
161
|
+
readonly $fault: "client";
|
|
162
|
+
Message?: string | undefined;
|
|
163
|
+
/**
|
|
164
|
+
* @internal
|
|
165
|
+
*/
|
|
166
|
+
constructor(opts: __ExceptionOptionType<NotStabilizedException, __BaseException>);
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
170
|
+
* therefore can't be updated.</p>
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
173
|
+
export declare class NotUpdatableException extends __BaseException {
|
|
174
|
+
readonly name: "NotUpdatableException";
|
|
175
|
+
readonly $fault: "client";
|
|
176
|
+
Message?: string | undefined;
|
|
177
|
+
/**
|
|
178
|
+
* @internal
|
|
179
|
+
*/
|
|
180
|
+
constructor(opts: __ExceptionOptionType<NotUpdatableException, __BaseException>);
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration
|
|
184
|
+
* error. This includes issues such as the resource handler returning an invalid response, or
|
|
185
|
+
* timing out.</p>
|
|
186
|
+
* @public
|
|
187
|
+
*/
|
|
188
|
+
export declare class PrivateTypeException extends __BaseException {
|
|
189
|
+
readonly name: "PrivateTypeException";
|
|
190
|
+
readonly $fault: "client";
|
|
191
|
+
Message?: string | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* @internal
|
|
194
|
+
*/
|
|
195
|
+
constructor(opts: __ExceptionOptionType<PrivateTypeException, __BaseException>);
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
199
|
+
* currently undergoing an operation and can't be acted upon until that operation is
|
|
200
|
+
* finished.</p>
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
export declare class ResourceConflictException extends __BaseException {
|
|
204
|
+
readonly name: "ResourceConflictException";
|
|
205
|
+
readonly $fault: "client";
|
|
206
|
+
Message?: string | undefined;
|
|
207
|
+
/**
|
|
208
|
+
* @internal
|
|
209
|
+
*/
|
|
210
|
+
constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* <p>A resource with the specified identifier can't be found.</p>
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
217
|
+
readonly name: "ResourceNotFoundException";
|
|
218
|
+
readonly $fault: "client";
|
|
219
|
+
Message?: string | undefined;
|
|
220
|
+
/**
|
|
221
|
+
* @internal
|
|
222
|
+
*/
|
|
223
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
227
|
+
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
export declare class ServiceInternalErrorException extends __BaseException {
|
|
231
|
+
readonly name: "ServiceInternalErrorException";
|
|
232
|
+
readonly $fault: "server";
|
|
233
|
+
Message?: string | undefined;
|
|
234
|
+
/**
|
|
235
|
+
* @internal
|
|
236
|
+
*/
|
|
237
|
+
constructor(opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>);
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
241
|
+
* service side.</p>
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
export declare class ServiceLimitExceededException extends __BaseException {
|
|
245
|
+
readonly name: "ServiceLimitExceededException";
|
|
246
|
+
readonly $fault: "client";
|
|
247
|
+
Message?: string | undefined;
|
|
248
|
+
/**
|
|
249
|
+
* @internal
|
|
250
|
+
*/
|
|
251
|
+
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* <p>The request was denied due to request throttling.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
export declare class ThrottlingException extends __BaseException {
|
|
258
|
+
readonly name: "ThrottlingException";
|
|
259
|
+
readonly $fault: "client";
|
|
260
|
+
Message?: string | undefined;
|
|
261
|
+
/**
|
|
262
|
+
* @internal
|
|
263
|
+
*/
|
|
264
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
265
|
+
}
|
|
266
|
+
/**
|
|
267
|
+
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
268
|
+
* @public
|
|
269
|
+
*/
|
|
270
|
+
export declare class TypeNotFoundException extends __BaseException {
|
|
271
|
+
readonly name: "TypeNotFoundException";
|
|
272
|
+
readonly $fault: "client";
|
|
273
|
+
Message?: string | undefined;
|
|
274
|
+
/**
|
|
275
|
+
* @internal
|
|
276
|
+
*/
|
|
277
|
+
constructor(opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>);
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* <p>The specified resource doesn't support this resource operation.</p>
|
|
281
|
+
* @public
|
|
282
|
+
*/
|
|
283
|
+
export declare class UnsupportedActionException extends __BaseException {
|
|
284
|
+
readonly name: "UnsupportedActionException";
|
|
285
|
+
readonly $fault: "client";
|
|
286
|
+
Message?: string | undefined;
|
|
287
|
+
/**
|
|
288
|
+
* @internal
|
|
289
|
+
*/
|
|
290
|
+
constructor(opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>);
|
|
291
|
+
}
|
|
@@ -1,18 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>The resource with the name requested already exists.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AlreadyExistsException extends __BaseException {
|
|
8
|
-
readonly name: "AlreadyExistsException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message?: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>);
|
|
15
|
-
}
|
|
16
1
|
/**
|
|
17
2
|
* @public
|
|
18
3
|
*/
|
|
@@ -191,60 +176,6 @@ export interface CancelResourceRequestOutput {
|
|
|
191
176
|
*/
|
|
192
177
|
ProgressEvent?: ProgressEvent | undefined;
|
|
193
178
|
}
|
|
194
|
-
/**
|
|
195
|
-
* <p>The resource is currently being modified by another operation.</p>
|
|
196
|
-
* @public
|
|
197
|
-
*/
|
|
198
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
199
|
-
readonly name: "ConcurrentModificationException";
|
|
200
|
-
readonly $fault: "server";
|
|
201
|
-
Message?: string | undefined;
|
|
202
|
-
/**
|
|
203
|
-
* @internal
|
|
204
|
-
*/
|
|
205
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
206
|
-
}
|
|
207
|
-
/**
|
|
208
|
-
* <p>A resource operation with the specified request token can't be found.</p>
|
|
209
|
-
* @public
|
|
210
|
-
*/
|
|
211
|
-
export declare class RequestTokenNotFoundException extends __BaseException {
|
|
212
|
-
readonly name: "RequestTokenNotFoundException";
|
|
213
|
-
readonly $fault: "client";
|
|
214
|
-
Message?: string | undefined;
|
|
215
|
-
/**
|
|
216
|
-
* @internal
|
|
217
|
-
*/
|
|
218
|
-
constructor(opts: __ExceptionOptionType<RequestTokenNotFoundException, __BaseException>);
|
|
219
|
-
}
|
|
220
|
-
/**
|
|
221
|
-
* <p>The specified client token has already been used in another resource request.</p>
|
|
222
|
-
* <p>It's best practice for client tokens to be unique for each resource operation request.
|
|
223
|
-
* However, client token expire after 36 hours.</p>
|
|
224
|
-
* @public
|
|
225
|
-
*/
|
|
226
|
-
export declare class ClientTokenConflictException extends __BaseException {
|
|
227
|
-
readonly name: "ClientTokenConflictException";
|
|
228
|
-
readonly $fault: "client";
|
|
229
|
-
Message?: string | undefined;
|
|
230
|
-
/**
|
|
231
|
-
* @internal
|
|
232
|
-
*/
|
|
233
|
-
constructor(opts: __ExceptionOptionType<ClientTokenConflictException, __BaseException>);
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* <p>Another resource operation is currently being performed on this resource.</p>
|
|
237
|
-
* @public
|
|
238
|
-
*/
|
|
239
|
-
export declare class ConcurrentOperationException extends __BaseException {
|
|
240
|
-
readonly name: "ConcurrentOperationException";
|
|
241
|
-
readonly $fault: "client";
|
|
242
|
-
Message?: string | undefined;
|
|
243
|
-
/**
|
|
244
|
-
* @internal
|
|
245
|
-
*/
|
|
246
|
-
constructor(opts: __ExceptionOptionType<ConcurrentOperationException, __BaseException>);
|
|
247
|
-
}
|
|
248
179
|
/**
|
|
249
180
|
* @public
|
|
250
181
|
*/
|
|
@@ -329,228 +260,6 @@ export interface CreateResourceOutput {
|
|
|
329
260
|
*/
|
|
330
261
|
ProgressEvent?: ProgressEvent | undefined;
|
|
331
262
|
}
|
|
332
|
-
/**
|
|
333
|
-
* <p>The resource handler has returned that the downstream service generated an error that
|
|
334
|
-
* doesn't map to any other handler error code.</p>
|
|
335
|
-
* @public
|
|
336
|
-
*/
|
|
337
|
-
export declare class GeneralServiceException extends __BaseException {
|
|
338
|
-
readonly name: "GeneralServiceException";
|
|
339
|
-
readonly $fault: "client";
|
|
340
|
-
Message?: string | undefined;
|
|
341
|
-
/**
|
|
342
|
-
* @internal
|
|
343
|
-
*/
|
|
344
|
-
constructor(opts: __ExceptionOptionType<GeneralServiceException, __BaseException>);
|
|
345
|
-
}
|
|
346
|
-
/**
|
|
347
|
-
* <p>The resource handler has failed without a returning a more specific error code. This can
|
|
348
|
-
* include timeouts.</p>
|
|
349
|
-
* @public
|
|
350
|
-
*/
|
|
351
|
-
export declare class HandlerFailureException extends __BaseException {
|
|
352
|
-
readonly name: "HandlerFailureException";
|
|
353
|
-
readonly $fault: "server";
|
|
354
|
-
Message?: string | undefined;
|
|
355
|
-
/**
|
|
356
|
-
* @internal
|
|
357
|
-
*/
|
|
358
|
-
constructor(opts: __ExceptionOptionType<HandlerFailureException, __BaseException>);
|
|
359
|
-
}
|
|
360
|
-
/**
|
|
361
|
-
* <p>The resource handler has returned that an unexpected error occurred within the resource
|
|
362
|
-
* handler.</p>
|
|
363
|
-
* @public
|
|
364
|
-
*/
|
|
365
|
-
export declare class HandlerInternalFailureException extends __BaseException {
|
|
366
|
-
readonly name: "HandlerInternalFailureException";
|
|
367
|
-
readonly $fault: "server";
|
|
368
|
-
Message?: string | undefined;
|
|
369
|
-
/**
|
|
370
|
-
* @internal
|
|
371
|
-
*/
|
|
372
|
-
constructor(opts: __ExceptionOptionType<HandlerInternalFailureException, __BaseException>);
|
|
373
|
-
}
|
|
374
|
-
/**
|
|
375
|
-
* <p>The resource handler has returned that the credentials provided by the user are
|
|
376
|
-
* invalid.</p>
|
|
377
|
-
* @public
|
|
378
|
-
*/
|
|
379
|
-
export declare class InvalidCredentialsException extends __BaseException {
|
|
380
|
-
readonly name: "InvalidCredentialsException";
|
|
381
|
-
readonly $fault: "client";
|
|
382
|
-
Message?: string | undefined;
|
|
383
|
-
/**
|
|
384
|
-
* @internal
|
|
385
|
-
*/
|
|
386
|
-
constructor(opts: __ExceptionOptionType<InvalidCredentialsException, __BaseException>);
|
|
387
|
-
}
|
|
388
|
-
/**
|
|
389
|
-
* <p>The resource handler has returned that invalid input from the user has generated a generic
|
|
390
|
-
* exception.</p>
|
|
391
|
-
* @public
|
|
392
|
-
*/
|
|
393
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
394
|
-
readonly name: "InvalidRequestException";
|
|
395
|
-
readonly $fault: "client";
|
|
396
|
-
Message?: string | undefined;
|
|
397
|
-
/**
|
|
398
|
-
* @internal
|
|
399
|
-
*/
|
|
400
|
-
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
401
|
-
}
|
|
402
|
-
/**
|
|
403
|
-
* <p>The resource handler has returned that the request couldn't be completed due to networking
|
|
404
|
-
* issues, such as a failure to receive a response from the server.</p>
|
|
405
|
-
* @public
|
|
406
|
-
*/
|
|
407
|
-
export declare class NetworkFailureException extends __BaseException {
|
|
408
|
-
readonly name: "NetworkFailureException";
|
|
409
|
-
readonly $fault: "server";
|
|
410
|
-
Message?: string | undefined;
|
|
411
|
-
/**
|
|
412
|
-
* @internal
|
|
413
|
-
*/
|
|
414
|
-
constructor(opts: __ExceptionOptionType<NetworkFailureException, __BaseException>);
|
|
415
|
-
}
|
|
416
|
-
/**
|
|
417
|
-
* <p>The resource handler has returned that the downstream resource failed to complete all of
|
|
418
|
-
* its ready-state checks.</p>
|
|
419
|
-
* @public
|
|
420
|
-
*/
|
|
421
|
-
export declare class NotStabilizedException extends __BaseException {
|
|
422
|
-
readonly name: "NotStabilizedException";
|
|
423
|
-
readonly $fault: "client";
|
|
424
|
-
Message?: string | undefined;
|
|
425
|
-
/**
|
|
426
|
-
* @internal
|
|
427
|
-
*/
|
|
428
|
-
constructor(opts: __ExceptionOptionType<NotStabilizedException, __BaseException>);
|
|
429
|
-
}
|
|
430
|
-
/**
|
|
431
|
-
* <p>One or more properties included in this resource operation are defined as create-only, and
|
|
432
|
-
* therefore can't be updated.</p>
|
|
433
|
-
* @public
|
|
434
|
-
*/
|
|
435
|
-
export declare class NotUpdatableException extends __BaseException {
|
|
436
|
-
readonly name: "NotUpdatableException";
|
|
437
|
-
readonly $fault: "client";
|
|
438
|
-
Message?: string | undefined;
|
|
439
|
-
/**
|
|
440
|
-
* @internal
|
|
441
|
-
*/
|
|
442
|
-
constructor(opts: __ExceptionOptionType<NotUpdatableException, __BaseException>);
|
|
443
|
-
}
|
|
444
|
-
/**
|
|
445
|
-
* <p>Cloud Control API hasn't received a valid response from the resource handler, due to a configuration
|
|
446
|
-
* error. This includes issues such as the resource handler returning an invalid response, or
|
|
447
|
-
* timing out.</p>
|
|
448
|
-
* @public
|
|
449
|
-
*/
|
|
450
|
-
export declare class PrivateTypeException extends __BaseException {
|
|
451
|
-
readonly name: "PrivateTypeException";
|
|
452
|
-
readonly $fault: "client";
|
|
453
|
-
Message?: string | undefined;
|
|
454
|
-
/**
|
|
455
|
-
* @internal
|
|
456
|
-
*/
|
|
457
|
-
constructor(opts: __ExceptionOptionType<PrivateTypeException, __BaseException>);
|
|
458
|
-
}
|
|
459
|
-
/**
|
|
460
|
-
* <p>The resource is temporarily unavailable to be acted upon. For example, if the resource is
|
|
461
|
-
* currently undergoing an operation and can't be acted upon until that operation is
|
|
462
|
-
* finished.</p>
|
|
463
|
-
* @public
|
|
464
|
-
*/
|
|
465
|
-
export declare class ResourceConflictException extends __BaseException {
|
|
466
|
-
readonly name: "ResourceConflictException";
|
|
467
|
-
readonly $fault: "client";
|
|
468
|
-
Message?: string | undefined;
|
|
469
|
-
/**
|
|
470
|
-
* @internal
|
|
471
|
-
*/
|
|
472
|
-
constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
|
|
473
|
-
}
|
|
474
|
-
/**
|
|
475
|
-
* <p>A resource with the specified identifier can't be found.</p>
|
|
476
|
-
* @public
|
|
477
|
-
*/
|
|
478
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
479
|
-
readonly name: "ResourceNotFoundException";
|
|
480
|
-
readonly $fault: "client";
|
|
481
|
-
Message?: string | undefined;
|
|
482
|
-
/**
|
|
483
|
-
* @internal
|
|
484
|
-
*/
|
|
485
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
486
|
-
}
|
|
487
|
-
/**
|
|
488
|
-
* <p>The resource handler has returned that the downstream service returned an internal error,
|
|
489
|
-
* typically with a <code>5XX HTTP</code> status code.</p>
|
|
490
|
-
* @public
|
|
491
|
-
*/
|
|
492
|
-
export declare class ServiceInternalErrorException extends __BaseException {
|
|
493
|
-
readonly name: "ServiceInternalErrorException";
|
|
494
|
-
readonly $fault: "server";
|
|
495
|
-
Message?: string | undefined;
|
|
496
|
-
/**
|
|
497
|
-
* @internal
|
|
498
|
-
*/
|
|
499
|
-
constructor(opts: __ExceptionOptionType<ServiceInternalErrorException, __BaseException>);
|
|
500
|
-
}
|
|
501
|
-
/**
|
|
502
|
-
* <p>The resource handler has returned that a non-transient resource limit was reached on the
|
|
503
|
-
* service side.</p>
|
|
504
|
-
* @public
|
|
505
|
-
*/
|
|
506
|
-
export declare class ServiceLimitExceededException extends __BaseException {
|
|
507
|
-
readonly name: "ServiceLimitExceededException";
|
|
508
|
-
readonly $fault: "client";
|
|
509
|
-
Message?: string | undefined;
|
|
510
|
-
/**
|
|
511
|
-
* @internal
|
|
512
|
-
*/
|
|
513
|
-
constructor(opts: __ExceptionOptionType<ServiceLimitExceededException, __BaseException>);
|
|
514
|
-
}
|
|
515
|
-
/**
|
|
516
|
-
* <p>The request was denied due to request throttling.</p>
|
|
517
|
-
* @public
|
|
518
|
-
*/
|
|
519
|
-
export declare class ThrottlingException extends __BaseException {
|
|
520
|
-
readonly name: "ThrottlingException";
|
|
521
|
-
readonly $fault: "client";
|
|
522
|
-
Message?: string | undefined;
|
|
523
|
-
/**
|
|
524
|
-
* @internal
|
|
525
|
-
*/
|
|
526
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
527
|
-
}
|
|
528
|
-
/**
|
|
529
|
-
* <p>The specified extension doesn't exist in the CloudFormation registry.</p>
|
|
530
|
-
* @public
|
|
531
|
-
*/
|
|
532
|
-
export declare class TypeNotFoundException extends __BaseException {
|
|
533
|
-
readonly name: "TypeNotFoundException";
|
|
534
|
-
readonly $fault: "client";
|
|
535
|
-
Message?: string | undefined;
|
|
536
|
-
/**
|
|
537
|
-
* @internal
|
|
538
|
-
*/
|
|
539
|
-
constructor(opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>);
|
|
540
|
-
}
|
|
541
|
-
/**
|
|
542
|
-
* <p>The specified resource doesn't support this resource operation.</p>
|
|
543
|
-
* @public
|
|
544
|
-
*/
|
|
545
|
-
export declare class UnsupportedActionException extends __BaseException {
|
|
546
|
-
readonly name: "UnsupportedActionException";
|
|
547
|
-
readonly $fault: "client";
|
|
548
|
-
Message?: string | undefined;
|
|
549
|
-
/**
|
|
550
|
-
* @internal
|
|
551
|
-
*/
|
|
552
|
-
constructor(opts: __ExceptionOptionType<UnsupportedActionException, __BaseException>);
|
|
553
|
-
}
|
|
554
263
|
/**
|
|
555
264
|
* @public
|
|
556
265
|
*/
|
|
@@ -6,5 +6,6 @@ export { CloudControlExtensionConfiguration } from "./extensionConfiguration";
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./waiters";
|
|
9
|
-
export * from "./models";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
10
11
|
export { CloudControlServiceException } from "./models/CloudControlServiceException";
|