@aws-sdk/client-cloudcontrol 3.927.0 → 3.929.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.
Files changed (32) hide show
  1. package/dist-cjs/index.js +593 -747
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/CloudControlClient.js +2 -0
  4. package/dist-es/commands/CancelResourceRequestCommand.js +3 -10
  5. package/dist-es/commands/CreateResourceCommand.js +3 -10
  6. package/dist-es/commands/DeleteResourceCommand.js +3 -10
  7. package/dist-es/commands/GetResourceCommand.js +3 -10
  8. package/dist-es/commands/GetResourceRequestStatusCommand.js +3 -10
  9. package/dist-es/commands/ListResourceRequestsCommand.js +3 -10
  10. package/dist-es/commands/ListResourcesCommand.js +3 -10
  11. package/dist-es/commands/UpdateResourceCommand.js +3 -10
  12. package/dist-es/models/models_0.js +0 -59
  13. package/dist-es/runtimeConfig.shared.js +7 -0
  14. package/dist-es/schemas/schemas_0.js +514 -0
  15. package/dist-types/CloudControlClient.d.ts +10 -1
  16. package/dist-types/models/models_0.d.ts +0 -52
  17. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  18. package/dist-types/runtimeConfig.d.ts +1 -0
  19. package/dist-types/runtimeConfig.native.d.ts +1 -0
  20. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  21. package/dist-types/schemas/schemas_0.d.ts +58 -0
  22. package/dist-types/ts3.4/CloudControlClient.d.ts +4 -0
  23. package/dist-types/ts3.4/models/models_0.d.ts +0 -39
  24. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  25. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  26. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  27. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  28. package/dist-types/ts3.4/schemas/schemas_0.d.ts +64 -0
  29. package/package.json +5 -6
  30. package/dist-es/protocols/Aws_json1_0.js +0 -561
  31. package/dist-types/protocols/Aws_json1_0.d.ts +0 -74
  32. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -101
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
- var uuid = require('@smithy/uuid');
20
18
  var utilWaiter = require('@smithy/util-waiter');
21
19
 
