@aws-sdk/client-cloudcontrol 3.948.0 → 3.953.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 +227 -163
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CancelResourceRequestCommand.js +2 -2
- package/dist-es/commands/CreateResourceCommand.js +2 -2
- package/dist-es/commands/DeleteResourceCommand.js +2 -2
- package/dist-es/commands/GetResourceCommand.js +2 -2
- package/dist-es/commands/GetResourceRequestStatusCommand.js +2 -2
- package/dist-es/commands/ListResourceRequestsCommand.js +2 -2
- package/dist-es/commands/ListResourcesCommand.js +2 -2
- package/dist-es/commands/UpdateResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +109 -95
- package/dist-types/CloudControlClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +51 -58
- package/dist-types/ts3.4/CloudControlClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +50 -59
- package/package.json +35 -35
package/dist-cjs/index.js
CHANGED
|
@@ -111,14 +111,14 @@ class CloudControlClient extends smithyClient.Client {
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
|
|
114
|
+
class CloudControlServiceException extends smithyClient.ServiceException {
|
|
115
115
|
constructor(options) {
|
|
116
116
|
super(options);
|
|
117
117
|
Object.setPrototypeOf(this, CloudControlServiceException.prototype);
|
|
118
118
|
}
|
|
119
|
-
}
|
|
119
|
+
}
|
|
120
120
|
|
|
121
|
-
|
|
121
|
+
class AlreadyExistsException extends CloudControlServiceException {
|
|
122
122
|
name = "AlreadyExistsException";
|
|
123
123
|
$fault = "client";
|
|
124
124
|
Message;
|
|
@@ -131,8 +131,8 @@ let AlreadyExistsException$1 = class AlreadyExistsException extends CloudControl
|
|
|
131
131
|
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
132
132
|
this.Message = opts.Message;
|
|
133
133
|
}
|
|
134
|
-
}
|
|
135
|
-
|
|
134
|
+
}
|
|
135
|
+
class ConcurrentModificationException extends CloudControlServiceException {
|
|
136
136
|
name = "ConcurrentModificationException";
|
|
137
137
|
$fault = "server";
|
|
138
138
|
Message;
|
|
@@ -145,8 +145,8 @@ let ConcurrentModificationException$1 = class ConcurrentModificationException ex
|
|
|
145
145
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
146
146
|
this.Message = opts.Message;
|
|
147
147
|
}
|
|
148
|
-
}
|
|
149
|
-
|
|
148
|
+
}
|
|
149
|
+
class RequestTokenNotFoundException extends CloudControlServiceException {
|
|
150
150
|
name = "RequestTokenNotFoundException";
|
|
151
151
|
$fault = "client";
|
|
152
152
|
Message;
|
|
@@ -159,8 +159,8 @@ let RequestTokenNotFoundException$1 = class RequestTokenNotFoundException extend
|
|
|
159
159
|
Object.setPrototypeOf(this, RequestTokenNotFoundException.prototype);
|
|
160
160
|
this.Message = opts.Message;
|
|
161
161
|
}
|
|
162
|
-
}
|
|
163
|
-
|
|
162
|
+
}
|
|
163
|
+
class ClientTokenConflictException extends CloudControlServiceException {
|
|
164
164
|
name = "ClientTokenConflictException";
|
|
165
165
|
$fault = "client";
|
|
166
166
|
Message;
|
|
@@ -173,8 +173,8 @@ let ClientTokenConflictException$1 = class ClientTokenConflictException extends
|
|
|
173
173
|
Object.setPrototypeOf(this, ClientTokenConflictException.prototype);
|
|
174
174
|
this.Message = opts.Message;
|
|
175
175
|
}
|
|
176
|
-
}
|
|
177
|
-
|
|
176
|
+
}
|
|
177
|
+
class ConcurrentOperationException extends CloudControlServiceException {
|
|
178
178
|
name = "ConcurrentOperationException";
|
|
179
179
|
$fault = "client";
|
|
180
180
|
Message;
|
|
@@ -187,8 +187,8 @@ let ConcurrentOperationException$1 = class ConcurrentOperationException extends
|
|
|
187
187
|
Object.setPrototypeOf(this, ConcurrentOperationException.prototype);
|
|
188
188
|
this.Message = opts.Message;
|
|
189
189
|
}
|
|
190
|
-
}
|
|
191
|
-
|
|
190
|
+
}
|
|
191
|
+
class GeneralServiceException extends CloudControlServiceException {
|
|
192
192
|
name = "GeneralServiceException";
|
|
193
193
|
$fault = "client";
|
|
194
194
|
Message;
|
|
@@ -201,8 +201,8 @@ let GeneralServiceException$1 = class GeneralServiceException extends CloudContr
|
|
|
201
201
|
Object.setPrototypeOf(this, GeneralServiceException.prototype);
|
|
202
202
|
this.Message = opts.Message;
|
|
203
203
|
}
|
|
204
|
-
}
|
|
205
|
-
|
|
204
|
+
}
|
|
205
|
+
class HandlerFailureException extends CloudControlServiceException {
|
|
206
206
|
name = "HandlerFailureException";
|
|
207
207
|
$fault = "server";
|
|
208
208
|
Message;
|
|
@@ -215,8 +215,8 @@ let HandlerFailureException$1 = class HandlerFailureException extends CloudContr
|
|
|
215
215
|
Object.setPrototypeOf(this, HandlerFailureException.prototype);
|
|
216
216
|
this.Message = opts.Message;
|
|
217
217
|
}
|
|
218
|
-
}
|
|
219
|
-
|
|
218
|
+
}
|
|
219
|
+
class HandlerInternalFailureException extends CloudControlServiceException {
|
|
220
220
|
name = "HandlerInternalFailureException";
|
|
221
221
|
$fault = "server";
|
|
222
222
|
Message;
|
|
@@ -229,8 +229,8 @@ let HandlerInternalFailureException$1 = class HandlerInternalFailureException ex
|
|
|
229
229
|
Object.setPrototypeOf(this, HandlerInternalFailureException.prototype);
|
|
230
230
|
this.Message = opts.Message;
|
|
231
231
|
}
|
|
232
|
-
}
|
|
233
|
-
|
|
232
|
+
}
|
|
233
|
+
class InvalidCredentialsException extends CloudControlServiceException {
|
|
234
234
|
name = "InvalidCredentialsException";
|
|
235
235
|
$fault = "client";
|
|
236
236
|
Message;
|
|
@@ -243,8 +243,8 @@ let InvalidCredentialsException$1 = class InvalidCredentialsException extends Cl
|
|
|
243
243
|
Object.setPrototypeOf(this, InvalidCredentialsException.prototype);
|
|
244
244
|
this.Message = opts.Message;
|
|
245
245
|
}
|
|
246
|
-
}
|
|
247
|
-
|
|
246
|
+
}
|
|
247
|
+
class InvalidRequestException extends CloudControlServiceException {
|
|
248
248
|
name = "InvalidRequestException";
|
|
249
249
|
$fault = "client";
|
|
250
250
|
Message;
|
|
@@ -257,8 +257,8 @@ let InvalidRequestException$1 = class InvalidRequestException extends CloudContr
|
|
|
257
257
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
258
258
|
this.Message = opts.Message;
|
|
259
259
|
}
|
|
260
|
-
}
|
|
261
|
-
|
|
260
|
+
}
|
|
261
|
+
class NetworkFailureException extends CloudControlServiceException {
|
|
262
262
|
name = "NetworkFailureException";
|
|
263
263
|
$fault = "server";
|
|
264
264
|
Message;
|
|
@@ -271,8 +271,8 @@ let NetworkFailureException$1 = class NetworkFailureException extends CloudContr
|
|
|
271
271
|
Object.setPrototypeOf(this, NetworkFailureException.prototype);
|
|
272
272
|
this.Message = opts.Message;
|
|
273
273
|
}
|
|
274
|
-
}
|
|
275
|
-
|
|
274
|
+
}
|
|
275
|
+
class NotStabilizedException extends CloudControlServiceException {
|
|
276
276
|
name = "NotStabilizedException";
|
|
277
277
|
$fault = "client";
|
|
278
278
|
Message;
|
|
@@ -285,8 +285,8 @@ let NotStabilizedException$1 = class NotStabilizedException extends CloudControl
|
|
|
285
285
|
Object.setPrototypeOf(this, NotStabilizedException.prototype);
|
|
286
286
|
this.Message = opts.Message;
|
|
287
287
|
}
|
|
288
|
-
}
|
|
289
|
-
|
|
288
|
+
}
|
|
289
|
+
class NotUpdatableException extends CloudControlServiceException {
|
|
290
290
|
name = "NotUpdatableException";
|
|
291
291
|
$fault = "client";
|
|
292
292
|
Message;
|
|
@@ -299,8 +299,8 @@ let NotUpdatableException$1 = class NotUpdatableException extends CloudControlSe
|
|
|
299
299
|
Object.setPrototypeOf(this, NotUpdatableException.prototype);
|
|
300
300
|
this.Message = opts.Message;
|
|
301
301
|
}
|
|
302
|
-
}
|
|
303
|
-
|
|
302
|
+
}
|
|
303
|
+
class PrivateTypeException extends CloudControlServiceException {
|
|
304
304
|
name = "PrivateTypeException";
|
|
305
305
|
$fault = "client";
|
|
306
306
|
Message;
|
|
@@ -313,8 +313,8 @@ let PrivateTypeException$1 = class PrivateTypeException extends CloudControlServ
|
|
|
313
313
|
Object.setPrototypeOf(this, PrivateTypeException.prototype);
|
|
314
314
|
this.Message = opts.Message;
|
|
315
315
|
}
|
|
316
|
-
}
|
|
317
|
-
|
|
316
|
+
}
|
|
317
|
+
class ResourceConflictException extends CloudControlServiceException {
|
|
318
318
|
name = "ResourceConflictException";
|
|
319
319
|
$fault = "client";
|
|
320
320
|
Message;
|
|
@@ -327,8 +327,8 @@ let ResourceConflictException$1 = class ResourceConflictException extends CloudC
|
|
|
327
327
|
Object.setPrototypeOf(this, ResourceConflictException.prototype);
|
|
328
328
|
this.Message = opts.Message;
|
|
329
329
|
}
|
|
330
|
-
}
|
|
331
|
-
|
|
330
|
+
}
|
|
331
|
+
class ResourceNotFoundException extends CloudControlServiceException {
|
|
332
332
|
name = "ResourceNotFoundException";
|
|
333
333
|
$fault = "client";
|
|
334
334
|
Message;
|
|
@@ -341,8 +341,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends CloudC
|
|
|
341
341
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
342
342
|
this.Message = opts.Message;
|
|
343
343
|
}
|
|
344
|
-
}
|
|
345
|
-
|
|
344
|
+
}
|
|
345
|
+
class ServiceInternalErrorException extends CloudControlServiceException {
|
|
346
346
|
name = "ServiceInternalErrorException";
|
|
347
347
|
$fault = "server";
|
|
348
348
|
Message;
|
|
@@ -355,8 +355,8 @@ let ServiceInternalErrorException$1 = class ServiceInternalErrorException extend
|
|
|
355
355
|
Object.setPrototypeOf(this, ServiceInternalErrorException.prototype);
|
|
356
356
|
this.Message = opts.Message;
|
|
357
357
|
}
|
|
358
|
-
}
|
|
359
|
-
|
|
358
|
+
}
|
|
359
|
+
class ServiceLimitExceededException extends CloudControlServiceException {
|
|
360
360
|
name = "ServiceLimitExceededException";
|
|
361
361
|
$fault = "client";
|
|
362
362
|
Message;
|
|
@@ -369,8 +369,8 @@ let ServiceLimitExceededException$1 = class ServiceLimitExceededException extend
|
|
|
369
369
|
Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
|
|
370
370
|
this.Message = opts.Message;
|
|
371
371
|
}
|
|
372
|
-
}
|
|
373
|
-
|
|
372
|
+
}
|
|
373
|
+
class ThrottlingException extends CloudControlServiceException {
|
|
374
374
|
name = "ThrottlingException";
|
|
375
375
|
$fault = "client";
|
|
376
376
|
Message;
|
|
@@ -383,8 +383,8 @@ let ThrottlingException$1 = class ThrottlingException extends CloudControlServic
|
|
|
383
383
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
384
384
|
this.Message = opts.Message;
|
|
385
385
|
}
|
|
386
|
-
}
|
|
387
|
-
|
|
386
|
+
}
|
|
387
|
+
class TypeNotFoundException extends CloudControlServiceException {
|
|
388
388
|
name = "TypeNotFoundException";
|
|
389
389
|
$fault = "client";
|
|
390
390
|
Message;
|
|
@@ -397,8 +397,8 @@ let TypeNotFoundException$1 = class TypeNotFoundException extends CloudControlSe
|
|
|
397
397
|
Object.setPrototypeOf(this, TypeNotFoundException.prototype);
|
|
398
398
|
this.Message = opts.Message;
|
|
399
399
|
}
|
|
400
|
-
}
|
|
401
|
-
|
|
400
|
+
}
|
|
401
|
+
class UnsupportedActionException extends CloudControlServiceException {
|
|
402
402
|
name = "UnsupportedActionException";
|
|
403
403
|
$fault = "client";
|
|
404
404
|
Message;
|
|
@@ -411,7 +411,7 @@ let UnsupportedActionException$1 = class UnsupportedActionException extends Clou
|
|
|
411
411
|
Object.setPrototypeOf(this, UnsupportedActionException.prototype);
|
|
412
412
|
this.Message = opts.Message;
|
|
413
413
|
}
|
|
414
|
-
}
|
|
414
|
+
}
|
|
415
415
|
|
|
416
416
|
const _AEE = "AlreadyExistsException";
|
|
417
417
|
const _CME = "ConcurrentModificationException";
|
|
@@ -504,7 +504,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloudcontrol";
|
|
|
504
504
|
const n0 = "com.amazonaws.cloudcontrol";
|
|
505
505
|
var PatchDocument = [0, n0, _PD, 8, 0];
|
|
506
506
|
var Properties = [0, n0, _P, 8, 0];
|
|
507
|
-
var AlreadyExistsException = [
|
|
507
|
+
var AlreadyExistsException$ = [
|
|
508
508
|
-3,
|
|
509
509
|
n0,
|
|
510
510
|
_AEE,
|
|
@@ -512,10 +512,10 @@ var AlreadyExistsException = [
|
|
|
512
512
|
[_M],
|
|
513
513
|
[0],
|
|
514
514
|
];
|
|
515
|
-
schema.TypeRegistry.for(n0).registerError(AlreadyExistsException
|
|
516
|
-
var CancelResourceRequestInput = [3, n0, _CRRI, 0, [_RT], [0]];
|
|
517
|
-
var CancelResourceRequestOutput = [3, n0, _CRRO, 0, [_PE], [[() => ProgressEvent
|
|
518
|
-
var ClientTokenConflictException = [
|
|
515
|
+
schema.TypeRegistry.for(n0).registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
516
|
+
var CancelResourceRequestInput$ = [3, n0, _CRRI, 0, [_RT], [0]];
|
|
517
|
+
var CancelResourceRequestOutput$ = [3, n0, _CRRO, 0, [_PE], [[() => ProgressEvent$, 0]]];
|
|
518
|
+
var ClientTokenConflictException$ = [
|
|
519
519
|
-3,
|
|
520
520
|
n0,
|
|
521
521
|
_CTCE,
|
|
@@ -523,8 +523,8 @@ var ClientTokenConflictException = [
|
|
|
523
523
|
[_M],
|
|
524
524
|
[0],
|
|
525
525
|
];
|
|
526
|
-
schema.TypeRegistry.for(n0).registerError(ClientTokenConflictException
|
|
527
|
-
var ConcurrentModificationException = [
|
|
526
|
+
schema.TypeRegistry.for(n0).registerError(ClientTokenConflictException$, ClientTokenConflictException);
|
|
527
|
+
var ConcurrentModificationException$ = [
|
|
528
528
|
-3,
|
|
529
529
|
n0,
|
|
530
530
|
_CME,
|
|
@@ -532,8 +532,8 @@ var ConcurrentModificationException = [
|
|
|
532
532
|
[_M],
|
|
533
533
|
[0],
|
|
534
534
|
];
|
|
535
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException
|
|
536
|
-
var ConcurrentOperationException = [
|
|
535
|
+
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
536
|
+
var ConcurrentOperationException$ = [
|
|
537
537
|
-3,
|
|
538
538
|
n0,
|
|
539
539
|
_COE,
|
|
@@ -541,8 +541,8 @@ var ConcurrentOperationException = [
|
|
|
541
541
|
[_M],
|
|
542
542
|
[0],
|
|
543
543
|
];
|
|
544
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentOperationException
|
|
545
|
-
var CreateResourceInput = [
|
|
544
|
+
schema.TypeRegistry.for(n0).registerError(ConcurrentOperationException$, ConcurrentOperationException);
|
|
545
|
+
var CreateResourceInput$ = [
|
|
546
546
|
3,
|
|
547
547
|
n0,
|
|
548
548
|
_CRI,
|
|
@@ -550,8 +550,8 @@ var CreateResourceInput = [
|
|
|
550
550
|
[_TN, _TVI, _RA, _CT, _DS],
|
|
551
551
|
[0, 0, 0, [0, 4], [() => Properties, 0]],
|
|
552
552
|
];
|
|
553
|
-
var CreateResourceOutput = [3, n0, _CRO, 0, [_PE], [[() => ProgressEvent
|
|
554
|
-
var DeleteResourceInput = [
|
|
553
|
+
var CreateResourceOutput$ = [3, n0, _CRO, 0, [_PE], [[() => ProgressEvent$, 0]]];
|
|
554
|
+
var DeleteResourceInput$ = [
|
|
555
555
|
3,
|
|
556
556
|
n0,
|
|
557
557
|
_DRI,
|
|
@@ -559,8 +559,8 @@ var DeleteResourceInput = [
|
|
|
559
559
|
[_TN, _TVI, _RA, _CT, _I],
|
|
560
560
|
[0, 0, 0, [0, 4], 0],
|
|
561
561
|
];
|
|
562
|
-
var DeleteResourceOutput = [3, n0, _DRO, 0, [_PE], [[() => ProgressEvent
|
|
563
|
-
var GeneralServiceException = [
|
|
562
|
+
var DeleteResourceOutput$ = [3, n0, _DRO, 0, [_PE], [[() => ProgressEvent$, 0]]];
|
|
563
|
+
var GeneralServiceException$ = [
|
|
564
564
|
-3,
|
|
565
565
|
n0,
|
|
566
566
|
_GSE,
|
|
@@ -568,19 +568,26 @@ var GeneralServiceException = [
|
|
|
568
568
|
[_M],
|
|
569
569
|
[0],
|
|
570
570
|
];
|
|
571
|
-
schema.TypeRegistry.for(n0).registerError(GeneralServiceException
|
|
572
|
-
var GetResourceInput = [3, n0, _GRI, 0, [_TN, _TVI, _RA, _I], [0, 0, 0, 0]];
|
|
573
|
-
var GetResourceOutput = [
|
|
574
|
-
|
|
575
|
-
|
|
571
|
+
schema.TypeRegistry.for(n0).registerError(GeneralServiceException$, GeneralServiceException);
|
|
572
|
+
var GetResourceInput$ = [3, n0, _GRI, 0, [_TN, _TVI, _RA, _I], [0, 0, 0, 0]];
|
|
573
|
+
var GetResourceOutput$ = [
|
|
574
|
+
3,
|
|
575
|
+
n0,
|
|
576
|
+
_GRO,
|
|
577
|
+
0,
|
|
578
|
+
[_TN, _RD],
|
|
579
|
+
[0, [() => ResourceDescription$, 0]],
|
|
580
|
+
];
|
|
581
|
+
var GetResourceRequestStatusInput$ = [3, n0, _GRRSI, 0, [_RT], [0]];
|
|
582
|
+
var GetResourceRequestStatusOutput$ = [
|
|
576
583
|
3,
|
|
577
584
|
n0,
|
|
578
585
|
_GRRSO,
|
|
579
586
|
0,
|
|
580
587
|
[_PE, _HPE],
|
|
581
|
-
[[() => ProgressEvent
|
|
588
|
+
[[() => ProgressEvent$, 0], () => HooksProgressEvent],
|
|
582
589
|
];
|
|
583
|
-
var HandlerFailureException = [
|
|
590
|
+
var HandlerFailureException$ = [
|
|
584
591
|
-3,
|
|
585
592
|
n0,
|
|
586
593
|
_HFE,
|
|
@@ -588,8 +595,8 @@ var HandlerFailureException = [
|
|
|
588
595
|
[_M],
|
|
589
596
|
[0],
|
|
590
597
|
];
|
|
591
|
-
schema.TypeRegistry.for(n0).registerError(HandlerFailureException
|
|
592
|
-
var HandlerInternalFailureException = [
|
|
598
|
+
schema.TypeRegistry.for(n0).registerError(HandlerFailureException$, HandlerFailureException);
|
|
599
|
+
var HandlerInternalFailureException$ = [
|
|
593
600
|
-3,
|
|
594
601
|
n0,
|
|
595
602
|
_HIFE,
|
|
@@ -597,8 +604,8 @@ var HandlerInternalFailureException = [
|
|
|
597
604
|
[_M],
|
|
598
605
|
[0],
|
|
599
606
|
];
|
|
600
|
-
schema.TypeRegistry.for(n0).registerError(HandlerInternalFailureException
|
|
601
|
-
var HookProgressEvent = [
|
|
607
|
+
schema.TypeRegistry.for(n0).registerError(HandlerInternalFailureException$, HandlerInternalFailureException);
|
|
608
|
+
var HookProgressEvent$ = [
|
|
602
609
|
3,
|
|
603
610
|
n0,
|
|
604
611
|
_HPEo,
|
|
@@ -606,7 +613,7 @@ var HookProgressEvent = [
|
|
|
606
613
|
[_HTN, _HTVI, _HTA, _IP, _HS, _HET, _HSM, _FM],
|
|
607
614
|
[0, 0, 0, 0, 0, 4, 0, 0],
|
|
608
615
|
];
|
|
609
|
-
var InvalidCredentialsException = [
|
|
616
|
+
var InvalidCredentialsException$ = [
|
|
610
617
|
-3,
|
|
611
618
|
n0,
|
|
612
619
|
_ICE,
|
|
@@ -614,8 +621,8 @@ var InvalidCredentialsException = [
|
|
|
614
621
|
[_M],
|
|
615
622
|
[0],
|
|
616
623
|
];
|
|
617
|
-
schema.TypeRegistry.for(n0).registerError(InvalidCredentialsException
|
|
618
|
-
var InvalidRequestException = [
|
|
624
|
+
schema.TypeRegistry.for(n0).registerError(InvalidCredentialsException$, InvalidCredentialsException);
|
|
625
|
+
var InvalidRequestException$ = [
|
|
619
626
|
-3,
|
|
620
627
|
n0,
|
|
621
628
|
_IRE,
|
|
@@ -623,16 +630,16 @@ var InvalidRequestException = [
|
|
|
623
630
|
[_M],
|
|
624
631
|
[0],
|
|
625
632
|
];
|
|
626
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException
|
|
627
|
-
var ListResourceRequestsInput = [
|
|
633
|
+
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
634
|
+
var ListResourceRequestsInput$ = [
|
|
628
635
|
3,
|
|
629
636
|
n0,
|
|
630
637
|
_LRRI,
|
|
631
638
|
0,
|
|
632
639
|
[_MR, _NT, _RRSF],
|
|
633
|
-
[1, 0, () => ResourceRequestStatusFilter],
|
|
640
|
+
[1, 0, () => ResourceRequestStatusFilter$],
|
|
634
641
|
];
|
|
635
|
-
var ListResourceRequestsOutput = [
|
|
642
|
+
var ListResourceRequestsOutput$ = [
|
|
636
643
|
3,
|
|
637
644
|
n0,
|
|
638
645
|
_LRRO,
|
|
@@ -640,7 +647,7 @@ var ListResourceRequestsOutput = [
|
|
|
640
647
|
[_RRSS, _NT],
|
|
641
648
|
[[() => ResourceRequestStatusSummaries, 0], 0],
|
|
642
649
|
];
|
|
643
|
-
var ListResourcesInput = [
|
|
650
|
+
var ListResourcesInput$ = [
|
|
644
651
|
3,
|
|
645
652
|
n0,
|
|
646
653
|
_LRI,
|
|
@@ -648,7 +655,7 @@ var ListResourcesInput = [
|
|
|
648
655
|
[_TN, _TVI, _RA, _NT, _MR, _RM],
|
|
649
656
|
[0, 0, 0, 0, 1, [() => Properties, 0]],
|
|
650
657
|
];
|
|
651
|
-
var ListResourcesOutput = [
|
|
658
|
+
var ListResourcesOutput$ = [
|
|
652
659
|
3,
|
|
653
660
|
n0,
|
|
654
661
|
_LRO,
|
|
@@ -656,7 +663,7 @@ var ListResourcesOutput = [
|
|
|
656
663
|
[_TN, _RDe, _NT],
|
|
657
664
|
[0, [() => ResourceDescriptions, 0], 0],
|
|
658
665
|
];
|
|
659
|
-
var NetworkFailureException = [
|
|
666
|
+
var NetworkFailureException$ = [
|
|
660
667
|
-3,
|
|
661
668
|
n0,
|
|
662
669
|
_NFE,
|
|
@@ -664,8 +671,8 @@ var NetworkFailureException = [
|
|
|
664
671
|
[_M],
|
|
665
672
|
[0],
|
|
666
673
|
];
|
|
667
|
-
schema.TypeRegistry.for(n0).registerError(NetworkFailureException
|
|
668
|
-
var NotStabilizedException = [
|
|
674
|
+
schema.TypeRegistry.for(n0).registerError(NetworkFailureException$, NetworkFailureException);
|
|
675
|
+
var NotStabilizedException$ = [
|
|
669
676
|
-3,
|
|
670
677
|
n0,
|
|
671
678
|
_NSE,
|
|
@@ -673,8 +680,8 @@ var NotStabilizedException = [
|
|
|
673
680
|
[_M],
|
|
674
681
|
[0],
|
|
675
682
|
];
|
|
676
|
-
schema.TypeRegistry.for(n0).registerError(NotStabilizedException
|
|
677
|
-
var NotUpdatableException = [
|
|
683
|
+
schema.TypeRegistry.for(n0).registerError(NotStabilizedException$, NotStabilizedException);
|
|
684
|
+
var NotUpdatableException$ = [
|
|
678
685
|
-3,
|
|
679
686
|
n0,
|
|
680
687
|
_NUE,
|
|
@@ -682,8 +689,8 @@ var NotUpdatableException = [
|
|
|
682
689
|
[_M],
|
|
683
690
|
[0],
|
|
684
691
|
];
|
|
685
|
-
schema.TypeRegistry.for(n0).registerError(NotUpdatableException
|
|
686
|
-
var PrivateTypeException = [
|
|
692
|
+
schema.TypeRegistry.for(n0).registerError(NotUpdatableException$, NotUpdatableException);
|
|
693
|
+
var PrivateTypeException$ = [
|
|
687
694
|
-3,
|
|
688
695
|
n0,
|
|
689
696
|
_PTE,
|
|
@@ -691,8 +698,8 @@ var PrivateTypeException = [
|
|
|
691
698
|
[_M],
|
|
692
699
|
[0],
|
|
693
700
|
];
|
|
694
|
-
schema.TypeRegistry.for(n0).registerError(PrivateTypeException
|
|
695
|
-
var ProgressEvent = [
|
|
701
|
+
schema.TypeRegistry.for(n0).registerError(PrivateTypeException$, PrivateTypeException);
|
|
702
|
+
var ProgressEvent$ = [
|
|
696
703
|
3,
|
|
697
704
|
n0,
|
|
698
705
|
_PE,
|
|
@@ -700,7 +707,7 @@ var ProgressEvent = [
|
|
|
700
707
|
[_TN, _I, _RT, _HRT, _O, _OS, _ET, _RM, _SM, _EC, _RAe],
|
|
701
708
|
[0, 0, 0, 0, 0, 0, 4, [() => Properties, 0], 0, 0, 4],
|
|
702
709
|
];
|
|
703
|
-
var RequestTokenNotFoundException = [
|
|
710
|
+
var RequestTokenNotFoundException$ = [
|
|
704
711
|
-3,
|
|
705
712
|
n0,
|
|
706
713
|
_RTNFE,
|
|
@@ -708,8 +715,8 @@ var RequestTokenNotFoundException = [
|
|
|
708
715
|
[_M],
|
|
709
716
|
[0],
|
|
710
717
|
];
|
|
711
|
-
schema.TypeRegistry.for(n0).registerError(RequestTokenNotFoundException
|
|
712
|
-
var ResourceConflictException = [
|
|
718
|
+
schema.TypeRegistry.for(n0).registerError(RequestTokenNotFoundException$, RequestTokenNotFoundException);
|
|
719
|
+
var ResourceConflictException$ = [
|
|
713
720
|
-3,
|
|
714
721
|
n0,
|
|
715
722
|
_RCE,
|
|
@@ -717,9 +724,9 @@ var ResourceConflictException = [
|
|
|
717
724
|
[_M],
|
|
718
725
|
[0],
|
|
719
726
|
];
|
|
720
|
-
schema.TypeRegistry.for(n0).registerError(ResourceConflictException
|
|
721
|
-
var ResourceDescription = [3, n0, _RD, 0, [_I, _P], [0, [() => Properties, 0]]];
|
|
722
|
-
var ResourceNotFoundException = [
|
|
727
|
+
schema.TypeRegistry.for(n0).registerError(ResourceConflictException$, ResourceConflictException);
|
|
728
|
+
var ResourceDescription$ = [3, n0, _RD, 0, [_I, _P], [0, [() => Properties, 0]]];
|
|
729
|
+
var ResourceNotFoundException$ = [
|
|
723
730
|
-3,
|
|
724
731
|
n0,
|
|
725
732
|
_RNFE,
|
|
@@ -727,9 +734,9 @@ var ResourceNotFoundException = [
|
|
|
727
734
|
[_M],
|
|
728
735
|
[0],
|
|
729
736
|
];
|
|
730
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
731
|
-
var ResourceRequestStatusFilter = [3, n0, _RRSF, 0, [_Op, _OSp], [64 | 0, 64 | 0]];
|
|
732
|
-
var ServiceInternalErrorException = [
|
|
737
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
738
|
+
var ResourceRequestStatusFilter$ = [3, n0, _RRSF, 0, [_Op, _OSp], [64 | 0, 64 | 0]];
|
|
739
|
+
var ServiceInternalErrorException$ = [
|
|
733
740
|
-3,
|
|
734
741
|
n0,
|
|
735
742
|
_SIEE,
|
|
@@ -737,8 +744,8 @@ var ServiceInternalErrorException = [
|
|
|
737
744
|
[_M],
|
|
738
745
|
[0],
|
|
739
746
|
];
|
|
740
|
-
schema.TypeRegistry.for(n0).registerError(ServiceInternalErrorException
|
|
741
|
-
var ServiceLimitExceededException = [
|
|
747
|
+
schema.TypeRegistry.for(n0).registerError(ServiceInternalErrorException$, ServiceInternalErrorException);
|
|
748
|
+
var ServiceLimitExceededException$ = [
|
|
742
749
|
-3,
|
|
743
750
|
n0,
|
|
744
751
|
_SLEE,
|
|
@@ -746,8 +753,8 @@ var ServiceLimitExceededException = [
|
|
|
746
753
|
[_M],
|
|
747
754
|
[0],
|
|
748
755
|
];
|
|
749
|
-
schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException
|
|
750
|
-
var ThrottlingException = [
|
|
756
|
+
schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException$, ServiceLimitExceededException);
|
|
757
|
+
var ThrottlingException$ = [
|
|
751
758
|
-3,
|
|
752
759
|
n0,
|
|
753
760
|
_TE,
|
|
@@ -755,8 +762,8 @@ var ThrottlingException = [
|
|
|
755
762
|
[_M],
|
|
756
763
|
[0],
|
|
757
764
|
];
|
|
758
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
759
|
-
var TypeNotFoundException = [
|
|
765
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
766
|
+
var TypeNotFoundException$ = [
|
|
760
767
|
-3,
|
|
761
768
|
n0,
|
|
762
769
|
_TNFE,
|
|
@@ -764,8 +771,8 @@ var TypeNotFoundException = [
|
|
|
764
771
|
[_M],
|
|
765
772
|
[0],
|
|
766
773
|
];
|
|
767
|
-
schema.TypeRegistry.for(n0).registerError(TypeNotFoundException
|
|
768
|
-
var UnsupportedActionException = [
|
|
774
|
+
schema.TypeRegistry.for(n0).registerError(TypeNotFoundException$, TypeNotFoundException);
|
|
775
|
+
var UnsupportedActionException$ = [
|
|
769
776
|
-3,
|
|
770
777
|
n0,
|
|
771
778
|
_UAE,
|
|
@@ -773,8 +780,8 @@ var UnsupportedActionException = [
|
|
|
773
780
|
[_M],
|
|
774
781
|
[0],
|
|
775
782
|
];
|
|
776
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedActionException
|
|
777
|
-
var UpdateResourceInput = [
|
|
783
|
+
schema.TypeRegistry.for(n0).registerError(UnsupportedActionException$, UnsupportedActionException);
|
|
784
|
+
var UpdateResourceInput$ = [
|
|
778
785
|
3,
|
|
779
786
|
n0,
|
|
780
787
|
_URI,
|
|
@@ -782,61 +789,68 @@ var UpdateResourceInput = [
|
|
|
782
789
|
[_TN, _TVI, _RA, _CT, _I, _PD],
|
|
783
790
|
[0, 0, 0, [0, 4], 0, [() => PatchDocument, 0]],
|
|
784
791
|
];
|
|
785
|
-
var UpdateResourceOutput = [3, n0, _URO, 0, [_PE], [[() => ProgressEvent
|
|
786
|
-
var CloudControlServiceException = [-3, _sm, "CloudControlServiceException", 0, [], []];
|
|
787
|
-
schema.TypeRegistry.for(_sm).registerError(CloudControlServiceException
|
|
788
|
-
var HooksProgressEvent = [1, n0, _HPE, 0, () => HookProgressEvent];
|
|
789
|
-
var ResourceDescriptions = [1, n0, _RDe, 0, [() => ResourceDescription
|
|
790
|
-
var ResourceRequestStatusSummaries = [1, n0, _RRSS, 0, [() => ProgressEvent
|
|
791
|
-
var CancelResourceRequest = [
|
|
792
|
+
var UpdateResourceOutput$ = [3, n0, _URO, 0, [_PE], [[() => ProgressEvent$, 0]]];
|
|
793
|
+
var CloudControlServiceException$ = [-3, _sm, "CloudControlServiceException", 0, [], []];
|
|
794
|
+
schema.TypeRegistry.for(_sm).registerError(CloudControlServiceException$, CloudControlServiceException);
|
|
795
|
+
var HooksProgressEvent = [1, n0, _HPE, 0, () => HookProgressEvent$];
|
|
796
|
+
var ResourceDescriptions = [1, n0, _RDe, 0, [() => ResourceDescription$, 0]];
|
|
797
|
+
var ResourceRequestStatusSummaries = [1, n0, _RRSS, 0, [() => ProgressEvent$, 0]];
|
|
798
|
+
var CancelResourceRequest$ = [
|
|
792
799
|
9,
|
|
793
800
|
n0,
|
|
794
801
|
_CRR,
|
|
795
802
|
2,
|
|
796
|
-
() => CancelResourceRequestInput
|
|
797
|
-
() => CancelResourceRequestOutput
|
|
803
|
+
() => CancelResourceRequestInput$,
|
|
804
|
+
() => CancelResourceRequestOutput$,
|
|
798
805
|
];
|
|
799
|
-
var CreateResource = [
|
|
806
|
+
var CreateResource$ = [
|
|
800
807
|
9,
|
|
801
808
|
n0,
|
|
802
809
|
_CR,
|
|
803
810
|
0,
|
|
804
|
-
() => CreateResourceInput
|
|
805
|
-
() => CreateResourceOutput
|
|
811
|
+
() => CreateResourceInput$,
|
|
812
|
+
() => CreateResourceOutput$,
|
|
806
813
|
];
|
|
807
|
-
var DeleteResource = [
|
|
814
|
+
var DeleteResource$ = [
|
|
808
815
|
9,
|
|
809
816
|
n0,
|
|
810
817
|
_DR,
|
|
811
818
|
0,
|
|
812
|
-
() => DeleteResourceInput
|
|
813
|
-
() => DeleteResourceOutput
|
|
819
|
+
() => DeleteResourceInput$,
|
|
820
|
+
() => DeleteResourceOutput$,
|
|
814
821
|
];
|
|
815
|
-
var GetResource = [9, n0, _GR, 0, () => GetResourceInput
|
|
816
|
-
var GetResourceRequestStatus = [
|
|
822
|
+
var GetResource$ = [9, n0, _GR, 0, () => GetResourceInput$, () => GetResourceOutput$];
|
|
823
|
+
var GetResourceRequestStatus$ = [
|
|
817
824
|
9,
|
|
818
825
|
n0,
|
|
819
826
|
_GRRS,
|
|
820
827
|
0,
|
|
821
|
-
() => GetResourceRequestStatusInput
|
|
822
|
-
() => GetResourceRequestStatusOutput
|
|
828
|
+
() => GetResourceRequestStatusInput$,
|
|
829
|
+
() => GetResourceRequestStatusOutput$,
|
|
823
830
|
];
|
|
824
|
-
var ListResourceRequests = [
|
|
831
|
+
var ListResourceRequests$ = [
|
|
825
832
|
9,
|
|
826
833
|
n0,
|
|
827
834
|
_LRR,
|
|
828
835
|
0,
|
|
829
|
-
() => ListResourceRequestsInput
|
|
830
|
-
() => ListResourceRequestsOutput
|
|
836
|
+
() => ListResourceRequestsInput$,
|
|
837
|
+
() => ListResourceRequestsOutput$,
|
|
838
|
+
];
|
|
839
|
+
var ListResources$ = [
|
|
840
|
+
9,
|
|
841
|
+
n0,
|
|
842
|
+
_LR,
|
|
843
|
+
0,
|
|
844
|
+
() => ListResourcesInput$,
|
|
845
|
+
() => ListResourcesOutput$,
|
|
831
846
|
];
|
|
832
|
-
var
|
|
833
|
-
var UpdateResource = [
|
|
847
|
+
var UpdateResource$ = [
|
|
834
848
|
9,
|
|
835
849
|
n0,
|
|
836
850
|
_UR,
|
|
837
851
|
0,
|
|
838
|
-
() => UpdateResourceInput
|
|
839
|
-
() => UpdateResourceOutput
|
|
852
|
+
() => UpdateResourceInput$,
|
|
853
|
+
() => UpdateResourceOutput$,
|
|
840
854
|
];
|
|
841
855
|
|
|
842
856
|
class CancelResourceRequestCommand extends smithyClient.Command
|
|
@@ -847,7 +861,7 @@ class CancelResourceRequestCommand extends smithyClient.Command
|
|
|
847
861
|
})
|
|
848
862
|
.s("CloudApiService", "CancelResourceRequest", {})
|
|
849
863
|
.n("CloudControlClient", "CancelResourceRequestCommand")
|
|
850
|
-
.sc(CancelResourceRequest)
|
|
864
|
+
.sc(CancelResourceRequest$)
|
|
851
865
|
.build() {
|
|
852
866
|
}
|
|
853
867
|
|
|
@@ -859,7 +873,7 @@ class CreateResourceCommand extends smithyClient.Command
|
|
|
859
873
|
})
|
|
860
874
|
.s("CloudApiService", "CreateResource", {})
|
|
861
875
|
.n("CloudControlClient", "CreateResourceCommand")
|
|
862
|
-
.sc(CreateResource)
|
|
876
|
+
.sc(CreateResource$)
|
|
863
877
|
.build() {
|
|
864
878
|
}
|
|
865
879
|
|
|
@@ -871,7 +885,7 @@ class DeleteResourceCommand extends smithyClient.Command
|
|
|
871
885
|
})
|
|
872
886
|
.s("CloudApiService", "DeleteResource", {})
|
|
873
887
|
.n("CloudControlClient", "DeleteResourceCommand")
|
|
874
|
-
.sc(DeleteResource)
|
|
888
|
+
.sc(DeleteResource$)
|
|
875
889
|
.build() {
|
|
876
890
|
}
|
|
877
891
|
|
|
@@ -883,7 +897,7 @@ class GetResourceCommand extends smithyClient.Command
|
|
|
883
897
|
})
|
|
884
898
|
.s("CloudApiService", "GetResource", {})
|
|
885
899
|
.n("CloudControlClient", "GetResourceCommand")
|
|
886
|
-
.sc(GetResource)
|
|
900
|
+
.sc(GetResource$)
|
|
887
901
|
.build() {
|
|
888
902
|
}
|
|
889
903
|
|
|
@@ -895,7 +909,7 @@ class GetResourceRequestStatusCommand extends smithyClient.Command
|
|
|
895
909
|
})
|
|
896
910
|
.s("CloudApiService", "GetResourceRequestStatus", {})
|
|
897
911
|
.n("CloudControlClient", "GetResourceRequestStatusCommand")
|
|
898
|
-
.sc(GetResourceRequestStatus)
|
|
912
|
+
.sc(GetResourceRequestStatus$)
|
|
899
913
|
.build() {
|
|
900
914
|
}
|
|
901
915
|
|
|
@@ -907,7 +921,7 @@ class ListResourceRequestsCommand extends smithyClient.Command
|
|
|
907
921
|
})
|
|
908
922
|
.s("CloudApiService", "ListResourceRequests", {})
|
|
909
923
|
.n("CloudControlClient", "ListResourceRequestsCommand")
|
|
910
|
-
.sc(ListResourceRequests)
|
|
924
|
+
.sc(ListResourceRequests$)
|
|
911
925
|
.build() {
|
|
912
926
|
}
|
|
913
927
|
|
|
@@ -919,7 +933,7 @@ class ListResourcesCommand extends smithyClient.Command
|
|
|
919
933
|
})
|
|
920
934
|
.s("CloudApiService", "ListResources", {})
|
|
921
935
|
.n("CloudControlClient", "ListResourcesCommand")
|
|
922
|
-
.sc(ListResources)
|
|
936
|
+
.sc(ListResources$)
|
|
923
937
|
.build() {
|
|
924
938
|
}
|
|
925
939
|
|
|
@@ -931,7 +945,7 @@ class UpdateResourceCommand extends smithyClient.Command
|
|
|
931
945
|
})
|
|
932
946
|
.s("CloudApiService", "UpdateResource", {})
|
|
933
947
|
.n("CloudControlClient", "UpdateResourceCommand")
|
|
934
|
-
.sc(UpdateResource)
|
|
948
|
+
.sc(UpdateResource$)
|
|
935
949
|
.build() {
|
|
936
950
|
}
|
|
937
951
|
|
|
@@ -1041,41 +1055,91 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1041
1055
|
enumerable: true,
|
|
1042
1056
|
get: function () { return smithyClient.Client; }
|
|
1043
1057
|
});
|
|
1044
|
-
exports.AlreadyExistsException = AlreadyExistsException
|
|
1058
|
+
exports.AlreadyExistsException = AlreadyExistsException;
|
|
1059
|
+
exports.AlreadyExistsException$ = AlreadyExistsException$;
|
|
1060
|
+
exports.CancelResourceRequest$ = CancelResourceRequest$;
|
|
1045
1061
|
exports.CancelResourceRequestCommand = CancelResourceRequestCommand;
|
|
1046
|
-
exports.
|
|
1062
|
+
exports.CancelResourceRequestInput$ = CancelResourceRequestInput$;
|
|
1063
|
+
exports.CancelResourceRequestOutput$ = CancelResourceRequestOutput$;
|
|
1064
|
+
exports.ClientTokenConflictException = ClientTokenConflictException;
|
|
1065
|
+
exports.ClientTokenConflictException$ = ClientTokenConflictException$;
|
|
1047
1066
|
exports.CloudControl = CloudControl;
|
|
1048
1067
|
exports.CloudControlClient = CloudControlClient;
|
|
1049
|
-
exports.CloudControlServiceException = CloudControlServiceException
|
|
1050
|
-
exports.
|
|
1051
|
-
exports.
|
|
1068
|
+
exports.CloudControlServiceException = CloudControlServiceException;
|
|
1069
|
+
exports.CloudControlServiceException$ = CloudControlServiceException$;
|
|
1070
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
1071
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
1072
|
+
exports.ConcurrentOperationException = ConcurrentOperationException;
|
|
1073
|
+
exports.ConcurrentOperationException$ = ConcurrentOperationException$;
|
|
1074
|
+
exports.CreateResource$ = CreateResource$;
|
|
1052
1075
|
exports.CreateResourceCommand = CreateResourceCommand;
|
|
1076
|
+
exports.CreateResourceInput$ = CreateResourceInput$;
|
|
1077
|
+
exports.CreateResourceOutput$ = CreateResourceOutput$;
|
|
1078
|
+
exports.DeleteResource$ = DeleteResource$;
|
|
1053
1079
|
exports.DeleteResourceCommand = DeleteResourceCommand;
|
|
1054
|
-
exports.
|
|
1080
|
+
exports.DeleteResourceInput$ = DeleteResourceInput$;
|
|
1081
|
+
exports.DeleteResourceOutput$ = DeleteResourceOutput$;
|
|
1082
|
+
exports.GeneralServiceException = GeneralServiceException;
|
|
1083
|
+
exports.GeneralServiceException$ = GeneralServiceException$;
|
|
1084
|
+
exports.GetResource$ = GetResource$;
|
|
1055
1085
|
exports.GetResourceCommand = GetResourceCommand;
|
|
1086
|
+
exports.GetResourceInput$ = GetResourceInput$;
|
|
1087
|
+
exports.GetResourceOutput$ = GetResourceOutput$;
|
|
1088
|
+
exports.GetResourceRequestStatus$ = GetResourceRequestStatus$;
|
|
1056
1089
|
exports.GetResourceRequestStatusCommand = GetResourceRequestStatusCommand;
|
|
1090
|
+
exports.GetResourceRequestStatusInput$ = GetResourceRequestStatusInput$;
|
|
1091
|
+
exports.GetResourceRequestStatusOutput$ = GetResourceRequestStatusOutput$;
|
|
1057
1092
|
exports.HandlerErrorCode = HandlerErrorCode;
|
|
1058
|
-
exports.HandlerFailureException = HandlerFailureException
|
|
1059
|
-
exports.
|
|
1060
|
-
exports.
|
|
1061
|
-
exports.
|
|
1093
|
+
exports.HandlerFailureException = HandlerFailureException;
|
|
1094
|
+
exports.HandlerFailureException$ = HandlerFailureException$;
|
|
1095
|
+
exports.HandlerInternalFailureException = HandlerInternalFailureException;
|
|
1096
|
+
exports.HandlerInternalFailureException$ = HandlerInternalFailureException$;
|
|
1097
|
+
exports.HookProgressEvent$ = HookProgressEvent$;
|
|
1098
|
+
exports.InvalidCredentialsException = InvalidCredentialsException;
|
|
1099
|
+
exports.InvalidCredentialsException$ = InvalidCredentialsException$;
|
|
1100
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
1101
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1102
|
+
exports.ListResourceRequests$ = ListResourceRequests$;
|
|
1062
1103
|
exports.ListResourceRequestsCommand = ListResourceRequestsCommand;
|
|
1104
|
+
exports.ListResourceRequestsInput$ = ListResourceRequestsInput$;
|
|
1105
|
+
exports.ListResourceRequestsOutput$ = ListResourceRequestsOutput$;
|
|
1106
|
+
exports.ListResources$ = ListResources$;
|
|
1063
1107
|
exports.ListResourcesCommand = ListResourcesCommand;
|
|
1064
|
-
exports.
|
|
1065
|
-
exports.
|
|
1066
|
-
exports.
|
|
1108
|
+
exports.ListResourcesInput$ = ListResourcesInput$;
|
|
1109
|
+
exports.ListResourcesOutput$ = ListResourcesOutput$;
|
|
1110
|
+
exports.NetworkFailureException = NetworkFailureException;
|
|
1111
|
+
exports.NetworkFailureException$ = NetworkFailureException$;
|
|
1112
|
+
exports.NotStabilizedException = NotStabilizedException;
|
|
1113
|
+
exports.NotStabilizedException$ = NotStabilizedException$;
|
|
1114
|
+
exports.NotUpdatableException = NotUpdatableException;
|
|
1115
|
+
exports.NotUpdatableException$ = NotUpdatableException$;
|
|
1067
1116
|
exports.Operation = Operation;
|
|
1068
1117
|
exports.OperationStatus = OperationStatus;
|
|
1069
|
-
exports.PrivateTypeException = PrivateTypeException
|
|
1070
|
-
exports.
|
|
1071
|
-
exports.
|
|
1072
|
-
exports.
|
|
1073
|
-
exports.
|
|
1074
|
-
exports.
|
|
1075
|
-
exports.
|
|
1076
|
-
exports.
|
|
1077
|
-
exports.
|
|
1118
|
+
exports.PrivateTypeException = PrivateTypeException;
|
|
1119
|
+
exports.PrivateTypeException$ = PrivateTypeException$;
|
|
1120
|
+
exports.ProgressEvent$ = ProgressEvent$;
|
|
1121
|
+
exports.RequestTokenNotFoundException = RequestTokenNotFoundException;
|
|
1122
|
+
exports.RequestTokenNotFoundException$ = RequestTokenNotFoundException$;
|
|
1123
|
+
exports.ResourceConflictException = ResourceConflictException;
|
|
1124
|
+
exports.ResourceConflictException$ = ResourceConflictException$;
|
|
1125
|
+
exports.ResourceDescription$ = ResourceDescription$;
|
|
1126
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1127
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1128
|
+
exports.ResourceRequestStatusFilter$ = ResourceRequestStatusFilter$;
|
|
1129
|
+
exports.ServiceInternalErrorException = ServiceInternalErrorException;
|
|
1130
|
+
exports.ServiceInternalErrorException$ = ServiceInternalErrorException$;
|
|
1131
|
+
exports.ServiceLimitExceededException = ServiceLimitExceededException;
|
|
1132
|
+
exports.ServiceLimitExceededException$ = ServiceLimitExceededException$;
|
|
1133
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1134
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1135
|
+
exports.TypeNotFoundException = TypeNotFoundException;
|
|
1136
|
+
exports.TypeNotFoundException$ = TypeNotFoundException$;
|
|
1137
|
+
exports.UnsupportedActionException = UnsupportedActionException;
|
|
1138
|
+
exports.UnsupportedActionException$ = UnsupportedActionException$;
|
|
1139
|
+
exports.UpdateResource$ = UpdateResource$;
|
|
1078
1140
|
exports.UpdateResourceCommand = UpdateResourceCommand;
|
|
1141
|
+
exports.UpdateResourceInput$ = UpdateResourceInput$;
|
|
1142
|
+
exports.UpdateResourceOutput$ = UpdateResourceOutput$;
|
|
1079
1143
|
exports.paginateListResourceRequests = paginateListResourceRequests;
|
|
1080
1144
|
exports.paginateListResources = paginateListResources;
|
|
1081
1145
|
exports.waitForResourceRequestSuccess = waitForResourceRequestSuccess;
|