@aws-sdk/client-ivs-realtime 3.758.0 → 3.763.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 +422 -7
- package/dist-es/models/models_0.js +112 -0
- package/dist-es/protocols/Aws_restJson1.js +86 -7
- package/dist-types/commands/CreateStageCommand.d.ts +2 -0
- package/dist-types/commands/GetStageCommand.d.ts +1 -0
- package/dist-types/commands/UpdateStageCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +504 -172
- package/dist-types/ts3.4/models/models_0.d.ts +57 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -285,6 +285,46 @@ var AccessDeniedException = class _AccessDeniedException extends IVSRealTimeServ
|
|
|
285
285
|
}
|
|
286
286
|
name = "AccessDeniedException";
|
|
287
287
|
$fault = "client";
|
|
288
|
+
/**
|
|
289
|
+
* <p/>
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
accessControlAllowOrigin;
|
|
293
|
+
/**
|
|
294
|
+
* <p/>
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
297
|
+
accessControlExposeHeaders;
|
|
298
|
+
/**
|
|
299
|
+
* <p/>
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
302
|
+
cacheControl;
|
|
303
|
+
/**
|
|
304
|
+
* <p/>
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
contentSecurityPolicy;
|
|
308
|
+
/**
|
|
309
|
+
* <p/>
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
strictTransportSecurity;
|
|
313
|
+
/**
|
|
314
|
+
* <p/>
|
|
315
|
+
* @public
|
|
316
|
+
*/
|
|
317
|
+
xContentTypeOptions;
|
|
318
|
+
/**
|
|
319
|
+
* <p/>
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
xFrameOptions;
|
|
323
|
+
/**
|
|
324
|
+
* <p/>
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
xAmznErrorType;
|
|
288
328
|
/**
|
|
289
329
|
* <p>User does not have sufficient access to perform this action.</p>
|
|
290
330
|
* @public
|
|
@@ -300,6 +340,14 @@ var AccessDeniedException = class _AccessDeniedException extends IVSRealTimeServ
|
|
|
300
340
|
...opts
|
|
301
341
|
});
|
|
302
342
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
343
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
344
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
345
|
+
this.cacheControl = opts.cacheControl;
|
|
346
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
347
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
348
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
349
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
350
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
303
351
|
this.exceptionMessage = opts.exceptionMessage;
|
|
304
352
|
}
|
|
305
353
|
};
|
|
@@ -309,6 +357,46 @@ var ConflictException = class _ConflictException extends IVSRealTimeServiceExcep
|
|
|
309
357
|
}
|
|
310
358
|
name = "ConflictException";
|
|
311
359
|
$fault = "client";
|
|
360
|
+
/**
|
|
361
|
+
* <p/>
|
|
362
|
+
* @public
|
|
363
|
+
*/
|
|
364
|
+
accessControlAllowOrigin;
|
|
365
|
+
/**
|
|
366
|
+
* <p/>
|
|
367
|
+
* @public
|
|
368
|
+
*/
|
|
369
|
+
accessControlExposeHeaders;
|
|
370
|
+
/**
|
|
371
|
+
* <p/>
|
|
372
|
+
* @public
|
|
373
|
+
*/
|
|
374
|
+
cacheControl;
|
|
375
|
+
/**
|
|
376
|
+
* <p/>
|
|
377
|
+
* @public
|
|
378
|
+
*/
|
|
379
|
+
contentSecurityPolicy;
|
|
380
|
+
/**
|
|
381
|
+
* <p/>
|
|
382
|
+
* @public
|
|
383
|
+
*/
|
|
384
|
+
strictTransportSecurity;
|
|
385
|
+
/**
|
|
386
|
+
* <p/>
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
389
|
+
xContentTypeOptions;
|
|
390
|
+
/**
|
|
391
|
+
* <p/>
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
394
|
+
xFrameOptions;
|
|
395
|
+
/**
|
|
396
|
+
* <p/>
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
xAmznErrorType;
|
|
312
400
|
/**
|
|
313
401
|
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
314
402
|
* @public
|
|
@@ -324,6 +412,14 @@ var ConflictException = class _ConflictException extends IVSRealTimeServiceExcep
|
|
|
324
412
|
...opts
|
|
325
413
|
});
|
|
326
414
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
415
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
416
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
417
|
+
this.cacheControl = opts.cacheControl;
|
|
418
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
419
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
420
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
421
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
422
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
327
423
|
this.exceptionMessage = opts.exceptionMessage;
|
|
328
424
|
}
|
|
329
425
|
};
|
|
@@ -333,6 +429,46 @@ var InternalServerException = class _InternalServerException extends IVSRealTime
|
|
|
333
429
|
}
|
|
334
430
|
name = "InternalServerException";
|
|
335
431
|
$fault = "server";
|
|
432
|
+
/**
|
|
433
|
+
* <p/>
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
accessControlAllowOrigin;
|
|
437
|
+
/**
|
|
438
|
+
* <p/>
|
|
439
|
+
* @public
|
|
440
|
+
*/
|
|
441
|
+
accessControlExposeHeaders;
|
|
442
|
+
/**
|
|
443
|
+
* <p/>
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
446
|
+
cacheControl;
|
|
447
|
+
/**
|
|
448
|
+
* <p/>
|
|
449
|
+
* @public
|
|
450
|
+
*/
|
|
451
|
+
contentSecurityPolicy;
|
|
452
|
+
/**
|
|
453
|
+
* <p/>
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
456
|
+
strictTransportSecurity;
|
|
457
|
+
/**
|
|
458
|
+
* <p/>
|
|
459
|
+
* @public
|
|
460
|
+
*/
|
|
461
|
+
xContentTypeOptions;
|
|
462
|
+
/**
|
|
463
|
+
* <p/>
|
|
464
|
+
* @public
|
|
465
|
+
*/
|
|
466
|
+
xFrameOptions;
|
|
467
|
+
/**
|
|
468
|
+
* <p/>
|
|
469
|
+
* @public
|
|
470
|
+
*/
|
|
471
|
+
xAmznErrorType;
|
|
336
472
|
/**
|
|
337
473
|
* <p>Unexpected error during processing of request.</p>
|
|
338
474
|
* @public
|
|
@@ -348,6 +484,14 @@ var InternalServerException = class _InternalServerException extends IVSRealTime
|
|
|
348
484
|
...opts
|
|
349
485
|
});
|
|
350
486
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
487
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
488
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
489
|
+
this.cacheControl = opts.cacheControl;
|
|
490
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
491
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
492
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
493
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
494
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
351
495
|
this.exceptionMessage = opts.exceptionMessage;
|
|
352
496
|
}
|
|
353
497
|
};
|
|
@@ -357,6 +501,46 @@ var PendingVerification = class _PendingVerification extends IVSRealTimeServiceE
|
|
|
357
501
|
}
|
|
358
502
|
name = "PendingVerification";
|
|
359
503
|
$fault = "client";
|
|
504
|
+
/**
|
|
505
|
+
* <p/>
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
accessControlAllowOrigin;
|
|
509
|
+
/**
|
|
510
|
+
* <p/>
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
513
|
+
accessControlExposeHeaders;
|
|
514
|
+
/**
|
|
515
|
+
* <p/>
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
cacheControl;
|
|
519
|
+
/**
|
|
520
|
+
* <p/>
|
|
521
|
+
* @public
|
|
522
|
+
*/
|
|
523
|
+
contentSecurityPolicy;
|
|
524
|
+
/**
|
|
525
|
+
* <p/>
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
strictTransportSecurity;
|
|
529
|
+
/**
|
|
530
|
+
* <p/>
|
|
531
|
+
* @public
|
|
532
|
+
*/
|
|
533
|
+
xContentTypeOptions;
|
|
534
|
+
/**
|
|
535
|
+
* <p/>
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
538
|
+
xFrameOptions;
|
|
539
|
+
/**
|
|
540
|
+
* <p/>
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
xAmznErrorType;
|
|
360
544
|
/**
|
|
361
545
|
* <p> Your account is pending verification. </p>
|
|
362
546
|
* @public
|
|
@@ -372,6 +556,14 @@ var PendingVerification = class _PendingVerification extends IVSRealTimeServiceE
|
|
|
372
556
|
...opts
|
|
373
557
|
});
|
|
374
558
|
Object.setPrototypeOf(this, _PendingVerification.prototype);
|
|
559
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
560
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
561
|
+
this.cacheControl = opts.cacheControl;
|
|
562
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
563
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
564
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
565
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
566
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
375
567
|
this.exceptionMessage = opts.exceptionMessage;
|
|
376
568
|
}
|
|
377
569
|
};
|
|
@@ -381,6 +573,46 @@ var ResourceNotFoundException = class _ResourceNotFoundException extends IVSReal
|
|
|
381
573
|
}
|
|
382
574
|
name = "ResourceNotFoundException";
|
|
383
575
|
$fault = "client";
|
|
576
|
+
/**
|
|
577
|
+
* <p/>
|
|
578
|
+
* @public
|
|
579
|
+
*/
|
|
580
|
+
accessControlAllowOrigin;
|
|
581
|
+
/**
|
|
582
|
+
* <p/>
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
accessControlExposeHeaders;
|
|
586
|
+
/**
|
|
587
|
+
* <p/>
|
|
588
|
+
* @public
|
|
589
|
+
*/
|
|
590
|
+
cacheControl;
|
|
591
|
+
/**
|
|
592
|
+
* <p/>
|
|
593
|
+
* @public
|
|
594
|
+
*/
|
|
595
|
+
contentSecurityPolicy;
|
|
596
|
+
/**
|
|
597
|
+
* <p/>
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
600
|
+
strictTransportSecurity;
|
|
601
|
+
/**
|
|
602
|
+
* <p/>
|
|
603
|
+
* @public
|
|
604
|
+
*/
|
|
605
|
+
xContentTypeOptions;
|
|
606
|
+
/**
|
|
607
|
+
* <p/>
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
610
|
+
xFrameOptions;
|
|
611
|
+
/**
|
|
612
|
+
* <p/>
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
615
|
+
xAmznErrorType;
|
|
384
616
|
/**
|
|
385
617
|
* <p>Request references a resource which does not exist.</p>
|
|
386
618
|
* @public
|
|
@@ -396,6 +628,14 @@ var ResourceNotFoundException = class _ResourceNotFoundException extends IVSReal
|
|
|
396
628
|
...opts
|
|
397
629
|
});
|
|
398
630
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
631
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
632
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
633
|
+
this.cacheControl = opts.cacheControl;
|
|
634
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
635
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
636
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
637
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
638
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
399
639
|
this.exceptionMessage = opts.exceptionMessage;
|
|
400
640
|
}
|
|
401
641
|
};
|
|
@@ -405,6 +645,46 @@ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends
|
|
|
405
645
|
}
|
|
406
646
|
name = "ServiceQuotaExceededException";
|
|
407
647
|
$fault = "client";
|
|
648
|
+
/**
|
|
649
|
+
* <p/>
|
|
650
|
+
* @public
|
|
651
|
+
*/
|
|
652
|
+
accessControlAllowOrigin;
|
|
653
|
+
/**
|
|
654
|
+
* <p/>
|
|
655
|
+
* @public
|
|
656
|
+
*/
|
|
657
|
+
accessControlExposeHeaders;
|
|
658
|
+
/**
|
|
659
|
+
* <p/>
|
|
660
|
+
* @public
|
|
661
|
+
*/
|
|
662
|
+
cacheControl;
|
|
663
|
+
/**
|
|
664
|
+
* <p/>
|
|
665
|
+
* @public
|
|
666
|
+
*/
|
|
667
|
+
contentSecurityPolicy;
|
|
668
|
+
/**
|
|
669
|
+
* <p/>
|
|
670
|
+
* @public
|
|
671
|
+
*/
|
|
672
|
+
strictTransportSecurity;
|
|
673
|
+
/**
|
|
674
|
+
* <p/>
|
|
675
|
+
* @public
|
|
676
|
+
*/
|
|
677
|
+
xContentTypeOptions;
|
|
678
|
+
/**
|
|
679
|
+
* <p/>
|
|
680
|
+
* @public
|
|
681
|
+
*/
|
|
682
|
+
xFrameOptions;
|
|
683
|
+
/**
|
|
684
|
+
* <p/>
|
|
685
|
+
* @public
|
|
686
|
+
*/
|
|
687
|
+
xAmznErrorType;
|
|
408
688
|
/**
|
|
409
689
|
* <p>Request would cause a service quota to be exceeded.</p>
|
|
410
690
|
* @public
|
|
@@ -420,6 +700,14 @@ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends
|
|
|
420
700
|
...opts
|
|
421
701
|
});
|
|
422
702
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
703
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
704
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
705
|
+
this.cacheControl = opts.cacheControl;
|
|
706
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
707
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
708
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
709
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
710
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
423
711
|
this.exceptionMessage = opts.exceptionMessage;
|
|
424
712
|
}
|
|
425
713
|
};
|
|
@@ -429,6 +717,46 @@ var ValidationException = class _ValidationException extends IVSRealTimeServiceE
|
|
|
429
717
|
}
|
|
430
718
|
name = "ValidationException";
|
|
431
719
|
$fault = "client";
|
|
720
|
+
/**
|
|
721
|
+
* <p/>
|
|
722
|
+
* @public
|
|
723
|
+
*/
|
|
724
|
+
accessControlAllowOrigin;
|
|
725
|
+
/**
|
|
726
|
+
* <p/>
|
|
727
|
+
* @public
|
|
728
|
+
*/
|
|
729
|
+
accessControlExposeHeaders;
|
|
730
|
+
/**
|
|
731
|
+
* <p/>
|
|
732
|
+
* @public
|
|
733
|
+
*/
|
|
734
|
+
cacheControl;
|
|
735
|
+
/**
|
|
736
|
+
* <p/>
|
|
737
|
+
* @public
|
|
738
|
+
*/
|
|
739
|
+
contentSecurityPolicy;
|
|
740
|
+
/**
|
|
741
|
+
* <p/>
|
|
742
|
+
* @public
|
|
743
|
+
*/
|
|
744
|
+
strictTransportSecurity;
|
|
745
|
+
/**
|
|
746
|
+
* <p/>
|
|
747
|
+
* @public
|
|
748
|
+
*/
|
|
749
|
+
xContentTypeOptions;
|
|
750
|
+
/**
|
|
751
|
+
* <p/>
|
|
752
|
+
* @public
|
|
753
|
+
*/
|
|
754
|
+
xFrameOptions;
|
|
755
|
+
/**
|
|
756
|
+
* <p/>
|
|
757
|
+
* @public
|
|
758
|
+
*/
|
|
759
|
+
xAmznErrorType;
|
|
432
760
|
/**
|
|
433
761
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
434
762
|
* @public
|
|
@@ -444,6 +772,14 @@ var ValidationException = class _ValidationException extends IVSRealTimeServiceE
|
|
|
444
772
|
...opts
|
|
445
773
|
});
|
|
446
774
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
775
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
776
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
777
|
+
this.cacheControl = opts.cacheControl;
|
|
778
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
779
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
780
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
781
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
782
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
447
783
|
this.exceptionMessage = opts.exceptionMessage;
|
|
448
784
|
}
|
|
449
785
|
};
|
|
@@ -1705,7 +2041,16 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1705
2041
|
}, "de_CommandError");
|
|
1706
2042
|
var throwDefaultError = (0, import_smithy_client.withBaseException)(IVSRealTimeServiceException);
|
|
1707
2043
|
var de_AccessDeniedExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1708
|
-
const contents = (0, import_smithy_client.map)({
|
|
2044
|
+
const contents = (0, import_smithy_client.map)({
|
|
2045
|
+
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
2046
|
+
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
2047
|
+
[_cC]: [, parsedOutput.headers[_cc]],
|
|
2048
|
+
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
2049
|
+
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
2050
|
+
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
2051
|
+
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
2052
|
+
[_xAET]: [, parsedOutput.headers[_xae]]
|
|
2053
|
+
});
|
|
1709
2054
|
const data = parsedOutput.body;
|
|
1710
2055
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1711
2056
|
exceptionMessage: import_smithy_client.expectString
|
|
@@ -1718,7 +2063,16 @@ var de_AccessDeniedExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, co
|
|
|
1718
2063
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
1719
2064
|
}, "de_AccessDeniedExceptionRes");
|
|
1720
2065
|
var de_ConflictExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1721
|
-
const contents = (0, import_smithy_client.map)({
|
|
2066
|
+
const contents = (0, import_smithy_client.map)({
|
|
2067
|
+
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
2068
|
+
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
2069
|
+
[_cC]: [, parsedOutput.headers[_cc]],
|
|
2070
|
+
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
2071
|
+
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
2072
|
+
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
2073
|
+
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
2074
|
+
[_xAET]: [, parsedOutput.headers[_xae]]
|
|
2075
|
+
});
|
|
1722
2076
|
const data = parsedOutput.body;
|
|
1723
2077
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1724
2078
|
exceptionMessage: import_smithy_client.expectString
|
|
@@ -1731,7 +2085,16 @@ var de_ConflictExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, contex
|
|
|
1731
2085
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
1732
2086
|
}, "de_ConflictExceptionRes");
|
|
1733
2087
|
var de_InternalServerExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1734
|
-
const contents = (0, import_smithy_client.map)({
|
|
2088
|
+
const contents = (0, import_smithy_client.map)({
|
|
2089
|
+
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
2090
|
+
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
2091
|
+
[_cC]: [, parsedOutput.headers[_cc]],
|
|
2092
|
+
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
2093
|
+
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
2094
|
+
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
2095
|
+
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
2096
|
+
[_xAET]: [, parsedOutput.headers[_xae]]
|
|
2097
|
+
});
|
|
1735
2098
|
const data = parsedOutput.body;
|
|
1736
2099
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1737
2100
|
exceptionMessage: import_smithy_client.expectString
|
|
@@ -1744,7 +2107,16 @@ var de_InternalServerExceptionRes = /* @__PURE__ */ __name(async (parsedOutput,
|
|
|
1744
2107
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
1745
2108
|
}, "de_InternalServerExceptionRes");
|
|
1746
2109
|
var de_PendingVerificationRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1747
|
-
const contents = (0, import_smithy_client.map)({
|
|
2110
|
+
const contents = (0, import_smithy_client.map)({
|
|
2111
|
+
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
2112
|
+
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
2113
|
+
[_cC]: [, parsedOutput.headers[_cc]],
|
|
2114
|
+
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
2115
|
+
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
2116
|
+
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
2117
|
+
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
2118
|
+
[_xAET]: [, parsedOutput.headers[_xae]]
|
|
2119
|
+
});
|
|
1748
2120
|
const data = parsedOutput.body;
|
|
1749
2121
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1750
2122
|
exceptionMessage: import_smithy_client.expectString
|
|
@@ -1757,7 +2129,16 @@ var de_PendingVerificationRes = /* @__PURE__ */ __name(async (parsedOutput, cont
|
|
|
1757
2129
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
1758
2130
|
}, "de_PendingVerificationRes");
|
|
1759
2131
|
var de_ResourceNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1760
|
-
const contents = (0, import_smithy_client.map)({
|
|
2132
|
+
const contents = (0, import_smithy_client.map)({
|
|
2133
|
+
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
2134
|
+
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
2135
|
+
[_cC]: [, parsedOutput.headers[_cc]],
|
|
2136
|
+
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
2137
|
+
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
2138
|
+
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
2139
|
+
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
2140
|
+
[_xAET]: [, parsedOutput.headers[_xae]]
|
|
2141
|
+
});
|
|
1761
2142
|
const data = parsedOutput.body;
|
|
1762
2143
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1763
2144
|
exceptionMessage: import_smithy_client.expectString
|
|
@@ -1770,7 +2151,16 @@ var de_ResourceNotFoundExceptionRes = /* @__PURE__ */ __name(async (parsedOutput
|
|
|
1770
2151
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
1771
2152
|
}, "de_ResourceNotFoundExceptionRes");
|
|
1772
2153
|
var de_ServiceQuotaExceededExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1773
|
-
const contents = (0, import_smithy_client.map)({
|
|
2154
|
+
const contents = (0, import_smithy_client.map)({
|
|
2155
|
+
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
2156
|
+
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
2157
|
+
[_cC]: [, parsedOutput.headers[_cc]],
|
|
2158
|
+
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
2159
|
+
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
2160
|
+
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
2161
|
+
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
2162
|
+
[_xAET]: [, parsedOutput.headers[_xae]]
|
|
2163
|
+
});
|
|
1774
2164
|
const data = parsedOutput.body;
|
|
1775
2165
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1776
2166
|
exceptionMessage: import_smithy_client.expectString
|
|
@@ -1783,7 +2173,16 @@ var de_ServiceQuotaExceededExceptionRes = /* @__PURE__ */ __name(async (parsedOu
|
|
|
1783
2173
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body);
|
|
1784
2174
|
}, "de_ServiceQuotaExceededExceptionRes");
|
|
1785
2175
|
var de_ValidationExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
1786
|
-
const contents = (0, import_smithy_client.map)({
|
|
2176
|
+
const contents = (0, import_smithy_client.map)({
|
|
2177
|
+
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
2178
|
+
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
2179
|
+
[_cC]: [, parsedOutput.headers[_cc]],
|
|
2180
|
+
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
2181
|
+
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
2182
|
+
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
2183
|
+
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
2184
|
+
[_xAET]: [, parsedOutput.headers[_xae]]
|
|
2185
|
+
});
|
|
1787
2186
|
const data = parsedOutput.body;
|
|
1788
2187
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1789
2188
|
exceptionMessage: import_smithy_client.expectString
|
|
@@ -1972,7 +2371,23 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
|
1972
2371
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1973
2372
|
cfId: output.headers["x-amz-cf-id"]
|
|
1974
2373
|
}), "deserializeMetadata");
|
|
2374
|
+
var _aCAO = "accessControlAllowOrigin";
|
|
2375
|
+
var _aCEH = "accessControlExposeHeaders";
|
|
2376
|
+
var _acao = "access-control-allow-origin";
|
|
2377
|
+
var _aceh = "access-control-expose-headers";
|
|
2378
|
+
var _cC = "cacheControl";
|
|
2379
|
+
var _cSP = "contentSecurityPolicy";
|
|
2380
|
+
var _cc = "cache-control";
|
|
2381
|
+
var _csp = "content-security-policy";
|
|
2382
|
+
var _sTS = "strictTransportSecurity";
|
|
2383
|
+
var _sts = "strict-transport-security";
|
|
1975
2384
|
var _tK = "tagKeys";
|
|
2385
|
+
var _xAET = "xAmznErrorType";
|
|
2386
|
+
var _xCTO = "xContentTypeOptions";
|
|
2387
|
+
var _xFO = "xFrameOptions";
|
|
2388
|
+
var _xae = "x-amzn-errortype";
|
|
2389
|
+
var _xcto = "x-content-type-options";
|
|
2390
|
+
var _xfo = "x-frame-options";
|
|
1976
2391
|
|
|
1977
2392
|
// src/commands/CreateEncoderConfigurationCommand.ts
|
|
1978
2393
|
var CreateEncoderConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|