22
20
  const resolveClientEndpointParameters = (options) => {
@@ -93,6 +91,7 @@ class CloudControlClient extends smithyClient.Client {
93
91
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
94
92
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
95
93
  this.config = _config_8;
94
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
96
95
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
97
96
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
98
97
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -112,14 +111,14 @@ class CloudControlClient extends smithyClient.Client {
112
111
  }
113
112
  }
114
113
 
115
- class CloudControlServiceException extends smithyClient.ServiceException {
114
+ let CloudControlServiceException$1 = class CloudControlServiceException extends smithyClient.ServiceException {
116
115
  constructor(options) {
117
116
  super(options);
118
117
  Object.setPrototypeOf(this, CloudControlServiceException.prototype);
119
118
  }
120
- }
119
+ };
121
120
 
122
- class AlreadyExistsException extends CloudControlServiceException {
121
+ let AlreadyExistsException$1 = class AlreadyExistsException extends CloudControlServiceException$1 {
123
122
  name = "AlreadyExistsException";
124
123
  $fault = "client";
125
124
  Message;
@@ -132,7 +131,7 @@ class AlreadyExistsException extends CloudControlServiceException {
132
131
  Object.setPrototypeOf(this, AlreadyExistsException.prototype);
133
132
  this.Message = opts.Message;
134
133
  }
135
- }
134
+ };
136
135
  const HandlerErrorCode = {
137
136
  ACCESS_DENIED: "AccessDenied",
138
137
  ALREADY_EXISTS: "AlreadyExists",
@@ -164,7 +163,7 @@ const OperationStatus = {
164
163
  PENDING: "PENDING",
165
164
  SUCCESS: "SUCCESS",
166
165
  };
167
- class ConcurrentModificationException extends CloudControlServiceException {
166
+ let ConcurrentModificationException$1 = class ConcurrentModificationException extends CloudControlServiceException$1 {
168
167
  name = "ConcurrentModificationException";
169
168
  $fault = "server";
170
169
  Message;
@@ -177,8 +176,8 @@ class ConcurrentModificationException extends CloudControlServiceException {
177
176
  Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
178
177
  this.Message = opts.Message;
179
178
  }
180
- }
181
- class RequestTokenNotFoundException extends CloudControlServiceException {
179
+ };
180
+ let RequestTokenNotFoundException$1 = class RequestTokenNotFoundException extends CloudControlServiceException$1 {
182
181
  name = "RequestTokenNotFoundException";
183
182
  $fault = "client";
184
183
  Message;
@@ -191,8 +190,8 @@ class RequestTokenNotFoundException extends CloudControlServiceException {
191
190
  Object.setPrototypeOf(this, RequestTokenNotFoundException.prototype);
192
191
  this.Message = opts.Message;
193
192
  }
194
- }
195
- class ClientTokenConflictException extends CloudControlServiceException {
193
+ };
194
+ let ClientTokenConflictException$1 = class ClientTokenConflictException extends CloudControlServiceException$1 {
196
195
  name = "ClientTokenConflictException";
197
196
  $fault = "client";
198
197
  Message;
@@ -205,8 +204,8 @@ class ClientTokenConflictException extends CloudControlServiceException {
205
204
  Object.setPrototypeOf(this, ClientTokenConflictException.prototype);
206
205
  this.Message = opts.Message;
207
206
  }
208
- }
209
- class ConcurrentOperationException extends CloudControlServiceException {
207
+ };
208
+ let ConcurrentOperationException$1 = class ConcurrentOperationException extends CloudControlServiceException$1 {
210
209
  name = "ConcurrentOperationException";
211
210
  $fault = "client";
212
211
  Message;
@@ -219,8 +218,8 @@ class ConcurrentOperationException extends CloudControlServiceException {
219
218
  Object.setPrototypeOf(this, ConcurrentOperationException.prototype);
220
219
  this.Message = opts.Message;
221
220
  }
222
- }
223
- class GeneralServiceException extends CloudControlServiceException {
221
+ };
222
+ let GeneralServiceException$1 = class GeneralServiceException extends CloudControlServiceException$1 {
224
223
  name = "GeneralServiceException";
225
224
  $fault = "client";
226
225
  Message;
@@ -233,8 +232,8 @@ class GeneralServiceException extends CloudControlServiceException {
233
232
  Object.setPrototypeOf(this, GeneralServiceException.prototype);
234
233
  this.Message = opts.Message;
235
234
  }
236
- }
237
- class HandlerFailureException extends CloudControlServiceException {
235
+ };
236
+ let HandlerFailureException$1 = class HandlerFailureException extends CloudControlServiceException$1 {
238
237
  name = "HandlerFailureException";
239
238
  $fault = "server";
240
239
  Message;
@@ -247,8 +246,8 @@ class HandlerFailureException extends CloudControlServiceException {
247
246
  Object.setPrototypeOf(this, HandlerFailureException.prototype);
248
247
  this.Message = opts.Message;
249
248
  }
250
- }
251
- class HandlerInternalFailureException extends CloudControlServiceException {
249
+ };
250
+ let HandlerInternalFailureException$1 = class HandlerInternalFailureException extends CloudControlServiceException$1 {
252
251
  name = "HandlerInternalFailureException";
253
252
  $fault = "server";
254
253
  Message;
@@ -261,8 +260,8 @@ class HandlerInternalFailureException extends CloudControlServiceException {
261
260
  Object.setPrototypeOf(this, HandlerInternalFailureException.prototype);
262
261
  this.Message = opts.Message;
263
262
  }
264
- }
265
- class InvalidCredentialsException extends CloudControlServiceException {
263
+ };
264
+ let InvalidCredentialsException$1 = class InvalidCredentialsException extends CloudControlServiceException$1 {
266
265
  name = "InvalidCredentialsException";
267
266
  $fault = "client";
268
267
  Message;
@@ -275,8 +274,8 @@ class InvalidCredentialsException extends CloudControlServiceException {
275
274
  Object.setPrototypeOf(this, InvalidCredentialsException.prototype);
276
275
  this.Message = opts.Message;
277
276
  }
278
- }
279
- class InvalidRequestException extends CloudControlServiceException {
277
+ };
278
+ let InvalidRequestException$1 = class InvalidRequestException extends CloudControlServiceException$1 {
280
279
  name = "InvalidRequestException";
281
280
  $fault = "client";
282
281
  Message;
@@ -289,8 +288,8 @@ class InvalidRequestException extends CloudControlServiceException {
289
288
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
290
289
  this.Message = opts.Message;
291
290
  }
292
- }
293
- class NetworkFailureException extends CloudControlServiceException {
291
+ };
292
+ let NetworkFailureException$1 = class NetworkFailureException extends CloudControlServiceException$1 {
294
293
  name = "NetworkFailureException";
295
294
  $fault = "server";
296
295
  Message;
@@ -303,8 +302,8 @@ class NetworkFailureException extends CloudControlServiceException {
303
302
  Object.setPrototypeOf(this, NetworkFailureException.prototype);
304
303
  this.Message = opts.Message;
305
304
  }
306
- }
307
- class NotStabilizedException extends CloudControlServiceException {
305
+ };
306
+ let NotStabilizedException$1 = class NotStabilizedException extends CloudControlServiceException$1 {
308
307
  name = "NotStabilizedException";
309
308
  $fault = "client";
310
309
  Message;
@@ -317,8 +316,8 @@ class NotStabilizedException extends CloudControlServiceException {
317
316
  Object.setPrototypeOf(this, NotStabilizedException.prototype);
318
317
  this.Message = opts.Message;
319
318
  }
320
- }
321
- class NotUpdatableException extends CloudControlServiceException {
319
+ };
320
+ let NotUpdatableException$1 = class NotUpdatableException extends CloudControlServiceException$1 {
322
321
  name = "NotUpdatableException";
323
322
  $fault = "client";
324
323
  Message;
@@ -331,8 +330,8 @@ class NotUpdatableException extends CloudControlServiceException {
331
330
  Object.setPrototypeOf(this, NotUpdatableException.prototype);
332
331
  this.Message = opts.Message;
333
332
  }
334
- }
335
- class PrivateTypeException extends CloudControlServiceException {
333
+ };
334
+ let PrivateTypeException$1 = class PrivateTypeException extends CloudControlServiceException$1 {
336
335
  name = "PrivateTypeException";
337
336
  $fault = "client";
338
337
  Message;
@@ -345,8 +344,8 @@ class PrivateTypeException extends CloudControlServiceException {
345
344
  Object.setPrototypeOf(this, PrivateTypeException.prototype);
346
345
  this.Message = opts.Message;
347
346
  }
348
- }
349
- class ResourceConflictException extends CloudControlServiceException {
347
+ };
348
+ let ResourceConflictException$1 = class ResourceConflictException extends CloudControlServiceException$1 {
350
349
  name = "ResourceConflictException";
351
350
  $fault = "client";
352
351
  Message;
@@ -359,8 +358,8 @@ class ResourceConflictException extends CloudControlServiceException {
359
358
  Object.setPrototypeOf(this, ResourceConflictException.prototype);
360
359
  this.Message = opts.Message;
361
360
  }
362
- }
363
- class ResourceNotFoundException extends CloudControlServiceException {
361
+ };
362
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends CloudControlServiceException$1 {
364
363
  name = "ResourceNotFoundException";
365
364
  $fault = "client";
366
365
  Message;
@@ -373,8 +372,8 @@ class ResourceNotFoundException extends CloudControlServiceException {
373
372
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
374
373
  this.Message = opts.Message;
375
374
  }
376
- }
377
- class ServiceInternalErrorException extends CloudControlServiceException {
375
+ };
376
+ let ServiceInternalErrorException$1 = class ServiceInternalErrorException extends CloudControlServiceException$1 {
378
377
  name = "ServiceInternalErrorException";
379
378
  $fault = "server";
380
379
  Message;
@@ -387,8 +386,8 @@ class ServiceInternalErrorException extends CloudControlServiceException {
387
386
  Object.setPrototypeOf(this, ServiceInternalErrorException.prototype);
388
387
  this.Message = opts.Message;
389
388
  }
390
- }
391
- class ServiceLimitExceededException extends CloudControlServiceException {
389
+ };
390
+ let ServiceLimitExceededException$1 = class ServiceLimitExceededException extends CloudControlServiceException$1 {
392
391
  name = "ServiceLimitExceededException";
393
392
  $fault = "client";
394
393
  Message;
@@ -401,8 +400,8 @@ class ServiceLimitExceededException extends CloudControlServiceException {
401
400
  Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
402
401
  this.Message = opts.Message;
403
402
  }
404
- }
405
- class ThrottlingException extends CloudControlServiceException {
403
+ };
404
+ let ThrottlingException$1 = class ThrottlingException extends CloudControlServiceException$1 {
406
405
  name = "ThrottlingException";
407
406
  $fault = "client";
408
407
  Message;
@@ -415,8 +414,8 @@ class ThrottlingException extends CloudControlServiceException {
415
414
  Object.setPrototypeOf(this, ThrottlingException.prototype);
416
415
  this.Message = opts.Message;
417
416
  }
418
- }
419
- class TypeNotFoundException extends CloudControlServiceException {
417
+ };
418
+ let TypeNotFoundException$1 = class TypeNotFoundException extends CloudControlServiceException$1 {
420
419
  name = "TypeNotFoundException";
421
420
  $fault = "client";
422
421
  Message;
@@ -429,8 +428,8 @@ class TypeNotFoundException extends CloudControlServiceException {
429
428
  Object.setPrototypeOf(this, TypeNotFoundException.prototype);
430
429
  this.Message = opts.Message;
431
430
  }
432
- }
433
- class UnsupportedActionException extends CloudControlServiceException {
431
+ };
432
+ let UnsupportedActionException$1 = class UnsupportedActionException extends CloudControlServiceException$1 {
434
433
  name = "UnsupportedActionException";
435
434
  $fault = "client";
436
435
  Message;
@@ -443,632 +442,527 @@ class UnsupportedActionException extends CloudControlServiceException {
443
442
  Object.setPrototypeOf(this, UnsupportedActionException.prototype);
444
443
  this.Message = opts.Message;
445
444
  }
446
- }
447
- const ProgressEventFilterSensitiveLog = (obj) => ({
448
- ...obj,
449
- ...(obj.ResourceModel && { ResourceModel: smithyClient.SENSITIVE_STRING }),
450
- });
451
- const CancelResourceRequestOutputFilterSensitiveLog = (obj) => ({
452
- ...obj,
453
- ...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
454
- });
455
- const CreateResourceInputFilterSensitiveLog = (obj) => ({
456
- ...obj,
457
- ...(obj.DesiredState && { DesiredState: smithyClient.SENSITIVE_STRING }),
458
- });
459
- const CreateResourceOutputFilterSensitiveLog = (obj) => ({
460
- ...obj,
461
- ...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
462
- });
463
- const DeleteResourceOutputFilterSensitiveLog = (obj) => ({
464
- ...obj,
465
- ...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
466
- });
467
- const ResourceDescriptionFilterSensitiveLog = (obj) => ({
468
- ...obj,
469
- ...(obj.Properties && { Properties: smithyClient.SENSITIVE_STRING }),
470
- });
471
- const GetResourceOutputFilterSensitiveLog = (obj) => ({
472
- ...obj,
473
- ...(obj.ResourceDescription && {
474
- ResourceDescription: ResourceDescriptionFilterSensitiveLog(obj.ResourceDescription),
475
- }),
476
- });
477
- const GetResourceRequestStatusOutputFilterSensitiveLog = (obj) => ({
478
- ...obj,
479
- ...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
480
- });
481
- const ListResourceRequestsOutputFilterSensitiveLog = (obj) => ({
482
- ...obj,
483
- ...(obj.ResourceRequestStatusSummaries && {
484
- ResourceRequestStatusSummaries: obj.ResourceRequestStatusSummaries.map((item) => ProgressEventFilterSensitiveLog(item)),
485
- }),
486
- });
487
- const ListResourcesInputFilterSensitiveLog = (obj) => ({
488
- ...obj,
489
- ...(obj.ResourceModel && { ResourceModel: smithyClient.SENSITIVE_STRING }),
490
- });
491
- const ListResourcesOutputFilterSensitiveLog = (obj) => ({
492
- ...obj,
493
- ...(obj.ResourceDescriptions && {
494
- ResourceDescriptions: obj.ResourceDescriptions.map((item) => ResourceDescriptionFilterSensitiveLog(item)),
495
- }),
496
- });
497
- const UpdateResourceInputFilterSensitiveLog = (obj) => ({
498
- ...obj,
499
- ...(obj.PatchDocument && { PatchDocument: smithyClient.SENSITIVE_STRING }),
500
- });
501
- const UpdateResourceOutputFilterSensitiveLog = (obj) => ({
502
- ...obj,
503
- ...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
504
- });
505
-
506
- const se_CancelResourceRequestCommand = async (input, context) => {
507
- const headers = sharedHeaders("CancelResourceRequest");
508
- let body;
509
- body = JSON.stringify(smithyClient._json(input));
510
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
511
- };
512
- const se_CreateResourceCommand = async (input, context) => {
513
- const headers = sharedHeaders("CreateResource");
514
- let body;
515
- body = JSON.stringify(se_CreateResourceInput(input));
516
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
517
- };
518
- const se_DeleteResourceCommand = async (input, context) => {
519
- const headers = sharedHeaders("DeleteResource");
520
- let body;
521
- body = JSON.stringify(se_DeleteResourceInput(input));
522
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
523
- };
524
- const se_GetResourceCommand = async (input, context) => {
525
- const headers = sharedHeaders("GetResource");
526
- let body;
527
- body = JSON.stringify(smithyClient._json(input));
528
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
529
- };
530
- const se_GetResourceRequestStatusCommand = async (input, context) => {
531
- const headers = sharedHeaders("GetResourceRequestStatus");
532
- let body;
533
- body = JSON.stringify(smithyClient._json(input));
534
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
535
- };
536
- const se_ListResourceRequestsCommand = async (input, context) => {
537
- const headers = sharedHeaders("ListResourceRequests");
538
- let body;
539
- body = JSON.stringify(smithyClient._json(input));
540
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
541
- };
542
- const se_ListResourcesCommand = async (input, context) => {
543
- const headers = sharedHeaders("ListResources");
544
- let body;
545
- body = JSON.stringify(smithyClient._json(input));
546
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
547
445
  };
548
- const se_UpdateResourceCommand = async (input, context) => {
549
- const headers = sharedHeaders("UpdateResource");
550
- let body;
551
- body = JSON.stringify(se_UpdateResourceInput(input));
552
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
553
- };
554
- const de_CancelResourceRequestCommand = async (output, context) => {
555
- if (output.statusCode >= 300) {
556
- return de_CommandError(output, context);
557
- }
558
- const data = await core$1.parseJsonBody(output.body, context);
559
- let contents = {};
560
- contents = de_CancelResourceRequestOutput(data);
561
- const response = {
562
- $metadata: deserializeMetadata(output),
563
- ...contents,
564
- };
565
- return response;
566
- };
567
- const de_CreateResourceCommand = async (output, context) => {
568
- if (output.statusCode >= 300) {
569
- return de_CommandError(output, context);
570
- }
571
- const data = await core$1.parseJsonBody(output.body, context);
572
- let contents = {};
573
- contents = de_CreateResourceOutput(data);
574
- const response = {
575
- $metadata: deserializeMetadata(output),
576
- ...contents,
577
- };
578
- return response;
579
- };
580
- const de_DeleteResourceCommand = async (output, context) => {
581
- if (output.statusCode >= 300) {
582
- return de_CommandError(output, context);
583
- }
584
- const data = await core$1.parseJsonBody(output.body, context);
585
- let contents = {};
586
- contents = de_DeleteResourceOutput(data);
587
- const response = {
588
- $metadata: deserializeMetadata(output),
589
- ...contents,
590
- };
591
- return response;
592
- };
593
- const de_GetResourceCommand = async (output, context) => {
594
- if (output.statusCode >= 300) {
595
- return de_CommandError(output, context);
596
- }
597
- const data = await core$1.parseJsonBody(output.body, context);
598
- let contents = {};
599
- contents = smithyClient._json(data);
600
- const response = {
601
- $metadata: deserializeMetadata(output),
602
- ...contents,
603
- };
604
- return response;
605
- };
606
- const de_GetResourceRequestStatusCommand = async (output, context) => {
607
- if (output.statusCode >= 300) {
608
- return de_CommandError(output, context);
609
- }
610
- const data = await core$1.parseJsonBody(output.body, context);
611
- let contents = {};
612
- contents = de_GetResourceRequestStatusOutput(data);
613
- const response = {
614
- $metadata: deserializeMetadata(output),
615
- ...contents,
616
- };
617
- return response;
618
- };
619
- const de_ListResourceRequestsCommand = async (output, context) => {
620
- if (output.statusCode >= 300) {
621
- return de_CommandError(output, context);
622
- }
623
- const data = await core$1.parseJsonBody(output.body, context);
624
- let contents = {};
625
- contents = de_ListResourceRequestsOutput(data);
626
- const response = {
627
- $metadata: deserializeMetadata(output),
628
- ...contents,
629
- };
630
- return response;
631
- };
632
- const de_ListResourcesCommand = async (output, context) => {
633
- if (output.statusCode >= 300) {
634
- return de_CommandError(output, context);
635
- }
636
- const data = await core$1.parseJsonBody(output.body, context);
637
- let contents = {};
638
- contents = smithyClient._json(data);
639
- const response = {
640
- $metadata: deserializeMetadata(output),
641
- ...contents,
642
- };
643
- return response;
644
- };
645
- const de_UpdateResourceCommand = async (output, context) => {
646
- if (output.statusCode >= 300) {
647
- return de_CommandError(output, context);
648
- }
649
- const data = await core$1.parseJsonBody(output.body, context);
650
- let contents = {};
651
- contents = de_UpdateResourceOutput(data);
652
- const response = {
653
- $metadata: deserializeMetadata(output),
654
- ...contents,
655
- };
656
- return response;
657
- };
658
- const de_CommandError = async (output, context) => {
659
- const parsedOutput = {
660
- ...output,
661
- body: await core$1.parseJsonErrorBody(output.body, context),
662
- };
663
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
664
- switch (errorCode) {
665
- case "ConcurrentModificationException":
666
- case "com.amazonaws.cloudcontrol#ConcurrentModificationException":
667
- throw await de_ConcurrentModificationExceptionRes(parsedOutput);
668
- case "RequestTokenNotFoundException":
669
- case "com.amazonaws.cloudcontrol#RequestTokenNotFoundException":
670
- throw await de_RequestTokenNotFoundExceptionRes(parsedOutput);
671
- case "AlreadyExistsException":
672
- case "com.amazonaws.cloudcontrol#AlreadyExistsException":
673
- throw await de_AlreadyExistsExceptionRes(parsedOutput);
674
- case "ClientTokenConflictException":
675
- case "com.amazonaws.cloudcontrol#ClientTokenConflictException":
676
- throw await de_ClientTokenConflictExceptionRes(parsedOutput);
677
- case "ConcurrentOperationException":
678
- case "com.amazonaws.cloudcontrol#ConcurrentOperationException":
679
- throw await de_ConcurrentOperationExceptionRes(parsedOutput);
680
- case "GeneralServiceException":
681
- case "com.amazonaws.cloudcontrol#GeneralServiceException":
682
- throw await de_GeneralServiceExceptionRes(parsedOutput);
683
- case "HandlerFailureException":
684
- case "com.amazonaws.cloudcontrol#HandlerFailureException":
685
- throw await de_HandlerFailureExceptionRes(parsedOutput);
686
- case "HandlerInternalFailureException":
687
- case "com.amazonaws.cloudcontrol#HandlerInternalFailureException":
688
- throw await de_HandlerInternalFailureExceptionRes(parsedOutput);
689
- case "InvalidCredentialsException":
690
- case "com.amazonaws.cloudcontrol#InvalidCredentialsException":
691
- throw await de_InvalidCredentialsExceptionRes(parsedOutput);
692
- case "InvalidRequestException":
693
- case "com.amazonaws.cloudcontrol#InvalidRequestException":
694
- throw await de_InvalidRequestExceptionRes(parsedOutput);
695
- case "NetworkFailureException":
696
- case "com.amazonaws.cloudcontrol#NetworkFailureException":
697
- throw await de_NetworkFailureExceptionRes(parsedOutput);
698
- case "NotStabilizedException":
699
- case "com.amazonaws.cloudcontrol#NotStabilizedException":
700
- throw await de_NotStabilizedExceptionRes(parsedOutput);
701
- case "NotUpdatableException":
702
- case "com.amazonaws.cloudcontrol#NotUpdatableException":
703
- throw await de_NotUpdatableExceptionRes(parsedOutput);
704
- case "PrivateTypeException":
705
- case "com.amazonaws.cloudcontrol#PrivateTypeException":
706
- throw await de_PrivateTypeExceptionRes(parsedOutput);
707
- case "ResourceConflictException":
708
- case "com.amazonaws.cloudcontrol#ResourceConflictException":
709
- throw await de_ResourceConflictExceptionRes(parsedOutput);
710
- case "ResourceNotFoundException":
711
- case "com.amazonaws.cloudcontrol#ResourceNotFoundException":
712
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
713
- case "ServiceInternalErrorException":
714
- case "com.amazonaws.cloudcontrol#ServiceInternalErrorException":
715
- throw await de_ServiceInternalErrorExceptionRes(parsedOutput);
716
- case "ServiceLimitExceededException":
717
- case "com.amazonaws.cloudcontrol#ServiceLimitExceededException":
718
- throw await de_ServiceLimitExceededExceptionRes(parsedOutput);
719
- case "ThrottlingException":
720
- case "com.amazonaws.cloudcontrol#ThrottlingException":
721
- throw await de_ThrottlingExceptionRes(parsedOutput);
722
- case "TypeNotFoundException":
723
- case "com.amazonaws.cloudcontrol#TypeNotFoundException":
724
- throw await de_TypeNotFoundExceptionRes(parsedOutput);
725
- case "UnsupportedActionException":
726
- case "com.amazonaws.cloudcontrol#UnsupportedActionException":
727
- throw await de_UnsupportedActionExceptionRes(parsedOutput);
728
- default:
729
- const parsedBody = parsedOutput.body;
730
- return throwDefaultError({
731
- output,
732
- parsedBody,
733
- errorCode,
734
- });
735
- }
736
- };
737
- const de_AlreadyExistsExceptionRes = async (parsedOutput, context) => {
738
- const body = parsedOutput.body;
739
- const deserialized = smithyClient._json(body);
740
- const exception = new AlreadyExistsException({
741
- $metadata: deserializeMetadata(parsedOutput),
742
- ...deserialized,
743
- });
744
- return smithyClient.decorateServiceException(exception, body);
745
- };
746
- const de_ClientTokenConflictExceptionRes = async (parsedOutput, context) => {
747
- const body = parsedOutput.body;
748
- const deserialized = smithyClient._json(body);
749
- const exception = new ClientTokenConflictException({
750
- $metadata: deserializeMetadata(parsedOutput),
751
- ...deserialized,
752
- });
753
- return smithyClient.decorateServiceException(exception, body);
754
- };
755
- const de_ConcurrentModificationExceptionRes = async (parsedOutput, context) => {
756
- const body = parsedOutput.body;
757
- const deserialized = smithyClient._json(body);
758
- const exception = new ConcurrentModificationException({
759
- $metadata: deserializeMetadata(parsedOutput),
760
- ...deserialized,
761
- });
762
- return smithyClient.decorateServiceException(exception, body);
763
- };
764
- const de_ConcurrentOperationExceptionRes = async (parsedOutput, context) => {
765
- const body = parsedOutput.body;
766
- const deserialized = smithyClient._json(body);
767
- const exception = new ConcurrentOperationException({
768
- $metadata: deserializeMetadata(parsedOutput),
769
- ...deserialized,
770
- });
771
- return smithyClient.decorateServiceException(exception, body);
772
- };
773
- const de_GeneralServiceExceptionRes = async (parsedOutput, context) => {
774
- const body = parsedOutput.body;
775
- const deserialized = smithyClient._json(body);
776
- const exception = new GeneralServiceException({
777
- $metadata: deserializeMetadata(parsedOutput),
778
- ...deserialized,
779
- });
780
- return smithyClient.decorateServiceException(exception, body);
781
- };
782
- const de_HandlerFailureExceptionRes = async (parsedOutput, context) => {
783
- const body = parsedOutput.body;
784
- const deserialized = smithyClient._json(body);
785
- const exception = new HandlerFailureException({
786
- $metadata: deserializeMetadata(parsedOutput),
787
- ...deserialized,
788
- });
789
- return smithyClient.decorateServiceException(exception, body);
790
- };
791
- const de_HandlerInternalFailureExceptionRes = async (parsedOutput, context) => {
792
- const body = parsedOutput.body;
793
- const deserialized = smithyClient._json(body);
794
- const exception = new HandlerInternalFailureException({
795
- $metadata: deserializeMetadata(parsedOutput),
796
- ...deserialized,
797
- });
798
- return smithyClient.decorateServiceException(exception, body);
799
- };
800
- const de_InvalidCredentialsExceptionRes = async (parsedOutput, context) => {
801
- const body = parsedOutput.body;
802
- const deserialized = smithyClient._json(body);
803
- const exception = new InvalidCredentialsException({
804
- $metadata: deserializeMetadata(parsedOutput),
805
- ...deserialized,
806
- });
807
- return smithyClient.decorateServiceException(exception, body);
808
- };
809
- const de_InvalidRequestExceptionRes = async (parsedOutput, context) => {
810
- const body = parsedOutput.body;
811
- const deserialized = smithyClient._json(body);
812
- const exception = new InvalidRequestException({
813
- $metadata: deserializeMetadata(parsedOutput),
814
- ...deserialized,
815
- });
816
- return smithyClient.decorateServiceException(exception, body);
817
- };
818
- const de_NetworkFailureExceptionRes = async (parsedOutput, context) => {
819
- const body = parsedOutput.body;
820
- const deserialized = smithyClient._json(body);
821
- const exception = new NetworkFailureException({
822
- $metadata: deserializeMetadata(parsedOutput),
823
- ...deserialized,
824
- });
825
- return smithyClient.decorateServiceException(exception, body);
826
- };
827
- const de_NotStabilizedExceptionRes = async (parsedOutput, context) => {
828
- const body = parsedOutput.body;
829
- const deserialized = smithyClient._json(body);
830
- const exception = new NotStabilizedException({
831
- $metadata: deserializeMetadata(parsedOutput),
832
- ...deserialized,
833
- });
834
- return smithyClient.decorateServiceException(exception, body);
835
- };
836
- const de_NotUpdatableExceptionRes = async (parsedOutput, context) => {
837
- const body = parsedOutput.body;
838
- const deserialized = smithyClient._json(body);
839
- const exception = new NotUpdatableException({
840
- $metadata: deserializeMetadata(parsedOutput),
841
- ...deserialized,
842
- });
843
- return smithyClient.decorateServiceException(exception, body);
844
- };
845
- const de_PrivateTypeExceptionRes = async (parsedOutput, context) => {
846
- const body = parsedOutput.body;
847
- const deserialized = smithyClient._json(body);
848
- const exception = new PrivateTypeException({
849
- $metadata: deserializeMetadata(parsedOutput),
850
- ...deserialized,
851
- });
852
- return smithyClient.decorateServiceException(exception, body);
853
- };
854
- const de_RequestTokenNotFoundExceptionRes = async (parsedOutput, context) => {
855
- const body = parsedOutput.body;
856
- const deserialized = smithyClient._json(body);
857
- const exception = new RequestTokenNotFoundException({
858
- $metadata: deserializeMetadata(parsedOutput),
859
- ...deserialized,
860
- });
861
- return smithyClient.decorateServiceException(exception, body);
862
- };
863
- const de_ResourceConflictExceptionRes = async (parsedOutput, context) => {
864
- const body = parsedOutput.body;
865
- const deserialized = smithyClient._json(body);
866
- const exception = new ResourceConflictException({
867
- $metadata: deserializeMetadata(parsedOutput),
868
- ...deserialized,
869
- });
870
- return smithyClient.decorateServiceException(exception, body);
871
- };
872
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
873
- const body = parsedOutput.body;
874
- const deserialized = smithyClient._json(body);
875
- const exception = new ResourceNotFoundException({
876
- $metadata: deserializeMetadata(parsedOutput),
877
- ...deserialized,
878
- });
879
- return smithyClient.decorateServiceException(exception, body);
880
- };
881
- const de_ServiceInternalErrorExceptionRes = async (parsedOutput, context) => {
882
- const body = parsedOutput.body;
883
- const deserialized = smithyClient._json(body);
884
- const exception = new ServiceInternalErrorException({
885
- $metadata: deserializeMetadata(parsedOutput),
886
- ...deserialized,
887
- });
888
- return smithyClient.decorateServiceException(exception, body);
889
- };
890
- const de_ServiceLimitExceededExceptionRes = async (parsedOutput, context) => {
891
- const body = parsedOutput.body;
892
- const deserialized = smithyClient._json(body);
893
- const exception = new ServiceLimitExceededException({
894
- $metadata: deserializeMetadata(parsedOutput),
895
- ...deserialized,
896
- });
897
- return smithyClient.decorateServiceException(exception, body);
898
- };
899
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
900
- const body = parsedOutput.body;
901
- const deserialized = smithyClient._json(body);
902
- const exception = new ThrottlingException({
903
- $metadata: deserializeMetadata(parsedOutput),
904
- ...deserialized,
905
- });
906
- return smithyClient.decorateServiceException(exception, body);
907
- };
908
- const de_TypeNotFoundExceptionRes = async (parsedOutput, context) => {
909
- const body = parsedOutput.body;
910
- const deserialized = smithyClient._json(body);
911
- const exception = new TypeNotFoundException({
912
- $metadata: deserializeMetadata(parsedOutput),
913
- ...deserialized,
914
- });
915
- return smithyClient.decorateServiceException(exception, body);
916
- };
917
- const de_UnsupportedActionExceptionRes = async (parsedOutput, context) => {
918
- const body = parsedOutput.body;
919
- const deserialized = smithyClient._json(body);
920
- const exception = new UnsupportedActionException({
921
- $metadata: deserializeMetadata(parsedOutput),
922
- ...deserialized,
923
- });
924
- return smithyClient.decorateServiceException(exception, body);
925
- };
926
- const se_CreateResourceInput = (input, context) => {
927
- return smithyClient.take(input, {
928
- ClientToken: [true, (_) => _ ?? uuid.v4()],
929
- DesiredState: [],
930
- RoleArn: [],
931
- TypeName: [],
932
- TypeVersionId: [],
933
- });
934
- };
935
- const se_DeleteResourceInput = (input, context) => {
936
- return smithyClient.take(input, {
937
- ClientToken: [true, (_) => _ ?? uuid.v4()],
938
- Identifier: [],
939
- RoleArn: [],
940
- TypeName: [],
941
- TypeVersionId: [],
942
- });
943
- };
944
- const se_UpdateResourceInput = (input, context) => {
945
- return smithyClient.take(input, {
946
- ClientToken: [true, (_) => _ ?? uuid.v4()],
947
- Identifier: [],
948
- PatchDocument: [],
949
- RoleArn: [],
950
- TypeName: [],
951
- TypeVersionId: [],
952
- });
953
- };
954
- const de_CancelResourceRequestOutput = (output, context) => {
955
- return smithyClient.take(output, {
956
- ProgressEvent: (_) => de_ProgressEvent(_),
957
- });
958
- };
959
- const de_CreateResourceOutput = (output, context) => {
960
- return smithyClient.take(output, {
961
- ProgressEvent: (_) => de_ProgressEvent(_),
962
- });
963
- };
964
- const de_DeleteResourceOutput = (output, context) => {
965
- return smithyClient.take(output, {
966
- ProgressEvent: (_) => de_ProgressEvent(_),
967
- });
968
- };
969
- const de_GetResourceRequestStatusOutput = (output, context) => {
970
- return smithyClient.take(output, {
971
- HooksProgressEvent: (_) => de_HooksProgressEvent(_),
972
- ProgressEvent: (_) => de_ProgressEvent(_),
973
- });
974
- };
975
- const de_HookProgressEvent = (output, context) => {
976
- return smithyClient.take(output, {
977
- FailureMode: smithyClient.expectString,
978
- HookEventTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
979
- HookStatus: smithyClient.expectString,
980
- HookStatusMessage: smithyClient.expectString,
981
- HookTypeArn: smithyClient.expectString,
982
- HookTypeName: smithyClient.expectString,
983
- HookTypeVersionId: smithyClient.expectString,
984
- InvocationPoint: smithyClient.expectString,
985
- });
986
- };
987
- const de_HooksProgressEvent = (output, context) => {
988
- const retVal = (output || [])
989
- .filter((e) => e != null)
990
- .map((entry) => {
991
- return de_HookProgressEvent(entry);
992
- });
993
- return retVal;
994
- };
995
- const de_ListResourceRequestsOutput = (output, context) => {
996
- return smithyClient.take(output, {
997
- NextToken: smithyClient.expectString,
998
- ResourceRequestStatusSummaries: (_) => de_ResourceRequestStatusSummaries(_),
999
- });
1000
- };
1001
- const de_ProgressEvent = (output, context) => {
1002
- return smithyClient.take(output, {
1003
- ErrorCode: smithyClient.expectString,
1004
- EventTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1005
- HooksRequestToken: smithyClient.expectString,
1006
- Identifier: smithyClient.expectString,
1007
- Operation: smithyClient.expectString,
1008
- OperationStatus: smithyClient.expectString,
1009
- RequestToken: smithyClient.expectString,
1010
- ResourceModel: smithyClient.expectString,
1011
- RetryAfter: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1012
- StatusMessage: smithyClient.expectString,
1013
- TypeName: smithyClient.expectString,
1014
- });
1015
- };
1016
- const de_ResourceRequestStatusSummaries = (output, context) => {
1017
- const retVal = (output || [])
1018
- .filter((e) => e != null)
1019
- .map((entry) => {
1020
- return de_ProgressEvent(entry);
1021
- });
1022
- return retVal;
1023
- };
1024
- const de_UpdateResourceOutput = (output, context) => {
1025
- return smithyClient.take(output, {
1026
- ProgressEvent: (_) => de_ProgressEvent(_),
1027
- });
1028
- };
1029
- const deserializeMetadata = (output) => ({
1030
- httpStatusCode: output.statusCode,
1031
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1032
- extendedRequestId: output.headers["x-amz-id-2"],
1033
- cfId: output.headers["x-amz-cf-id"],
1034
- });
1035
- const throwDefaultError = smithyClient.withBaseException(CloudControlServiceException);
1036
- const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
1037
- const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
1038
- const contents = {
1039
- protocol,
1040
- hostname,
1041
- port,
1042
- method: "POST",
1043
- path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
1044
- headers,
1045
- };
1046
- if (body !== undefined) {
1047
- contents.body = body;
1048
- }
1049
- return new protocolHttp.HttpRequest(contents);
1050
- };
1051
- function sharedHeaders(operation) {
1052
- return {
1053
- "content-type": "application/x-amz-json-1.0",
1054
- "x-amz-target": `CloudApiService.${operation}`,
1055
- };
1056
- }
446
+
447
+ const _AEE = "AlreadyExistsException";
448
+ const _CME = "ConcurrentModificationException";
449
+ const _COE = "ConcurrentOperationException";
450
+ const _CR = "CreateResource";
451
+ const _CRI = "CreateResourceInput";
452
+ const _CRO = "CreateResourceOutput";
453
+ const _CRR = "CancelResourceRequest";
454
+ const _CRRI = "CancelResourceRequestInput";
455
+ const _CRRO = "CancelResourceRequestOutput";
456
+ const _CT = "ClientToken";
457
+ const _CTCE = "ClientTokenConflictException";
458
+ const _DR = "DeleteResource";
459
+ const _DRI = "DeleteResourceInput";
460
+ const _DRO = "DeleteResourceOutput";
461
+ const _DS = "DesiredState";
462
+ const _EC = "ErrorCode";
463
+ const _ET = "EventTime";
464
+ const _FM = "FailureMode";
465
+ const _GR = "GetResource";
466
+ const _GRI = "GetResourceInput";
467
+ const _GRO = "GetResourceOutput";
468
+ const _GRRS = "GetResourceRequestStatus";
469
+ const _GRRSI = "GetResourceRequestStatusInput";
470
+ const _GRRSO = "GetResourceRequestStatusOutput";
471
+ const _GSE = "GeneralServiceException";
472
+ const _HET = "HookEventTime";
473
+ const _HFE = "HandlerFailureException";
474
+ const _HIFE = "HandlerInternalFailureException";
475
+ const _HPE = "HooksProgressEvent";
476
+ const _HPEo = "HookProgressEvent";
477
+ const _HRT = "HooksRequestToken";
478
+ const _HS = "HookStatus";
479
+ const _HSM = "HookStatusMessage";
480
+ const _HTA = "HookTypeArn";
481
+ const _HTN = "HookTypeName";
482
+ const _HTVI = "HookTypeVersionId";
483
+ const _I = "Identifier";
484
+ const _ICE = "InvalidCredentialsException";
485
+ const _IP = "InvocationPoint";
486
+ const _IRE = "InvalidRequestException";
487
+ const _LR = "ListResources";
488
+ const _LRI = "ListResourcesInput";
489
+ const _LRO = "ListResourcesOutput";
490
+ const _LRR = "ListResourceRequests";
491
+ const _LRRI = "ListResourceRequestsInput";
492
+ const _LRRO = "ListResourceRequestsOutput";
493
+ const _M = "Message";
494
+ const _MR = "MaxResults";
495
+ const _NFE = "NetworkFailureException";
496
+ const _NSE = "NotStabilizedException";
497
+ const _NT = "NextToken";
498
+ const _NUE = "NotUpdatableException";
499
+ const _O = "Operation";
500
+ const _OS = "OperationStatus";
501
+ const _OSp = "OperationStatuses";
502
+ const _Op = "Operations";
503
+ const _P = "Properties";
504
+ const _PD = "PatchDocument";
505
+ const _PE = "ProgressEvent";
506
+ const _PTE = "PrivateTypeException";
507
+ const _RA = "RoleArn";
508
+ const _RAe = "RetryAfter";
509
+ const _RCE = "ResourceConflictException";
510
+ const _RD = "ResourceDescription";
511
+ const _RDe = "ResourceDescriptions";
512
+ const _RM = "ResourceModel";
513
+ const _RNFE = "ResourceNotFoundException";
514
+ const _RRSF = "ResourceRequestStatusFilter";
515
+ const _RRSS = "ResourceRequestStatusSummaries";
516
+ const _RT = "RequestToken";
517
+ const _RTNFE = "RequestTokenNotFoundException";
518
+ const _SIEE = "ServiceInternalErrorException";
519
+ const _SLEE = "ServiceLimitExceededException";
520
+ const _SM = "StatusMessage";
521
+ const _TE = "ThrottlingException";
522
+ const _TN = "TypeName";
523
+ const _TNFE = "TypeNotFoundException";
524
+ const _TVI = "TypeVersionId";
525
+ const _UAE = "UnsupportedActionException";
526
+ const _UR = "UpdateResource";
527
+ const _URI = "UpdateResourceInput";
528
+ const _URO = "UpdateResourceOutput";
529
+ const _aQE = "awsQueryError";
530
+ const _c = "client";
531
+ const _e = "error";
532
+ const _hE = "httpError";
533
+ const _s = "server";
534
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloudcontrol";
535
+ const n0 = "com.amazonaws.cloudcontrol";
536
+ var PatchDocument = [0, n0, _PD, 8, 0];
537
+ var Properties = [0, n0, _P, 8, 0];
538
+ var AlreadyExistsException = [
539
+ -3,
540
+ n0,
541
+ _AEE,
542
+ {
543
+ [_e]: _c,
544
+ [_hE]: 400,
545
+ [_aQE]: [`AlreadyExistsException`, 400],
546
+ },
547
+ [_M],
548
+ [0],
549
+ ];
550
+ schema.TypeRegistry.for(n0).registerError(AlreadyExistsException, AlreadyExistsException$1);
551
+ var CancelResourceRequestInput = [3, n0, _CRRI, 0, [_RT], [0]];
552
+ var CancelResourceRequestOutput = [3, n0, _CRRO, 0, [_PE], [[() => ProgressEvent, 0]]];
553
+ var ClientTokenConflictException = [
554
+ -3,
555
+ n0,
556
+ _CTCE,
557
+ {
558
+ [_e]: _c,
559
+ [_hE]: 409,
560
+ [_aQE]: [`ClientTokenConflictException`, 409],
561
+ },
562
+ [_M],
563
+ [0],
564
+ ];
565
+ schema.TypeRegistry.for(n0).registerError(ClientTokenConflictException, ClientTokenConflictException$1);
566
+ var ConcurrentModificationException = [
567
+ -3,
568
+ n0,
569
+ _CME,
570
+ {
571
+ [_e]: _s,
572
+ [_hE]: 500,
573
+ [_aQE]: [`ConcurrentModificationException`, 500],
574
+ },
575
+ [_M],
576
+ [0],
577
+ ];
578
+ schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException, ConcurrentModificationException$1);
579
+ var ConcurrentOperationException = [
580
+ -3,
581
+ n0,
582
+ _COE,
583
+ {
584
+ [_e]: _c,
585
+ [_hE]: 409,
586
+ [_aQE]: [`ConcurrentOperationException`, 409],
587
+ },
588
+ [_M],
589
+ [0],
590
+ ];
591
+ schema.TypeRegistry.for(n0).registerError(ConcurrentOperationException, ConcurrentOperationException$1);
592
+ var CreateResourceInput = [
593
+ 3,
594
+ n0,
595
+ _CRI,
596
+ 0,
597
+ [_TN, _TVI, _RA, _CT, _DS],
598
+ [0, 0, 0, [0, 4], [() => Properties, 0]],
599
+ ];
600
+ var CreateResourceOutput = [3, n0, _CRO, 0, [_PE], [[() => ProgressEvent, 0]]];
601
+ var DeleteResourceInput = [
602
+ 3,
603
+ n0,
604
+ _DRI,
605
+ 0,
606
+ [_TN, _TVI, _RA, _CT, _I],
607
+ [0, 0, 0, [0, 4], 0],
608
+ ];
609
+ var DeleteResourceOutput = [3, n0, _DRO, 0, [_PE], [[() => ProgressEvent, 0]]];
610
+ var GeneralServiceException = [
611
+ -3,
612
+ n0,
613
+ _GSE,
614
+ {
615
+ [_e]: _c,
616
+ [_hE]: 400,
617
+ [_aQE]: [`GeneralServiceException`, 400],
618
+ },
619
+ [_M],
620
+ [0],
621
+ ];
622
+ schema.TypeRegistry.for(n0).registerError(GeneralServiceException, GeneralServiceException$1);
623
+ var GetResourceInput = [3, n0, _GRI, 0, [_TN, _TVI, _RA, _I], [0, 0, 0, 0]];
624
+ var GetResourceOutput = [3, n0, _GRO, 0, [_TN, _RD], [0, [() => ResourceDescription, 0]]];
625
+ var GetResourceRequestStatusInput = [3, n0, _GRRSI, 0, [_RT], [0]];
626
+ var GetResourceRequestStatusOutput = [
627
+ 3,
628
+ n0,
629
+ _GRRSO,
630
+ 0,
631
+ [_PE, _HPE],
632
+ [[() => ProgressEvent, 0], () => HooksProgressEvent],
633
+ ];
634
+ var HandlerFailureException = [
635
+ -3,
636
+ n0,
637
+ _HFE,
638
+ {
639
+ [_e]: _s,
640
+ [_hE]: 502,
641
+ [_aQE]: [`HandlerFailureException`, 502],
642
+ },
643
+ [_M],
644
+ [0],
645
+ ];
646
+ schema.TypeRegistry.for(n0).registerError(HandlerFailureException, HandlerFailureException$1);
647
+ var HandlerInternalFailureException = [
648
+ -3,
649
+ n0,
650
+ _HIFE,
651
+ {
652
+ [_e]: _s,
653
+ [_hE]: 502,
654
+ [_aQE]: [`HandlerInternalFailureException`, 502],
655
+ },
656
+ [_M],
657
+ [0],
658
+ ];
659
+ schema.TypeRegistry.for(n0).registerError(HandlerInternalFailureException, HandlerInternalFailureException$1);
660
+ var HookProgressEvent = [
661
+ 3,
662
+ n0,
663
+ _HPEo,
664
+ 0,
665
+ [_HTN, _HTVI, _HTA, _IP, _HS, _HET, _HSM, _FM],
666
+ [0, 0, 0, 0, 0, 4, 0, 0],
667
+ ];
668
+ var InvalidCredentialsException = [
669
+ -3,
670
+ n0,
671
+ _ICE,
672
+ {
673
+ [_e]: _c,
674
+ [_hE]: 401,
675
+ [_aQE]: [`InvalidCredentialsException`, 401],
676
+ },
677
+ [_M],
678
+ [0],
679
+ ];
680
+ schema.TypeRegistry.for(n0).registerError(InvalidCredentialsException, InvalidCredentialsException$1);
681
+ var InvalidRequestException = [
682
+ -3,
683
+ n0,
684
+ _IRE,
685
+ {
686
+ [_e]: _c,
687
+ [_hE]: 400,
688
+ [_aQE]: [`InvalidRequestException`, 400],
689
+ },
690
+ [_M],
691
+ [0],
692
+ ];
693
+ schema.TypeRegistry.for(n0).registerError(InvalidRequestException, InvalidRequestException$1);
694
+ var ListResourceRequestsInput = [
695
+ 3,
696
+ n0,
697
+ _LRRI,
698
+ 0,
699
+ [_MR, _NT, _RRSF],
700
+ [1, 0, () => ResourceRequestStatusFilter],
701
+ ];
702
+ var ListResourceRequestsOutput = [
703
+ 3,
704
+ n0,
705
+ _LRRO,
706
+ 0,
707
+ [_RRSS, _NT],
708
+ [[() => ResourceRequestStatusSummaries, 0], 0],
709
+ ];
710
+ var ListResourcesInput = [
711
+ 3,
712
+ n0,
713
+ _LRI,
714
+ 0,
715
+ [_TN, _TVI, _RA, _NT, _MR, _RM],
716
+ [0, 0, 0, 0, 1, [() => Properties, 0]],
717
+ ];
718
+ var ListResourcesOutput = [
719
+ 3,
720
+ n0,
721
+ _LRO,
722
+ 0,
723
+ [_TN, _RDe, _NT],
724
+ [0, [() => ResourceDescriptions, 0], 0],
725
+ ];
726
+ var NetworkFailureException = [
727
+ -3,
728
+ n0,
729
+ _NFE,
730
+ {
731
+ [_e]: _s,
732
+ [_hE]: 502,
733
+ [_aQE]: [`NetworkFailureException`, 502],
734
+ },
735
+ [_M],
736
+ [0],
737
+ ];
738
+ schema.TypeRegistry.for(n0).registerError(NetworkFailureException, NetworkFailureException$1);
739
+ var NotStabilizedException = [
740
+ -3,
741
+ n0,
742
+ _NSE,
743
+ {
744
+ [_e]: _c,
745
+ [_hE]: 400,
746
+ [_aQE]: [`NotStabilizedException`, 400],
747
+ },
748
+ [_M],
749
+ [0],
750
+ ];
751
+ schema.TypeRegistry.for(n0).registerError(NotStabilizedException, NotStabilizedException$1);
752
+ var NotUpdatableException = [
753
+ -3,
754
+ n0,
755
+ _NUE,
756
+ {
757
+ [_e]: _c,
758
+ [_hE]: 400,
759
+ [_aQE]: [`NotUpdatableException`, 400],
760
+ },
761
+ [_M],
762
+ [0],
763
+ ];
764
+ schema.TypeRegistry.for(n0).registerError(NotUpdatableException, NotUpdatableException$1);
765
+ var PrivateTypeException = [
766
+ -3,
767
+ n0,
768
+ _PTE,
769
+ {
770
+ [_e]: _c,
771
+ [_hE]: 400,
772
+ [_aQE]: [`PrivateTypeException`, 400],
773
+ },
774
+ [_M],
775
+ [0],
776
+ ];
777
+ schema.TypeRegistry.for(n0).registerError(PrivateTypeException, PrivateTypeException$1);
778
+ var ProgressEvent = [
779
+ 3,
780
+ n0,
781
+ _PE,
782
+ 0,
783
+ [_TN, _I, _RT, _HRT, _O, _OS, _ET, _RM, _SM, _EC, _RAe],
784
+ [0, 0, 0, 0, 0, 0, 4, [() => Properties, 0], 0, 0, 4],
785
+ ];
786
+ var RequestTokenNotFoundException = [
787
+ -3,
788
+ n0,
789
+ _RTNFE,
790
+ {
791
+ [_e]: _c,
792
+ [_hE]: 404,
793
+ [_aQE]: [`RequestTokenNotFoundException`, 404],
794
+ },
795
+ [_M],
796
+ [0],
797
+ ];
798
+ schema.TypeRegistry.for(n0).registerError(RequestTokenNotFoundException, RequestTokenNotFoundException$1);
799
+ var ResourceConflictException = [
800
+ -3,
801
+ n0,
802
+ _RCE,
803
+ {
804
+ [_e]: _c,
805
+ [_hE]: 409,
806
+ [_aQE]: [`ResourceConflictException`, 409],
807
+ },
808
+ [_M],
809
+ [0],
810
+ ];
811
+ schema.TypeRegistry.for(n0).registerError(ResourceConflictException, ResourceConflictException$1);
812
+ var ResourceDescription = [3, n0, _RD, 0, [_I, _P], [0, [() => Properties, 0]]];
813
+ var ResourceNotFoundException = [
814
+ -3,
815
+ n0,
816
+ _RNFE,
817
+ {
818
+ [_e]: _c,
819
+ [_hE]: 404,
820
+ [_aQE]: [`ResourceNotFoundException`, 404],
821
+ },
822
+ [_M],
823
+ [0],
824
+ ];
825
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
826
+ var ResourceRequestStatusFilter = [3, n0, _RRSF, 0, [_Op, _OSp], [64 | 0, 64 | 0]];
827
+ var ServiceInternalErrorException = [
828
+ -3,
829
+ n0,
830
+ _SIEE,
831
+ {
832
+ [_e]: _s,
833
+ [_hE]: 502,
834
+ [_aQE]: [`ServiceInternalErrorException`, 502],
835
+ },
836
+ [_M],
837
+ [0],
838
+ ];
839
+ schema.TypeRegistry.for(n0).registerError(ServiceInternalErrorException, ServiceInternalErrorException$1);
840
+ var ServiceLimitExceededException = [
841
+ -3,
842
+ n0,
843
+ _SLEE,
844
+ {
845
+ [_e]: _c,
846
+ [_hE]: 400,
847
+ [_aQE]: [`ServiceLimitExceededException`, 400],
848
+ },
849
+ [_M],
850
+ [0],
851
+ ];
852
+ schema.TypeRegistry.for(n0).registerError(ServiceLimitExceededException, ServiceLimitExceededException$1);
853
+ var ThrottlingException = [
854
+ -3,
855
+ n0,
856
+ _TE,
857
+ {
858
+ [_e]: _c,
859
+ [_hE]: 429,
860
+ [_aQE]: [`ThrottlingException`, 429],
861
+ },
862
+ [_M],
863
+ [0],
864
+ ];
865
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
866
+ var TypeNotFoundException = [
867
+ -3,
868
+ n0,
869
+ _TNFE,
870
+ {
871
+ [_e]: _c,
872
+ [_hE]: 404,
873
+ [_aQE]: [`TypeNotFoundException`, 404],
874
+ },
875
+ [_M],
876
+ [0],
877
+ ];
878
+ schema.TypeRegistry.for(n0).registerError(TypeNotFoundException, TypeNotFoundException$1);
879
+ var UnsupportedActionException = [
880
+ -3,
881
+ n0,
882
+ _UAE,
883
+ {
884
+ [_e]: _c,
885
+ [_hE]: 405,
886
+ [_aQE]: [`UnsupportedActionException`, 405],
887
+ },
888
+ [_M],
889
+ [0],
890
+ ];
891
+ schema.TypeRegistry.for(n0).registerError(UnsupportedActionException, UnsupportedActionException$1);
892
+ var UpdateResourceInput = [
893
+ 3,
894
+ n0,
895
+ _URI,
896
+ 0,
897
+ [_TN, _TVI, _RA, _CT, _I, _PD],
898
+ [0, 0, 0, [0, 4], 0, [() => PatchDocument, 0]],
899
+ ];
900
+ var UpdateResourceOutput = [3, n0, _URO, 0, [_PE], [[() => ProgressEvent, 0]]];
901
+ var CloudControlServiceException = [-3, _sm, "CloudControlServiceException", 0, [], []];
902
+ schema.TypeRegistry.for(_sm).registerError(CloudControlServiceException, CloudControlServiceException$1);
903
+ var HooksProgressEvent = [1, n0, _HPE, 0, () => HookProgressEvent];
904
+ var ResourceDescriptions = [1, n0, _RDe, 0, [() => ResourceDescription, 0]];
905
+ var ResourceRequestStatusSummaries = [1, n0, _RRSS, 0, [() => ProgressEvent, 0]];
906
+ var CancelResourceRequest = [
907
+ 9,
908
+ n0,
909
+ _CRR,
910
+ 2,
911
+ () => CancelResourceRequestInput,
912
+ () => CancelResourceRequestOutput,
913
+ ];
914
+ var CreateResource = [
915
+ 9,
916
+ n0,
917
+ _CR,
918
+ 0,
919
+ () => CreateResourceInput,
920
+ () => CreateResourceOutput,
921
+ ];
922
+ var DeleteResource = [
923
+ 9,
924
+ n0,
925
+ _DR,
926
+ 0,
927
+ () => DeleteResourceInput,
928
+ () => DeleteResourceOutput,
929
+ ];
930
+ var GetResource = [9, n0, _GR, 0, () => GetResourceInput, () => GetResourceOutput];
931
+ var GetResourceRequestStatus = [
932
+ 9,
933
+ n0,
934
+ _GRRS,
935
+ 0,
936
+ () => GetResourceRequestStatusInput,
937
+ () => GetResourceRequestStatusOutput,
938
+ ];
939
+ var ListResourceRequests = [
940
+ 9,
941
+ n0,
942
+ _LRR,
943
+ 0,
944
+ () => ListResourceRequestsInput,
945
+ () => ListResourceRequestsOutput,
946
+ ];
947
+ var ListResources = [9, n0, _LR, 0, () => ListResourcesInput, () => ListResourcesOutput];
948
+ var UpdateResource = [
949
+ 9,
950
+ n0,
951
+ _UR,
952
+ 0,
953
+ () => UpdateResourceInput,
954
+ () => UpdateResourceOutput,
955
+ ];
1057
956
 
1058
957
  class CancelResourceRequestCommand extends smithyClient.Command
1059
958
  .classBuilder()
1060
959
  .ep(commonParams)
1061
960
  .m(function (Command, cs, config, o) {
1062
- return [
1063
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1064
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1065
- ];
961
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1066
962
  })
1067
963
  .s("CloudApiService", "CancelResourceRequest", {})
1068
964
  .n("CloudControlClient", "CancelResourceRequestCommand")
1069
- .f(void 0, CancelResourceRequestOutputFilterSensitiveLog)
1070
- .ser(se_CancelResourceRequestCommand)
1071
- .de(de_CancelResourceRequestCommand)
965
+ .sc(CancelResourceRequest)
1072
966
  .build() {
1073
967
  }
1074
968
 
@@ -1076,16 +970,11 @@ class CreateResourceCommand extends smithyClient.Command
1076
970
  .classBuilder()
1077
971
  .ep(commonParams)
1078
972
  .m(function (Command, cs, config, o) {
1079
- return [
1080
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1081
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1082
- ];
973
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1083
974
  })
1084
975
  .s("CloudApiService", "CreateResource", {})
1085
976
  .n("CloudControlClient", "CreateResourceCommand")
1086
- .f(CreateResourceInputFilterSensitiveLog, CreateResourceOutputFilterSensitiveLog)
1087
- .ser(se_CreateResourceCommand)
1088
- .de(de_CreateResourceCommand)
977
+ .sc(CreateResource)
1089
978
  .build() {
1090
979
  }
1091
980
 
@@ -1093,16 +982,11 @@ class DeleteResourceCommand extends smithyClient.Command
1093
982
  .classBuilder()
1094
983
  .ep(commonParams)
1095
984
  .m(function (Command, cs, config, o) {
1096
- return [
1097
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1098
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1099
- ];
985
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1100
986
  })
1101
987
  .s("CloudApiService", "DeleteResource", {})
1102
988
  .n("CloudControlClient", "DeleteResourceCommand")
1103
- .f(void 0, DeleteResourceOutputFilterSensitiveLog)
1104
- .ser(se_DeleteResourceCommand)
1105
- .de(de_DeleteResourceCommand)
989
+ .sc(DeleteResource)
1106
990
  .build() {
1107
991
  }
1108
992
 
@@ -1110,16 +994,11 @@ class GetResourceCommand extends smithyClient.Command
1110
994
  .classBuilder()
1111
995
  .ep(commonParams)
1112
996
  .m(function (Command, cs, config, o) {
1113
- return [
1114
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1115
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1116
- ];
997
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1117
998
  })
1118
999
  .s("CloudApiService", "GetResource", {})
1119
1000
  .n("CloudControlClient", "GetResourceCommand")
1120
- .f(void 0, GetResourceOutputFilterSensitiveLog)
1121
- .ser(se_GetResourceCommand)
1122
- .de(de_GetResourceCommand)
1001
+ .sc(GetResource)
1123
1002
  .build() {
1124
1003
  }
1125
1004
 
@@ -1127,16 +1006,11 @@ class GetResourceRequestStatusCommand extends smithyClient.Command
1127
1006
  .classBuilder()
1128
1007
  .ep(commonParams)
1129
1008
  .m(function (Command, cs, config, o) {
1130
- return [
1131
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1132
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1133
- ];
1009
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1134
1010
  })
1135
1011
  .s("CloudApiService", "GetResourceRequestStatus", {})
1136
1012
  .n("CloudControlClient", "GetResourceRequestStatusCommand")
1137
- .f(void 0, GetResourceRequestStatusOutputFilterSensitiveLog)
1138
- .ser(se_GetResourceRequestStatusCommand)
1139
- .de(de_GetResourceRequestStatusCommand)
1013
+ .sc(GetResourceRequestStatus)
1140
1014
  .build() {
1141
1015
  }
1142
1016
 
@@ -1144,16 +1018,11 @@ class ListResourceRequestsCommand extends smithyClient.Command
1144
1018
  .classBuilder()
1145
1019
  .ep(commonParams)
1146
1020
  .m(function (Command, cs, config, o) {
1147
- return [
1148
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1149
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1150
- ];
1021
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1151
1022
  })
1152
1023
  .s("CloudApiService", "ListResourceRequests", {})
1153
1024
  .n("CloudControlClient", "ListResourceRequestsCommand")
1154
- .f(void 0, ListResourceRequestsOutputFilterSensitiveLog)
1155
- .ser(se_ListResourceRequestsCommand)
1156
- .de(de_ListResourceRequestsCommand)
1025
+ .sc(ListResourceRequests)
1157
1026
  .build() {
1158
1027
  }
1159
1028
 
@@ -1161,16 +1030,11 @@ class ListResourcesCommand extends smithyClient.Command
1161
1030
  .classBuilder()
1162
1031
  .ep(commonParams)
1163
1032
  .m(function (Command, cs, config, o) {
1164
- return [
1165
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1166
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1167
- ];
1033
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1168
1034
  })
1169
1035
  .s("CloudApiService", "ListResources", {})
1170
1036
  .n("CloudControlClient", "ListResourcesCommand")
1171
- .f(ListResourcesInputFilterSensitiveLog, ListResourcesOutputFilterSensitiveLog)
1172
- .ser(se_ListResourcesCommand)
1173
- .de(de_ListResourcesCommand)
1037
+ .sc(ListResources)
1174
1038
  .build() {
1175
1039
  }
1176
1040
 
@@ -1178,16 +1042,11 @@ class UpdateResourceCommand extends smithyClient.Command
1178
1042
  .classBuilder()
1179
1043
  .ep(commonParams)
1180
1044
  .m(function (Command, cs, config, o) {
1181
- return [
1182
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1183
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1184
- ];
1045
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1185
1046
  })
1186
1047
  .s("CloudApiService", "UpdateResource", {})
1187
1048
  .n("CloudControlClient", "UpdateResourceCommand")
1188
- .f(UpdateResourceInputFilterSensitiveLog, UpdateResourceOutputFilterSensitiveLog)
1189
- .ser(se_UpdateResourceCommand)
1190
- .de(de_UpdateResourceCommand)
1049
+ .sc(UpdateResource)
1191
1050
  .build() {
1192
1051
  }
1193
1052
 
@@ -1265,54 +1124,41 @@ Object.defineProperty(exports, "__Client", {
1265
1124
  enumerable: true,
1266
1125
  get: function () { return smithyClient.Client; }
1267
1126
  });
1268
- exports.AlreadyExistsException = AlreadyExistsException;
1127
+ exports.AlreadyExistsException = AlreadyExistsException$1;
1269
1128
  exports.CancelResourceRequestCommand = CancelResourceRequestCommand;
1270
- exports.CancelResourceRequestOutputFilterSensitiveLog = CancelResourceRequestOutputFilterSensitiveLog;
1271
- exports.ClientTokenConflictException = ClientTokenConflictException;
1129
+ exports.ClientTokenConflictException = ClientTokenConflictException$1;
1272
1130
  exports.CloudControl = CloudControl;
1273
1131
  exports.CloudControlClient = CloudControlClient;
1274
- exports.CloudControlServiceException = CloudControlServiceException;
1275
- exports.ConcurrentModificationException = ConcurrentModificationException;
1276
- exports.ConcurrentOperationException = ConcurrentOperationException;
1132
+ exports.CloudControlServiceException = CloudControlServiceException$1;
1133
+ exports.ConcurrentModificationException = ConcurrentModificationException$1;
1134
+ exports.ConcurrentOperationException = ConcurrentOperationException$1;
1277
1135
  exports.CreateResourceCommand = CreateResourceCommand;
1278
- exports.CreateResourceInputFilterSensitiveLog = CreateResourceInputFilterSensitiveLog;
1279
- exports.CreateResourceOutputFilterSensitiveLog = CreateResourceOutputFilterSensitiveLog;
1280
1136
  exports.DeleteResourceCommand = DeleteResourceCommand;
1281
- exports.DeleteResourceOutputFilterSensitiveLog = DeleteResourceOutputFilterSensitiveLog;
1282
- exports.GeneralServiceException = GeneralServiceException;
1137
+ exports.GeneralServiceException = GeneralServiceException$1;
1283
1138
  exports.GetResourceCommand = GetResourceCommand;
1284
- exports.GetResourceOutputFilterSensitiveLog = GetResourceOutputFilterSensitiveLog;
1285
1139
  exports.GetResourceRequestStatusCommand = GetResourceRequestStatusCommand;
1286
- exports.GetResourceRequestStatusOutputFilterSensitiveLog = GetResourceRequestStatusOutputFilterSensitiveLog;
1287
1140
  exports.HandlerErrorCode = HandlerErrorCode;
1288
- exports.HandlerFailureException = HandlerFailureException;
1289
- exports.HandlerInternalFailureException = HandlerInternalFailureException;
1290
- exports.InvalidCredentialsException = InvalidCredentialsException;
1291
- exports.InvalidRequestException = InvalidRequestException;
1141
+ exports.HandlerFailureException = HandlerFailureException$1;
1142
+ exports.HandlerInternalFailureException = HandlerInternalFailureException$1;
1143
+ exports.InvalidCredentialsException = InvalidCredentialsException$1;
1144
+ exports.InvalidRequestException = InvalidRequestException$1;
1292
1145
  exports.ListResourceRequestsCommand = ListResourceRequestsCommand;
1293
- exports.ListResourceRequestsOutputFilterSensitiveLog = ListResourceRequestsOutputFilterSensitiveLog;
1294
1146
  exports.ListResourcesCommand = ListResourcesCommand;
1295
- exports.ListResourcesInputFilterSensitiveLog = ListResourcesInputFilterSensitiveLog;
1296
- exports.ListResourcesOutputFilterSensitiveLog = ListResourcesOutputFilterSensitiveLog;
1297
- exports.NetworkFailureException = NetworkFailureException;
1298
- exports.NotStabilizedException = NotStabilizedException;
1299
- exports.NotUpdatableException = NotUpdatableException;
1147
+ exports.NetworkFailureException = NetworkFailureException$1;
1148
+ exports.NotStabilizedException = NotStabilizedException$1;
1149
+ exports.NotUpdatableException = NotUpdatableException$1;
1300
1150
  exports.Operation = Operation;
1301
1151
  exports.OperationStatus = OperationStatus;
1302
- exports.PrivateTypeException = PrivateTypeException;
1303
- exports.ProgressEventFilterSensitiveLog = ProgressEventFilterSensitiveLog;
1304
- exports.RequestTokenNotFoundException = RequestTokenNotFoundException;
1305
- exports.ResourceConflictException = ResourceConflictException;
1306
- exports.ResourceDescriptionFilterSensitiveLog = ResourceDescriptionFilterSensitiveLog;
1307
- exports.ResourceNotFoundException = ResourceNotFoundException;
1308
- exports.ServiceInternalErrorException = ServiceInternalErrorException;
1309
- exports.ServiceLimitExceededException = ServiceLimitExceededException;
1310
- exports.ThrottlingException = ThrottlingException;
1311
- exports.TypeNotFoundException = TypeNotFoundException;
1312
- exports.UnsupportedActionException = UnsupportedActionException;
1152
+ exports.PrivateTypeException = PrivateTypeException$1;
1153
+ exports.RequestTokenNotFoundException = RequestTokenNotFoundException$1;
1154
+ exports.ResourceConflictException = ResourceConflictException$1;
1155
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1156
+ exports.ServiceInternalErrorException = ServiceInternalErrorException$1;
1157
+ exports.ServiceLimitExceededException = ServiceLimitExceededException$1;
1158
+ exports.ThrottlingException = ThrottlingException$1;
1159
+ exports.TypeNotFoundException = TypeNotFoundException$1;
1160
+ exports.UnsupportedActionException = UnsupportedActionException$1;
1313
1161
  exports.UpdateResourceCommand = UpdateResourceCommand;
1314
- exports.UpdateResourceInputFilterSensitiveLog = UpdateResourceInputFilterSensitiveLog;
1315
- exports.UpdateResourceOutputFilterSensitiveLog = UpdateResourceOutputFilterSensitiveLog;
1316
1162
  exports.paginateListResourceRequests = paginateListResourceRequests;
1317
1163
  exports.paginateListResources = paginateListResources;
1318
1164
  exports.waitForResourceRequestSuccess = waitForResourceRequestSuccess;