@aws-sdk/client-ivs-realtime 3.928.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.
- package/dist-cjs/index.js +1861 -1839
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/IVSRealTimeClient.js +2 -0
- package/dist-es/commands/CreateEncoderConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateIngestConfigurationCommand.js +3 -10
- package/dist-es/commands/CreateParticipantTokenCommand.js +3 -10
- package/dist-es/commands/CreateStageCommand.js +3 -10
- package/dist-es/commands/CreateStorageConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteEncoderConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteIngestConfigurationCommand.js +3 -9
- package/dist-es/commands/DeletePublicKeyCommand.js +3 -9
- package/dist-es/commands/DeleteStageCommand.js +3 -9
- package/dist-es/commands/DeleteStorageConfigurationCommand.js +3 -9
- package/dist-es/commands/DisconnectParticipantCommand.js +3 -9
- package/dist-es/commands/GetCompositionCommand.js +3 -9
- package/dist-es/commands/GetEncoderConfigurationCommand.js +3 -9
- package/dist-es/commands/GetIngestConfigurationCommand.js +3 -10
- package/dist-es/commands/GetParticipantCommand.js +3 -9
- package/dist-es/commands/GetPublicKeyCommand.js +3 -9
- package/dist-es/commands/GetStageCommand.js +3 -9
- package/dist-es/commands/GetStageSessionCommand.js +3 -9
- package/dist-es/commands/GetStorageConfigurationCommand.js +3 -9
- package/dist-es/commands/ImportPublicKeyCommand.js +3 -9
- package/dist-es/commands/ListCompositionsCommand.js +3 -9
- package/dist-es/commands/ListEncoderConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListIngestConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListParticipantEventsCommand.js +3 -9
- package/dist-es/commands/ListParticipantReplicasCommand.js +3 -9
- package/dist-es/commands/ListParticipantsCommand.js +3 -9
- package/dist-es/commands/ListPublicKeysCommand.js +3 -9
- package/dist-es/commands/ListStageSessionsCommand.js +3 -9
- package/dist-es/commands/ListStagesCommand.js +3 -9
- package/dist-es/commands/ListStorageConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartCompositionCommand.js +3 -9
- package/dist-es/commands/StartParticipantReplicationCommand.js +3 -9
- package/dist-es/commands/StopCompositionCommand.js +3 -9
- package/dist-es/commands/StopParticipantReplicationCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateIngestConfigurationCommand.js +3 -10
- package/dist-es/commands/UpdateStageCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -37
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1778 -0
- package/dist-types/IVSRealTimeClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -28
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +192 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -21
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +198 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -1512
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -353
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -473
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
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class IVSRealTimeClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class IVSRealTimeClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class IVSRealTimeServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let IVSRealTimeServiceException$1 = class IVSRealTimeServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, IVSRealTimeServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends IVSRealTimeServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends IVSRealTimeServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
accessControlAllowOrigin;
|
|
@@ -147,8 +146,8 @@ class AccessDeniedException extends IVSRealTimeServiceException {
|
|
|
147
146
|
this.xAmznErrorType = opts.xAmznErrorType;
|
|
148
147
|
this.exceptionMessage = opts.exceptionMessage;
|
|
149
148
|
}
|
|
150
|
-
}
|
|
151
|
-
class ConflictException extends IVSRealTimeServiceException {
|
|
149
|
+
};
|
|
150
|
+
let ConflictException$1 = class ConflictException extends IVSRealTimeServiceException$1 {
|
|
152
151
|
name = "ConflictException";
|
|
153
152
|
$fault = "client";
|
|
154
153
|
accessControlAllowOrigin;
|
|
@@ -177,8 +176,8 @@ class ConflictException extends IVSRealTimeServiceException {
|
|
|
177
176
|
this.xAmznErrorType = opts.xAmznErrorType;
|
|
178
177
|
this.exceptionMessage = opts.exceptionMessage;
|
|
179
178
|
}
|
|
180
|
-
}
|
|
181
|
-
class InternalServerException extends IVSRealTimeServiceException {
|
|
179
|
+
};
|
|
180
|
+
let InternalServerException$1 = class InternalServerException extends IVSRealTimeServiceException$1 {
|
|
182
181
|
name = "InternalServerException";
|
|
183
182
|
$fault = "server";
|
|
184
183
|
accessControlAllowOrigin;
|
|
@@ -207,8 +206,8 @@ class InternalServerException extends IVSRealTimeServiceException {
|
|
|
207
206
|
this.xAmznErrorType = opts.xAmznErrorType;
|
|
208
207
|
this.exceptionMessage = opts.exceptionMessage;
|
|
209
208
|
}
|
|
210
|
-
}
|
|
211
|
-
class PendingVerification extends IVSRealTimeServiceException {
|
|
209
|
+
};
|
|
210
|
+
let PendingVerification$1 = class PendingVerification extends IVSRealTimeServiceException$1 {
|
|
212
211
|
name = "PendingVerification";
|
|
213
212
|
$fault = "client";
|
|
214
213
|
accessControlAllowOrigin;
|
|
@@ -237,8 +236,8 @@ class PendingVerification extends IVSRealTimeServiceException {
|
|
|
237
236
|
this.xAmznErrorType = opts.xAmznErrorType;
|
|
238
237
|
this.exceptionMessage = opts.exceptionMessage;
|
|
239
238
|
}
|
|
240
|
-
}
|
|
241
|
-
class ResourceNotFoundException extends IVSRealTimeServiceException {
|
|
239
|
+
};
|
|
240
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends IVSRealTimeServiceException$1 {
|
|
242
241
|
name = "ResourceNotFoundException";
|
|
243
242
|
$fault = "client";
|
|
244
243
|
accessControlAllowOrigin;
|
|
@@ -267,8 +266,8 @@ class ResourceNotFoundException extends IVSRealTimeServiceException {
|
|
|
267
266
|
this.xAmznErrorType = opts.xAmznErrorType;
|
|
268
267
|
this.exceptionMessage = opts.exceptionMessage;
|
|
269
268
|
}
|
|
270
|
-
}
|
|
271
|
-
class ServiceQuotaExceededException extends IVSRealTimeServiceException {
|
|
269
|
+
};
|
|
270
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends IVSRealTimeServiceException$1 {
|
|
272
271
|
name = "ServiceQuotaExceededException";
|
|
273
272
|
$fault = "client";
|
|
274
273
|
accessControlAllowOrigin;
|
|
@@ -297,8 +296,8 @@ class ServiceQuotaExceededException extends IVSRealTimeServiceException {
|
|
|
297
296
|
this.xAmznErrorType = opts.xAmznErrorType;
|
|
298
297
|
this.exceptionMessage = opts.exceptionMessage;
|
|
299
298
|
}
|
|
300
|
-
}
|
|
301
|
-
class ValidationException extends IVSRealTimeServiceException {
|
|
299
|
+
};
|
|
300
|
+
let ValidationException$1 = class ValidationException extends IVSRealTimeServiceException$1 {
|
|
302
301
|
name = "ValidationException";
|
|
303
302
|
$fault = "client";
|
|
304
303
|
accessControlAllowOrigin;
|
|
@@ -327,7 +326,7 @@ class ValidationException extends IVSRealTimeServiceException {
|
|
|
327
326
|
this.xAmznErrorType = opts.xAmznErrorType;
|
|
328
327
|
this.exceptionMessage = opts.exceptionMessage;
|
|
329
328
|
}
|
|
330
|
-
}
|
|
329
|
+
};
|
|
331
330
|
const IngestProtocol = {
|
|
332
331
|
RTMP: "RTMP",
|
|
333
332
|
RTMPS: "RTMPS",
|
|
@@ -455,1563 +454,1783 @@ const ParticipantRecordingFilterByRecordingState = {
|
|
|
455
454
|
STOPPED: "STOPPED",
|
|
456
455
|
STOPPING: "STOPPING",
|
|
457
456
|
};
|
|
458
|
-
const IngestConfigurationFilterSensitiveLog = (obj) => ({
|
|
459
|
-
...obj,
|
|
460
|
-
...(obj.streamKey && { streamKey: smithyClient.SENSITIVE_STRING }),
|
|
461
|
-
});
|
|
462
|
-
const CreateIngestConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
463
|
-
...obj,
|
|
464
|
-
...(obj.ingestConfiguration && {
|
|
465
|
-
ingestConfiguration: IngestConfigurationFilterSensitiveLog(obj.ingestConfiguration),
|
|
466
|
-
}),
|
|
467
|
-
});
|
|
468
|
-
const ParticipantTokenFilterSensitiveLog = (obj) => ({
|
|
469
|
-
...obj,
|
|
470
|
-
...(obj.token && { token: smithyClient.SENSITIVE_STRING }),
|
|
471
|
-
});
|
|
472
|
-
const CreateParticipantTokenResponseFilterSensitiveLog = (obj) => ({
|
|
473
|
-
...obj,
|
|
474
|
-
...(obj.participantToken && { participantToken: ParticipantTokenFilterSensitiveLog(obj.participantToken) }),
|
|
475
|
-
});
|
|
476
|
-
const CreateStageResponseFilterSensitiveLog = (obj) => ({
|
|
477
|
-
...obj,
|
|
478
|
-
...(obj.participantTokens && {
|
|
479
|
-
participantTokens: obj.participantTokens.map((item) => ParticipantTokenFilterSensitiveLog(item)),
|
|
480
|
-
}),
|
|
481
|
-
});
|
|
482
|
-
const GetIngestConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
483
|
-
...obj,
|
|
484
|
-
...(obj.ingestConfiguration && {
|
|
485
|
-
ingestConfiguration: IngestConfigurationFilterSensitiveLog(obj.ingestConfiguration),
|
|
486
|
-
}),
|
|
487
|
-
});
|
|
488
|
-
const UpdateIngestConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
489
|
-
...obj,
|
|
490
|
-
...(obj.ingestConfiguration && {
|
|
491
|
-
ingestConfiguration: IngestConfigurationFilterSensitiveLog(obj.ingestConfiguration),
|
|
492
|
-
}),
|
|
493
|
-
});
|
|
494
457
|
|
|
495
|
-
const
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
const
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
const
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
const
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
const
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
const
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
const
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
const
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
const
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
const
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
const
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
const
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
const
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
const se_GetIngestConfigurationCommand = async (input, context) => {
|
|
685
|
-
const b = core.requestBuilder(input, context);
|
|
686
|
-
const headers = {
|
|
687
|
-
"content-type": "application/json",
|
|
688
|
-
};
|
|
689
|
-
b.bp("/GetIngestConfiguration");
|
|
690
|
-
let body;
|
|
691
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
692
|
-
arn: [],
|
|
693
|
-
}));
|
|
694
|
-
b.m("POST").h(headers).b(body);
|
|
695
|
-
return b.build();
|
|
696
|
-
};
|
|
697
|
-
const se_GetParticipantCommand = async (input, context) => {
|
|
698
|
-
const b = core.requestBuilder(input, context);
|
|
699
|
-
const headers = {
|
|
700
|
-
"content-type": "application/json",
|
|
701
|
-
};
|
|
702
|
-
b.bp("/GetParticipant");
|
|
703
|
-
let body;
|
|
704
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
705
|
-
participantId: [],
|
|
706
|
-
sessionId: [],
|
|
707
|
-
stageArn: [],
|
|
708
|
-
}));
|
|
709
|
-
b.m("POST").h(headers).b(body);
|
|
710
|
-
return b.build();
|
|
711
|
-
};
|
|
712
|
-
const se_GetPublicKeyCommand = async (input, context) => {
|
|
713
|
-
const b = core.requestBuilder(input, context);
|
|
714
|
-
const headers = {
|
|
715
|
-
"content-type": "application/json",
|
|
716
|
-
};
|
|
717
|
-
b.bp("/GetPublicKey");
|
|
718
|
-
let body;
|
|
719
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
720
|
-
arn: [],
|
|
721
|
-
}));
|
|
722
|
-
b.m("POST").h(headers).b(body);
|
|
723
|
-
return b.build();
|
|
724
|
-
};
|
|
725
|
-
const se_GetStageCommand = async (input, context) => {
|
|
726
|
-
const b = core.requestBuilder(input, context);
|
|
727
|
-
const headers = {
|
|
728
|
-
"content-type": "application/json",
|
|
729
|
-
};
|
|
730
|
-
b.bp("/GetStage");
|
|
731
|
-
let body;
|
|
732
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
733
|
-
arn: [],
|
|
734
|
-
}));
|
|
735
|
-
b.m("POST").h(headers).b(body);
|
|
736
|
-
return b.build();
|
|
737
|
-
};
|
|
738
|
-
const se_GetStageSessionCommand = async (input, context) => {
|
|
739
|
-
const b = core.requestBuilder(input, context);
|
|
740
|
-
const headers = {
|
|
741
|
-
"content-type": "application/json",
|
|
742
|
-
};
|
|
743
|
-
b.bp("/GetStageSession");
|
|
744
|
-
let body;
|
|
745
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
746
|
-
sessionId: [],
|
|
747
|
-
stageArn: [],
|
|
748
|
-
}));
|
|
749
|
-
b.m("POST").h(headers).b(body);
|
|
750
|
-
return b.build();
|
|
751
|
-
};
|
|
752
|
-
const se_GetStorageConfigurationCommand = async (input, context) => {
|
|
753
|
-
const b = core.requestBuilder(input, context);
|
|
754
|
-
const headers = {
|
|
755
|
-
"content-type": "application/json",
|
|
756
|
-
};
|
|
757
|
-
b.bp("/GetStorageConfiguration");
|
|
758
|
-
let body;
|
|
759
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
760
|
-
arn: [],
|
|
761
|
-
}));
|
|
762
|
-
b.m("POST").h(headers).b(body);
|
|
763
|
-
return b.build();
|
|
764
|
-
};
|
|
765
|
-
const se_ImportPublicKeyCommand = async (input, context) => {
|
|
766
|
-
const b = core.requestBuilder(input, context);
|
|
767
|
-
const headers = {
|
|
768
|
-
"content-type": "application/json",
|
|
769
|
-
};
|
|
770
|
-
b.bp("/ImportPublicKey");
|
|
771
|
-
let body;
|
|
772
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
773
|
-
name: [],
|
|
774
|
-
publicKeyMaterial: [],
|
|
775
|
-
tags: (_) => smithyClient._json(_),
|
|
776
|
-
}));
|
|
777
|
-
b.m("POST").h(headers).b(body);
|
|
778
|
-
return b.build();
|
|
779
|
-
};
|
|
780
|
-
const se_ListCompositionsCommand = async (input, context) => {
|
|
781
|
-
const b = core.requestBuilder(input, context);
|
|
782
|
-
const headers = {
|
|
783
|
-
"content-type": "application/json",
|
|
784
|
-
};
|
|
785
|
-
b.bp("/ListCompositions");
|
|
786
|
-
let body;
|
|
787
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
788
|
-
filterByEncoderConfigurationArn: [],
|
|
789
|
-
filterByStageArn: [],
|
|
790
|
-
maxResults: [],
|
|
791
|
-
nextToken: [],
|
|
792
|
-
}));
|
|
793
|
-
b.m("POST").h(headers).b(body);
|
|
794
|
-
return b.build();
|
|
795
|
-
};
|
|
796
|
-
const se_ListEncoderConfigurationsCommand = async (input, context) => {
|
|
797
|
-
const b = core.requestBuilder(input, context);
|
|
798
|
-
const headers = {
|
|
799
|
-
"content-type": "application/json",
|
|
800
|
-
};
|
|
801
|
-
b.bp("/ListEncoderConfigurations");
|
|
802
|
-
let body;
|
|
803
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
804
|
-
maxResults: [],
|
|
805
|
-
nextToken: [],
|
|
806
|
-
}));
|
|
807
|
-
b.m("POST").h(headers).b(body);
|
|
808
|
-
return b.build();
|
|
809
|
-
};
|
|
810
|
-
const se_ListIngestConfigurationsCommand = async (input, context) => {
|
|
811
|
-
const b = core.requestBuilder(input, context);
|
|
812
|
-
const headers = {
|
|
813
|
-
"content-type": "application/json",
|
|
814
|
-
};
|
|
815
|
-
b.bp("/ListIngestConfigurations");
|
|
816
|
-
let body;
|
|
817
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
818
|
-
filterByStageArn: [],
|
|
819
|
-
filterByState: [],
|
|
820
|
-
maxResults: [],
|
|
821
|
-
nextToken: [],
|
|
822
|
-
}));
|
|
823
|
-
b.m("POST").h(headers).b(body);
|
|
824
|
-
return b.build();
|
|
825
|
-
};
|
|
826
|
-
const se_ListParticipantEventsCommand = async (input, context) => {
|
|
827
|
-
const b = core.requestBuilder(input, context);
|
|
828
|
-
const headers = {
|
|
829
|
-
"content-type": "application/json",
|
|
830
|
-
};
|
|
831
|
-
b.bp("/ListParticipantEvents");
|
|
832
|
-
let body;
|
|
833
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
834
|
-
maxResults: [],
|
|
835
|
-
nextToken: [],
|
|
836
|
-
participantId: [],
|
|
837
|
-
sessionId: [],
|
|
838
|
-
stageArn: [],
|
|
839
|
-
}));
|
|
840
|
-
b.m("POST").h(headers).b(body);
|
|
841
|
-
return b.build();
|
|
842
|
-
};
|
|
843
|
-
const se_ListParticipantReplicasCommand = async (input, context) => {
|
|
844
|
-
const b = core.requestBuilder(input, context);
|
|
845
|
-
const headers = {
|
|
846
|
-
"content-type": "application/json",
|
|
847
|
-
};
|
|
848
|
-
b.bp("/ListParticipantReplicas");
|
|
849
|
-
let body;
|
|
850
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
851
|
-
maxResults: [],
|
|
852
|
-
nextToken: [],
|
|
853
|
-
participantId: [],
|
|
854
|
-
sourceStageArn: [],
|
|
855
|
-
}));
|
|
856
|
-
b.m("POST").h(headers).b(body);
|
|
857
|
-
return b.build();
|
|
858
|
-
};
|
|
859
|
-
const se_ListParticipantsCommand = async (input, context) => {
|
|
860
|
-
const b = core.requestBuilder(input, context);
|
|
861
|
-
const headers = {
|
|
862
|
-
"content-type": "application/json",
|
|
863
|
-
};
|
|
864
|
-
b.bp("/ListParticipants");
|
|
865
|
-
let body;
|
|
866
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
867
|
-
filterByPublished: [],
|
|
868
|
-
filterByRecordingState: [],
|
|
869
|
-
filterByState: [],
|
|
870
|
-
filterByUserId: [],
|
|
871
|
-
maxResults: [],
|
|
872
|
-
nextToken: [],
|
|
873
|
-
sessionId: [],
|
|
874
|
-
stageArn: [],
|
|
875
|
-
}));
|
|
876
|
-
b.m("POST").h(headers).b(body);
|
|
877
|
-
return b.build();
|
|
878
|
-
};
|
|
879
|
-
const se_ListPublicKeysCommand = async (input, context) => {
|
|
880
|
-
const b = core.requestBuilder(input, context);
|
|
881
|
-
const headers = {
|
|
882
|
-
"content-type": "application/json",
|
|
883
|
-
};
|
|
884
|
-
b.bp("/ListPublicKeys");
|
|
885
|
-
let body;
|
|
886
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
887
|
-
maxResults: [],
|
|
888
|
-
nextToken: [],
|
|
889
|
-
}));
|
|
890
|
-
b.m("POST").h(headers).b(body);
|
|
891
|
-
return b.build();
|
|
892
|
-
};
|
|
893
|
-
const se_ListStagesCommand = async (input, context) => {
|
|
894
|
-
const b = core.requestBuilder(input, context);
|
|
895
|
-
const headers = {
|
|
896
|
-
"content-type": "application/json",
|
|
897
|
-
};
|
|
898
|
-
b.bp("/ListStages");
|
|
899
|
-
let body;
|
|
900
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
901
|
-
maxResults: [],
|
|
902
|
-
nextToken: [],
|
|
903
|
-
}));
|
|
904
|
-
b.m("POST").h(headers).b(body);
|
|
905
|
-
return b.build();
|
|
906
|
-
};
|
|
907
|
-
const se_ListStageSessionsCommand = async (input, context) => {
|
|
908
|
-
const b = core.requestBuilder(input, context);
|
|
909
|
-
const headers = {
|
|
910
|
-
"content-type": "application/json",
|
|
911
|
-
};
|
|
912
|
-
b.bp("/ListStageSessions");
|
|
913
|
-
let body;
|
|
914
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
915
|
-
maxResults: [],
|
|
916
|
-
nextToken: [],
|
|
917
|
-
stageArn: [],
|
|
918
|
-
}));
|
|
919
|
-
b.m("POST").h(headers).b(body);
|
|
920
|
-
return b.build();
|
|
921
|
-
};
|
|
922
|
-
const se_ListStorageConfigurationsCommand = async (input, context) => {
|
|
923
|
-
const b = core.requestBuilder(input, context);
|
|
924
|
-
const headers = {
|
|
925
|
-
"content-type": "application/json",
|
|
926
|
-
};
|
|
927
|
-
b.bp("/ListStorageConfigurations");
|
|
928
|
-
let body;
|
|
929
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
930
|
-
maxResults: [],
|
|
931
|
-
nextToken: [],
|
|
932
|
-
}));
|
|
933
|
-
b.m("POST").h(headers).b(body);
|
|
934
|
-
return b.build();
|
|
935
|
-
};
|
|
936
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
937
|
-
const b = core.requestBuilder(input, context);
|
|
938
|
-
const headers = {};
|
|
939
|
-
b.bp("/tags/{resourceArn}");
|
|
940
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
941
|
-
let body;
|
|
942
|
-
b.m("GET").h(headers).b(body);
|
|
943
|
-
return b.build();
|
|
944
|
-
};
|
|
945
|
-
const se_StartCompositionCommand = async (input, context) => {
|
|
946
|
-
const b = core.requestBuilder(input, context);
|
|
947
|
-
const headers = {
|
|
948
|
-
"content-type": "application/json",
|
|
949
|
-
};
|
|
950
|
-
b.bp("/StartComposition");
|
|
951
|
-
let body;
|
|
952
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
953
|
-
destinations: (_) => smithyClient._json(_),
|
|
954
|
-
idempotencyToken: [true, (_) => _ ?? uuid.v4()],
|
|
955
|
-
layout: (_) => smithyClient._json(_),
|
|
956
|
-
stageArn: [],
|
|
957
|
-
tags: (_) => smithyClient._json(_),
|
|
958
|
-
}));
|
|
959
|
-
b.m("POST").h(headers).b(body);
|
|
960
|
-
return b.build();
|
|
961
|
-
};
|
|
962
|
-
const se_StartParticipantReplicationCommand = async (input, context) => {
|
|
963
|
-
const b = core.requestBuilder(input, context);
|
|
964
|
-
const headers = {
|
|
965
|
-
"content-type": "application/json",
|
|
966
|
-
};
|
|
967
|
-
b.bp("/StartParticipantReplication");
|
|
968
|
-
let body;
|
|
969
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
970
|
-
attributes: (_) => smithyClient._json(_),
|
|
971
|
-
destinationStageArn: [],
|
|
972
|
-
participantId: [],
|
|
973
|
-
reconnectWindowSeconds: [],
|
|
974
|
-
sourceStageArn: [],
|
|
975
|
-
}));
|
|
976
|
-
b.m("POST").h(headers).b(body);
|
|
977
|
-
return b.build();
|
|
978
|
-
};
|
|
979
|
-
const se_StopCompositionCommand = async (input, context) => {
|
|
980
|
-
const b = core.requestBuilder(input, context);
|
|
981
|
-
const headers = {
|
|
982
|
-
"content-type": "application/json",
|
|
983
|
-
};
|
|
984
|
-
b.bp("/StopComposition");
|
|
985
|
-
let body;
|
|
986
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
987
|
-
arn: [],
|
|
988
|
-
}));
|
|
989
|
-
b.m("POST").h(headers).b(body);
|
|
990
|
-
return b.build();
|
|
991
|
-
};
|
|
992
|
-
const se_StopParticipantReplicationCommand = async (input, context) => {
|
|
993
|
-
const b = core.requestBuilder(input, context);
|
|
994
|
-
const headers = {
|
|
995
|
-
"content-type": "application/json",
|
|
996
|
-
};
|
|
997
|
-
b.bp("/StopParticipantReplication");
|
|
998
|
-
let body;
|
|
999
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1000
|
-
destinationStageArn: [],
|
|
1001
|
-
participantId: [],
|
|
1002
|
-
sourceStageArn: [],
|
|
1003
|
-
}));
|
|
1004
|
-
b.m("POST").h(headers).b(body);
|
|
1005
|
-
return b.build();
|
|
1006
|
-
};
|
|
1007
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
1008
|
-
const b = core.requestBuilder(input, context);
|
|
1009
|
-
const headers = {
|
|
1010
|
-
"content-type": "application/json",
|
|
1011
|
-
};
|
|
1012
|
-
b.bp("/tags/{resourceArn}");
|
|
1013
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
1014
|
-
let body;
|
|
1015
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1016
|
-
tags: (_) => smithyClient._json(_),
|
|
1017
|
-
}));
|
|
1018
|
-
b.m("POST").h(headers).b(body);
|
|
1019
|
-
return b.build();
|
|
1020
|
-
};
|
|
1021
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
1022
|
-
const b = core.requestBuilder(input, context);
|
|
1023
|
-
const headers = {};
|
|
1024
|
-
b.bp("/tags/{resourceArn}");
|
|
1025
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
1026
|
-
const query = smithyClient.map({
|
|
1027
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
1028
|
-
});
|
|
1029
|
-
let body;
|
|
1030
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
1031
|
-
return b.build();
|
|
1032
|
-
};
|
|
1033
|
-
const se_UpdateIngestConfigurationCommand = async (input, context) => {
|
|
1034
|
-
const b = core.requestBuilder(input, context);
|
|
1035
|
-
const headers = {
|
|
1036
|
-
"content-type": "application/json",
|
|
1037
|
-
};
|
|
1038
|
-
b.bp("/UpdateIngestConfiguration");
|
|
1039
|
-
let body;
|
|
1040
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1041
|
-
arn: [],
|
|
1042
|
-
stageArn: [],
|
|
1043
|
-
}));
|
|
1044
|
-
b.m("POST").h(headers).b(body);
|
|
1045
|
-
return b.build();
|
|
1046
|
-
};
|
|
1047
|
-
const se_UpdateStageCommand = async (input, context) => {
|
|
1048
|
-
const b = core.requestBuilder(input, context);
|
|
1049
|
-
const headers = {
|
|
1050
|
-
"content-type": "application/json",
|
|
1051
|
-
};
|
|
1052
|
-
b.bp("/UpdateStage");
|
|
1053
|
-
let body;
|
|
1054
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
1055
|
-
arn: [],
|
|
1056
|
-
autoParticipantRecordingConfiguration: (_) => smithyClient._json(_),
|
|
1057
|
-
name: [],
|
|
1058
|
-
}));
|
|
1059
|
-
b.m("POST").h(headers).b(body);
|
|
1060
|
-
return b.build();
|
|
1061
|
-
};
|
|
1062
|
-
const de_CreateEncoderConfigurationCommand = async (output, context) => {
|
|
1063
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1064
|
-
return de_CommandError(output, context);
|
|
1065
|
-
}
|
|
1066
|
-
const contents = smithyClient.map({
|
|
1067
|
-
$metadata: deserializeMetadata(output),
|
|
1068
|
-
});
|
|
1069
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1070
|
-
const doc = smithyClient.take(data, {
|
|
1071
|
-
encoderConfiguration: (_) => de_EncoderConfiguration(_),
|
|
1072
|
-
});
|
|
1073
|
-
Object.assign(contents, doc);
|
|
1074
|
-
return contents;
|
|
1075
|
-
};
|
|
1076
|
-
const de_CreateIngestConfigurationCommand = async (output, context) => {
|
|
1077
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1078
|
-
return de_CommandError(output, context);
|
|
1079
|
-
}
|
|
1080
|
-
const contents = smithyClient.map({
|
|
1081
|
-
$metadata: deserializeMetadata(output),
|
|
1082
|
-
});
|
|
1083
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1084
|
-
const doc = smithyClient.take(data, {
|
|
1085
|
-
ingestConfiguration: smithyClient._json,
|
|
1086
|
-
});
|
|
1087
|
-
Object.assign(contents, doc);
|
|
1088
|
-
return contents;
|
|
1089
|
-
};
|
|
1090
|
-
const de_CreateParticipantTokenCommand = async (output, context) => {
|
|
1091
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1092
|
-
return de_CommandError(output, context);
|
|
1093
|
-
}
|
|
1094
|
-
const contents = smithyClient.map({
|
|
1095
|
-
$metadata: deserializeMetadata(output),
|
|
1096
|
-
});
|
|
1097
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1098
|
-
const doc = smithyClient.take(data, {
|
|
1099
|
-
participantToken: (_) => de_ParticipantToken(_),
|
|
1100
|
-
});
|
|
1101
|
-
Object.assign(contents, doc);
|
|
1102
|
-
return contents;
|
|
1103
|
-
};
|
|
1104
|
-
const de_CreateStageCommand = async (output, context) => {
|
|
1105
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1106
|
-
return de_CommandError(output, context);
|
|
1107
|
-
}
|
|
1108
|
-
const contents = smithyClient.map({
|
|
1109
|
-
$metadata: deserializeMetadata(output),
|
|
1110
|
-
});
|
|
1111
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1112
|
-
const doc = smithyClient.take(data, {
|
|
1113
|
-
participantTokens: (_) => de_ParticipantTokenList(_),
|
|
1114
|
-
stage: smithyClient._json,
|
|
1115
|
-
});
|
|
1116
|
-
Object.assign(contents, doc);
|
|
1117
|
-
return contents;
|
|
1118
|
-
};
|
|
1119
|
-
const de_CreateStorageConfigurationCommand = async (output, context) => {
|
|
1120
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1121
|
-
return de_CommandError(output, context);
|
|
1122
|
-
}
|
|
1123
|
-
const contents = smithyClient.map({
|
|
1124
|
-
$metadata: deserializeMetadata(output),
|
|
1125
|
-
});
|
|
1126
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1127
|
-
const doc = smithyClient.take(data, {
|
|
1128
|
-
storageConfiguration: smithyClient._json,
|
|
1129
|
-
});
|
|
1130
|
-
Object.assign(contents, doc);
|
|
1131
|
-
return contents;
|
|
1132
|
-
};
|
|
1133
|
-
const de_DeleteEncoderConfigurationCommand = async (output, context) => {
|
|
1134
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1135
|
-
return de_CommandError(output, context);
|
|
1136
|
-
}
|
|
1137
|
-
const contents = smithyClient.map({
|
|
1138
|
-
$metadata: deserializeMetadata(output),
|
|
1139
|
-
});
|
|
1140
|
-
await smithyClient.collectBody(output.body, context);
|
|
1141
|
-
return contents;
|
|
1142
|
-
};
|
|
1143
|
-
const de_DeleteIngestConfigurationCommand = async (output, context) => {
|
|
1144
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1145
|
-
return de_CommandError(output, context);
|
|
1146
|
-
}
|
|
1147
|
-
const contents = smithyClient.map({
|
|
1148
|
-
$metadata: deserializeMetadata(output),
|
|
1149
|
-
});
|
|
1150
|
-
await smithyClient.collectBody(output.body, context);
|
|
1151
|
-
return contents;
|
|
1152
|
-
};
|
|
1153
|
-
const de_DeletePublicKeyCommand = async (output, context) => {
|
|
1154
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1155
|
-
return de_CommandError(output, context);
|
|
1156
|
-
}
|
|
1157
|
-
const contents = smithyClient.map({
|
|
1158
|
-
$metadata: deserializeMetadata(output),
|
|
1159
|
-
});
|
|
1160
|
-
await smithyClient.collectBody(output.body, context);
|
|
1161
|
-
return contents;
|
|
1162
|
-
};
|
|
1163
|
-
const de_DeleteStageCommand = async (output, context) => {
|
|
1164
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1165
|
-
return de_CommandError(output, context);
|
|
1166
|
-
}
|
|
1167
|
-
const contents = smithyClient.map({
|
|
1168
|
-
$metadata: deserializeMetadata(output),
|
|
1169
|
-
});
|
|
1170
|
-
await smithyClient.collectBody(output.body, context);
|
|
1171
|
-
return contents;
|
|
1172
|
-
};
|
|
1173
|
-
const de_DeleteStorageConfigurationCommand = async (output, context) => {
|
|
1174
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1175
|
-
return de_CommandError(output, context);
|
|
1176
|
-
}
|
|
1177
|
-
const contents = smithyClient.map({
|
|
1178
|
-
$metadata: deserializeMetadata(output),
|
|
1179
|
-
});
|
|
1180
|
-
await smithyClient.collectBody(output.body, context);
|
|
1181
|
-
return contents;
|
|
1182
|
-
};
|
|
1183
|
-
const de_DisconnectParticipantCommand = async (output, context) => {
|
|
1184
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1185
|
-
return de_CommandError(output, context);
|
|
1186
|
-
}
|
|
1187
|
-
const contents = smithyClient.map({
|
|
1188
|
-
$metadata: deserializeMetadata(output),
|
|
1189
|
-
});
|
|
1190
|
-
await smithyClient.collectBody(output.body, context);
|
|
1191
|
-
return contents;
|
|
1192
|
-
};
|
|
1193
|
-
const de_GetCompositionCommand = async (output, context) => {
|
|
1194
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1195
|
-
return de_CommandError(output, context);
|
|
1196
|
-
}
|
|
1197
|
-
const contents = smithyClient.map({
|
|
1198
|
-
$metadata: deserializeMetadata(output),
|
|
1199
|
-
});
|
|
1200
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1201
|
-
const doc = smithyClient.take(data, {
|
|
1202
|
-
composition: (_) => de_Composition(_),
|
|
1203
|
-
});
|
|
1204
|
-
Object.assign(contents, doc);
|
|
1205
|
-
return contents;
|
|
1206
|
-
};
|
|
1207
|
-
const de_GetEncoderConfigurationCommand = async (output, context) => {
|
|
1208
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1209
|
-
return de_CommandError(output, context);
|
|
1210
|
-
}
|
|
1211
|
-
const contents = smithyClient.map({
|
|
1212
|
-
$metadata: deserializeMetadata(output),
|
|
1213
|
-
});
|
|
1214
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1215
|
-
const doc = smithyClient.take(data, {
|
|
1216
|
-
encoderConfiguration: (_) => de_EncoderConfiguration(_),
|
|
1217
|
-
});
|
|
1218
|
-
Object.assign(contents, doc);
|
|
1219
|
-
return contents;
|
|
1220
|
-
};
|
|
1221
|
-
const de_GetIngestConfigurationCommand = async (output, context) => {
|
|
1222
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1223
|
-
return de_CommandError(output, context);
|
|
1224
|
-
}
|
|
1225
|
-
const contents = smithyClient.map({
|
|
1226
|
-
$metadata: deserializeMetadata(output),
|
|
1227
|
-
});
|
|
1228
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1229
|
-
const doc = smithyClient.take(data, {
|
|
1230
|
-
ingestConfiguration: smithyClient._json,
|
|
1231
|
-
});
|
|
1232
|
-
Object.assign(contents, doc);
|
|
1233
|
-
return contents;
|
|
1234
|
-
};
|
|
1235
|
-
const de_GetParticipantCommand = async (output, context) => {
|
|
1236
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1237
|
-
return de_CommandError(output, context);
|
|
1238
|
-
}
|
|
1239
|
-
const contents = smithyClient.map({
|
|
1240
|
-
$metadata: deserializeMetadata(output),
|
|
1241
|
-
});
|
|
1242
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1243
|
-
const doc = smithyClient.take(data, {
|
|
1244
|
-
participant: (_) => de_Participant(_),
|
|
1245
|
-
});
|
|
1246
|
-
Object.assign(contents, doc);
|
|
1247
|
-
return contents;
|
|
1248
|
-
};
|
|
1249
|
-
const de_GetPublicKeyCommand = async (output, context) => {
|
|
1250
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1251
|
-
return de_CommandError(output, context);
|
|
1252
|
-
}
|
|
1253
|
-
const contents = smithyClient.map({
|
|
1254
|
-
$metadata: deserializeMetadata(output),
|
|
1255
|
-
});
|
|
1256
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1257
|
-
const doc = smithyClient.take(data, {
|
|
1258
|
-
publicKey: smithyClient._json,
|
|
1259
|
-
});
|
|
1260
|
-
Object.assign(contents, doc);
|
|
1261
|
-
return contents;
|
|
1262
|
-
};
|
|
1263
|
-
const de_GetStageCommand = async (output, context) => {
|
|
1264
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1265
|
-
return de_CommandError(output, context);
|
|
1266
|
-
}
|
|
1267
|
-
const contents = smithyClient.map({
|
|
1268
|
-
$metadata: deserializeMetadata(output),
|
|
1269
|
-
});
|
|
1270
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1271
|
-
const doc = smithyClient.take(data, {
|
|
1272
|
-
stage: smithyClient._json,
|
|
1273
|
-
});
|
|
1274
|
-
Object.assign(contents, doc);
|
|
1275
|
-
return contents;
|
|
1276
|
-
};
|
|
1277
|
-
const de_GetStageSessionCommand = async (output, context) => {
|
|
1278
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1279
|
-
return de_CommandError(output, context);
|
|
1280
|
-
}
|
|
1281
|
-
const contents = smithyClient.map({
|
|
1282
|
-
$metadata: deserializeMetadata(output),
|
|
1283
|
-
});
|
|
1284
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1285
|
-
const doc = smithyClient.take(data, {
|
|
1286
|
-
stageSession: (_) => de_StageSession(_),
|
|
1287
|
-
});
|
|
1288
|
-
Object.assign(contents, doc);
|
|
1289
|
-
return contents;
|
|
1290
|
-
};
|
|
1291
|
-
const de_GetStorageConfigurationCommand = async (output, context) => {
|
|
1292
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1293
|
-
return de_CommandError(output, context);
|
|
1294
|
-
}
|
|
1295
|
-
const contents = smithyClient.map({
|
|
1296
|
-
$metadata: deserializeMetadata(output),
|
|
1297
|
-
});
|
|
1298
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1299
|
-
const doc = smithyClient.take(data, {
|
|
1300
|
-
storageConfiguration: smithyClient._json,
|
|
1301
|
-
});
|
|
1302
|
-
Object.assign(contents, doc);
|
|
1303
|
-
return contents;
|
|
1304
|
-
};
|
|
1305
|
-
const de_ImportPublicKeyCommand = async (output, context) => {
|
|
1306
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1307
|
-
return de_CommandError(output, context);
|
|
1308
|
-
}
|
|
1309
|
-
const contents = smithyClient.map({
|
|
1310
|
-
$metadata: deserializeMetadata(output),
|
|
1311
|
-
});
|
|
1312
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1313
|
-
const doc = smithyClient.take(data, {
|
|
1314
|
-
publicKey: smithyClient._json,
|
|
1315
|
-
});
|
|
1316
|
-
Object.assign(contents, doc);
|
|
1317
|
-
return contents;
|
|
1318
|
-
};
|
|
1319
|
-
const de_ListCompositionsCommand = async (output, context) => {
|
|
1320
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1321
|
-
return de_CommandError(output, context);
|
|
1322
|
-
}
|
|
1323
|
-
const contents = smithyClient.map({
|
|
1324
|
-
$metadata: deserializeMetadata(output),
|
|
1325
|
-
});
|
|
1326
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1327
|
-
const doc = smithyClient.take(data, {
|
|
1328
|
-
compositions: (_) => de_CompositionSummaryList(_),
|
|
1329
|
-
nextToken: smithyClient.expectString,
|
|
1330
|
-
});
|
|
1331
|
-
Object.assign(contents, doc);
|
|
1332
|
-
return contents;
|
|
1333
|
-
};
|
|
1334
|
-
const de_ListEncoderConfigurationsCommand = async (output, context) => {
|
|
1335
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1336
|
-
return de_CommandError(output, context);
|
|
1337
|
-
}
|
|
1338
|
-
const contents = smithyClient.map({
|
|
1339
|
-
$metadata: deserializeMetadata(output),
|
|
1340
|
-
});
|
|
1341
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1342
|
-
const doc = smithyClient.take(data, {
|
|
1343
|
-
encoderConfigurations: smithyClient._json,
|
|
1344
|
-
nextToken: smithyClient.expectString,
|
|
1345
|
-
});
|
|
1346
|
-
Object.assign(contents, doc);
|
|
1347
|
-
return contents;
|
|
1348
|
-
};
|
|
1349
|
-
const de_ListIngestConfigurationsCommand = async (output, context) => {
|
|
1350
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1351
|
-
return de_CommandError(output, context);
|
|
1352
|
-
}
|
|
1353
|
-
const contents = smithyClient.map({
|
|
1354
|
-
$metadata: deserializeMetadata(output),
|
|
1355
|
-
});
|
|
1356
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1357
|
-
const doc = smithyClient.take(data, {
|
|
1358
|
-
ingestConfigurations: smithyClient._json,
|
|
1359
|
-
nextToken: smithyClient.expectString,
|
|
1360
|
-
});
|
|
1361
|
-
Object.assign(contents, doc);
|
|
1362
|
-
return contents;
|
|
1363
|
-
};
|
|
1364
|
-
const de_ListParticipantEventsCommand = async (output, context) => {
|
|
1365
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1366
|
-
return de_CommandError(output, context);
|
|
1367
|
-
}
|
|
1368
|
-
const contents = smithyClient.map({
|
|
1369
|
-
$metadata: deserializeMetadata(output),
|
|
1370
|
-
});
|
|
1371
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1372
|
-
const doc = smithyClient.take(data, {
|
|
1373
|
-
events: (_) => de_EventList(_),
|
|
1374
|
-
nextToken: smithyClient.expectString,
|
|
1375
|
-
});
|
|
1376
|
-
Object.assign(contents, doc);
|
|
1377
|
-
return contents;
|
|
1378
|
-
};
|
|
1379
|
-
const de_ListParticipantReplicasCommand = async (output, context) => {
|
|
1380
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1381
|
-
return de_CommandError(output, context);
|
|
1382
|
-
}
|
|
1383
|
-
const contents = smithyClient.map({
|
|
1384
|
-
$metadata: deserializeMetadata(output),
|
|
1385
|
-
});
|
|
1386
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1387
|
-
const doc = smithyClient.take(data, {
|
|
1388
|
-
nextToken: smithyClient.expectString,
|
|
1389
|
-
replicas: smithyClient._json,
|
|
1390
|
-
});
|
|
1391
|
-
Object.assign(contents, doc);
|
|
1392
|
-
return contents;
|
|
1393
|
-
};
|
|
1394
|
-
const de_ListParticipantsCommand = async (output, context) => {
|
|
1395
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1396
|
-
return de_CommandError(output, context);
|
|
1397
|
-
}
|
|
1398
|
-
const contents = smithyClient.map({
|
|
1399
|
-
$metadata: deserializeMetadata(output),
|
|
1400
|
-
});
|
|
1401
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1402
|
-
const doc = smithyClient.take(data, {
|
|
1403
|
-
nextToken: smithyClient.expectString,
|
|
1404
|
-
participants: (_) => de_ParticipantList(_),
|
|
1405
|
-
});
|
|
1406
|
-
Object.assign(contents, doc);
|
|
1407
|
-
return contents;
|
|
1408
|
-
};
|
|
1409
|
-
const de_ListPublicKeysCommand = async (output, context) => {
|
|
1410
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1411
|
-
return de_CommandError(output, context);
|
|
1412
|
-
}
|
|
1413
|
-
const contents = smithyClient.map({
|
|
1414
|
-
$metadata: deserializeMetadata(output),
|
|
1415
|
-
});
|
|
1416
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1417
|
-
const doc = smithyClient.take(data, {
|
|
1418
|
-
nextToken: smithyClient.expectString,
|
|
1419
|
-
publicKeys: smithyClient._json,
|
|
1420
|
-
});
|
|
1421
|
-
Object.assign(contents, doc);
|
|
1422
|
-
return contents;
|
|
1423
|
-
};
|
|
1424
|
-
const de_ListStagesCommand = async (output, context) => {
|
|
1425
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1426
|
-
return de_CommandError(output, context);
|
|
1427
|
-
}
|
|
1428
|
-
const contents = smithyClient.map({
|
|
1429
|
-
$metadata: deserializeMetadata(output),
|
|
1430
|
-
});
|
|
1431
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1432
|
-
const doc = smithyClient.take(data, {
|
|
1433
|
-
nextToken: smithyClient.expectString,
|
|
1434
|
-
stages: smithyClient._json,
|
|
1435
|
-
});
|
|
1436
|
-
Object.assign(contents, doc);
|
|
1437
|
-
return contents;
|
|
1438
|
-
};
|
|
1439
|
-
const de_ListStageSessionsCommand = async (output, context) => {
|
|
1440
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1441
|
-
return de_CommandError(output, context);
|
|
1442
|
-
}
|
|
1443
|
-
const contents = smithyClient.map({
|
|
1444
|
-
$metadata: deserializeMetadata(output),
|
|
1445
|
-
});
|
|
1446
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1447
|
-
const doc = smithyClient.take(data, {
|
|
1448
|
-
nextToken: smithyClient.expectString,
|
|
1449
|
-
stageSessions: (_) => de_StageSessionList(_),
|
|
1450
|
-
});
|
|
1451
|
-
Object.assign(contents, doc);
|
|
1452
|
-
return contents;
|
|
1453
|
-
};
|
|
1454
|
-
const de_ListStorageConfigurationsCommand = async (output, context) => {
|
|
1455
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1456
|
-
return de_CommandError(output, context);
|
|
1457
|
-
}
|
|
1458
|
-
const contents = smithyClient.map({
|
|
1459
|
-
$metadata: deserializeMetadata(output),
|
|
1460
|
-
});
|
|
1461
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1462
|
-
const doc = smithyClient.take(data, {
|
|
1463
|
-
nextToken: smithyClient.expectString,
|
|
1464
|
-
storageConfigurations: smithyClient._json,
|
|
1465
|
-
});
|
|
1466
|
-
Object.assign(contents, doc);
|
|
1467
|
-
return contents;
|
|
1468
|
-
};
|
|
1469
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
1470
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1471
|
-
return de_CommandError(output, context);
|
|
1472
|
-
}
|
|
1473
|
-
const contents = smithyClient.map({
|
|
1474
|
-
$metadata: deserializeMetadata(output),
|
|
1475
|
-
});
|
|
1476
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1477
|
-
const doc = smithyClient.take(data, {
|
|
1478
|
-
tags: smithyClient._json,
|
|
1479
|
-
});
|
|
1480
|
-
Object.assign(contents, doc);
|
|
1481
|
-
return contents;
|
|
1482
|
-
};
|
|
1483
|
-
const de_StartCompositionCommand = async (output, context) => {
|
|
1484
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1485
|
-
return de_CommandError(output, context);
|
|
1486
|
-
}
|
|
1487
|
-
const contents = smithyClient.map({
|
|
1488
|
-
$metadata: deserializeMetadata(output),
|
|
1489
|
-
});
|
|
1490
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1491
|
-
const doc = smithyClient.take(data, {
|
|
1492
|
-
composition: (_) => de_Composition(_),
|
|
1493
|
-
});
|
|
1494
|
-
Object.assign(contents, doc);
|
|
1495
|
-
return contents;
|
|
1496
|
-
};
|
|
1497
|
-
const de_StartParticipantReplicationCommand = async (output, context) => {
|
|
1498
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1499
|
-
return de_CommandError(output, context);
|
|
1500
|
-
}
|
|
1501
|
-
const contents = smithyClient.map({
|
|
1502
|
-
$metadata: deserializeMetadata(output),
|
|
1503
|
-
[_aCAO]: [, output.headers[_acao]],
|
|
1504
|
-
[_aCEH]: [, output.headers[_aceh]],
|
|
1505
|
-
[_cC]: [, output.headers[_cc]],
|
|
1506
|
-
[_cSP]: [, output.headers[_csp]],
|
|
1507
|
-
[_sTS]: [, output.headers[_sts]],
|
|
1508
|
-
[_xCTO]: [, output.headers[_xcto]],
|
|
1509
|
-
[_xFO]: [, output.headers[_xfo]],
|
|
1510
|
-
});
|
|
1511
|
-
await smithyClient.collectBody(output.body, context);
|
|
1512
|
-
return contents;
|
|
1513
|
-
};
|
|
1514
|
-
const de_StopCompositionCommand = async (output, context) => {
|
|
1515
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1516
|
-
return de_CommandError(output, context);
|
|
1517
|
-
}
|
|
1518
|
-
const contents = smithyClient.map({
|
|
1519
|
-
$metadata: deserializeMetadata(output),
|
|
1520
|
-
});
|
|
1521
|
-
await smithyClient.collectBody(output.body, context);
|
|
1522
|
-
return contents;
|
|
1523
|
-
};
|
|
1524
|
-
const de_StopParticipantReplicationCommand = async (output, context) => {
|
|
1525
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1526
|
-
return de_CommandError(output, context);
|
|
1527
|
-
}
|
|
1528
|
-
const contents = smithyClient.map({
|
|
1529
|
-
$metadata: deserializeMetadata(output),
|
|
1530
|
-
[_aCAO]: [, output.headers[_acao]],
|
|
1531
|
-
[_aCEH]: [, output.headers[_aceh]],
|
|
1532
|
-
[_cC]: [, output.headers[_cc]],
|
|
1533
|
-
[_cSP]: [, output.headers[_csp]],
|
|
1534
|
-
[_sTS]: [, output.headers[_sts]],
|
|
1535
|
-
[_xCTO]: [, output.headers[_xcto]],
|
|
1536
|
-
[_xFO]: [, output.headers[_xfo]],
|
|
1537
|
-
});
|
|
1538
|
-
await smithyClient.collectBody(output.body, context);
|
|
1539
|
-
return contents;
|
|
1540
|
-
};
|
|
1541
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1542
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1543
|
-
return de_CommandError(output, context);
|
|
1544
|
-
}
|
|
1545
|
-
const contents = smithyClient.map({
|
|
1546
|
-
$metadata: deserializeMetadata(output),
|
|
1547
|
-
});
|
|
1548
|
-
await smithyClient.collectBody(output.body, context);
|
|
1549
|
-
return contents;
|
|
1550
|
-
};
|
|
1551
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1552
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1553
|
-
return de_CommandError(output, context);
|
|
1554
|
-
}
|
|
1555
|
-
const contents = smithyClient.map({
|
|
1556
|
-
$metadata: deserializeMetadata(output),
|
|
1557
|
-
});
|
|
1558
|
-
await smithyClient.collectBody(output.body, context);
|
|
1559
|
-
return contents;
|
|
1560
|
-
};
|
|
1561
|
-
const de_UpdateIngestConfigurationCommand = async (output, context) => {
|
|
1562
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1563
|
-
return de_CommandError(output, context);
|
|
1564
|
-
}
|
|
1565
|
-
const contents = smithyClient.map({
|
|
1566
|
-
$metadata: deserializeMetadata(output),
|
|
1567
|
-
});
|
|
1568
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1569
|
-
const doc = smithyClient.take(data, {
|
|
1570
|
-
ingestConfiguration: smithyClient._json,
|
|
1571
|
-
});
|
|
1572
|
-
Object.assign(contents, doc);
|
|
1573
|
-
return contents;
|
|
1574
|
-
};
|
|
1575
|
-
const de_UpdateStageCommand = async (output, context) => {
|
|
1576
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1577
|
-
return de_CommandError(output, context);
|
|
1578
|
-
}
|
|
1579
|
-
const contents = smithyClient.map({
|
|
1580
|
-
$metadata: deserializeMetadata(output),
|
|
1581
|
-
});
|
|
1582
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1583
|
-
const doc = smithyClient.take(data, {
|
|
1584
|
-
stage: smithyClient._json,
|
|
1585
|
-
});
|
|
1586
|
-
Object.assign(contents, doc);
|
|
1587
|
-
return contents;
|
|
1588
|
-
};
|
|
1589
|
-
const de_CommandError = async (output, context) => {
|
|
1590
|
-
const parsedOutput = {
|
|
1591
|
-
...output,
|
|
1592
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1593
|
-
};
|
|
1594
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1595
|
-
switch (errorCode) {
|
|
1596
|
-
case "AccessDeniedException":
|
|
1597
|
-
case "com.amazonaws.ivsrealtime#AccessDeniedException":
|
|
1598
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1599
|
-
case "ConflictException":
|
|
1600
|
-
case "com.amazonaws.ivsrealtime#ConflictException":
|
|
1601
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1602
|
-
case "InternalServerException":
|
|
1603
|
-
case "com.amazonaws.ivsrealtime#InternalServerException":
|
|
1604
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1605
|
-
case "PendingVerification":
|
|
1606
|
-
case "com.amazonaws.ivsrealtime#PendingVerification":
|
|
1607
|
-
throw await de_PendingVerificationRes(parsedOutput);
|
|
1608
|
-
case "ResourceNotFoundException":
|
|
1609
|
-
case "com.amazonaws.ivsrealtime#ResourceNotFoundException":
|
|
1610
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1611
|
-
case "ServiceQuotaExceededException":
|
|
1612
|
-
case "com.amazonaws.ivsrealtime#ServiceQuotaExceededException":
|
|
1613
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1614
|
-
case "ValidationException":
|
|
1615
|
-
case "com.amazonaws.ivsrealtime#ValidationException":
|
|
1616
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1617
|
-
default:
|
|
1618
|
-
const parsedBody = parsedOutput.body;
|
|
1619
|
-
return throwDefaultError({
|
|
1620
|
-
output,
|
|
1621
|
-
parsedBody,
|
|
1622
|
-
errorCode,
|
|
1623
|
-
});
|
|
1624
|
-
}
|
|
1625
|
-
};
|
|
1626
|
-
const throwDefaultError = smithyClient.withBaseException(IVSRealTimeServiceException);
|
|
1627
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1628
|
-
const contents = smithyClient.map({
|
|
1629
|
-
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
1630
|
-
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
1631
|
-
[_cC]: [, parsedOutput.headers[_cc]],
|
|
1632
|
-
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
1633
|
-
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
1634
|
-
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
1635
|
-
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
1636
|
-
[_xAET]: [, parsedOutput.headers[_xae]],
|
|
1637
|
-
});
|
|
1638
|
-
const data = parsedOutput.body;
|
|
1639
|
-
const doc = smithyClient.take(data, {
|
|
1640
|
-
exceptionMessage: smithyClient.expectString,
|
|
1641
|
-
});
|
|
1642
|
-
Object.assign(contents, doc);
|
|
1643
|
-
const exception = new AccessDeniedException({
|
|
1644
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1645
|
-
...contents,
|
|
1646
|
-
});
|
|
1647
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1648
|
-
};
|
|
1649
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1650
|
-
const contents = smithyClient.map({
|
|
1651
|
-
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
1652
|
-
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
1653
|
-
[_cC]: [, parsedOutput.headers[_cc]],
|
|
1654
|
-
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
1655
|
-
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
1656
|
-
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
1657
|
-
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
1658
|
-
[_xAET]: [, parsedOutput.headers[_xae]],
|
|
1659
|
-
});
|
|
1660
|
-
const data = parsedOutput.body;
|
|
1661
|
-
const doc = smithyClient.take(data, {
|
|
1662
|
-
exceptionMessage: smithyClient.expectString,
|
|
1663
|
-
});
|
|
1664
|
-
Object.assign(contents, doc);
|
|
1665
|
-
const exception = new ConflictException({
|
|
1666
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1667
|
-
...contents,
|
|
1668
|
-
});
|
|
1669
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1670
|
-
};
|
|
1671
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1672
|
-
const contents = smithyClient.map({
|
|
1673
|
-
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
1674
|
-
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
1675
|
-
[_cC]: [, parsedOutput.headers[_cc]],
|
|
1676
|
-
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
1677
|
-
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
1678
|
-
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
1679
|
-
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
1680
|
-
[_xAET]: [, parsedOutput.headers[_xae]],
|
|
1681
|
-
});
|
|
1682
|
-
const data = parsedOutput.body;
|
|
1683
|
-
const doc = smithyClient.take(data, {
|
|
1684
|
-
exceptionMessage: smithyClient.expectString,
|
|
1685
|
-
});
|
|
1686
|
-
Object.assign(contents, doc);
|
|
1687
|
-
const exception = new InternalServerException({
|
|
1688
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1689
|
-
...contents,
|
|
1690
|
-
});
|
|
1691
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1692
|
-
};
|
|
1693
|
-
const de_PendingVerificationRes = async (parsedOutput, context) => {
|
|
1694
|
-
const contents = smithyClient.map({
|
|
1695
|
-
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
1696
|
-
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
1697
|
-
[_cC]: [, parsedOutput.headers[_cc]],
|
|
1698
|
-
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
1699
|
-
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
1700
|
-
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
1701
|
-
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
1702
|
-
[_xAET]: [, parsedOutput.headers[_xae]],
|
|
1703
|
-
});
|
|
1704
|
-
const data = parsedOutput.body;
|
|
1705
|
-
const doc = smithyClient.take(data, {
|
|
1706
|
-
exceptionMessage: smithyClient.expectString,
|
|
1707
|
-
});
|
|
1708
|
-
Object.assign(contents, doc);
|
|
1709
|
-
const exception = new PendingVerification({
|
|
1710
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1711
|
-
...contents,
|
|
1712
|
-
});
|
|
1713
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1714
|
-
};
|
|
1715
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1716
|
-
const contents = smithyClient.map({
|
|
1717
|
-
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
1718
|
-
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
1719
|
-
[_cC]: [, parsedOutput.headers[_cc]],
|
|
1720
|
-
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
1721
|
-
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
1722
|
-
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
1723
|
-
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
1724
|
-
[_xAET]: [, parsedOutput.headers[_xae]],
|
|
1725
|
-
});
|
|
1726
|
-
const data = parsedOutput.body;
|
|
1727
|
-
const doc = smithyClient.take(data, {
|
|
1728
|
-
exceptionMessage: smithyClient.expectString,
|
|
1729
|
-
});
|
|
1730
|
-
Object.assign(contents, doc);
|
|
1731
|
-
const exception = new ResourceNotFoundException({
|
|
1732
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1733
|
-
...contents,
|
|
1734
|
-
});
|
|
1735
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1736
|
-
};
|
|
1737
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1738
|
-
const contents = smithyClient.map({
|
|
1739
|
-
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
1740
|
-
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
1741
|
-
[_cC]: [, parsedOutput.headers[_cc]],
|
|
1742
|
-
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
1743
|
-
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
1744
|
-
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
1745
|
-
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
1746
|
-
[_xAET]: [, parsedOutput.headers[_xae]],
|
|
1747
|
-
});
|
|
1748
|
-
const data = parsedOutput.body;
|
|
1749
|
-
const doc = smithyClient.take(data, {
|
|
1750
|
-
exceptionMessage: smithyClient.expectString,
|
|
1751
|
-
});
|
|
1752
|
-
Object.assign(contents, doc);
|
|
1753
|
-
const exception = new ServiceQuotaExceededException({
|
|
1754
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1755
|
-
...contents,
|
|
1756
|
-
});
|
|
1757
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1758
|
-
};
|
|
1759
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1760
|
-
const contents = smithyClient.map({
|
|
1761
|
-
[_aCAO]: [, parsedOutput.headers[_acao]],
|
|
1762
|
-
[_aCEH]: [, parsedOutput.headers[_aceh]],
|
|
1763
|
-
[_cC]: [, parsedOutput.headers[_cc]],
|
|
1764
|
-
[_cSP]: [, parsedOutput.headers[_csp]],
|
|
1765
|
-
[_sTS]: [, parsedOutput.headers[_sts]],
|
|
1766
|
-
[_xCTO]: [, parsedOutput.headers[_xcto]],
|
|
1767
|
-
[_xFO]: [, parsedOutput.headers[_xfo]],
|
|
1768
|
-
[_xAET]: [, parsedOutput.headers[_xae]],
|
|
1769
|
-
});
|
|
1770
|
-
const data = parsedOutput.body;
|
|
1771
|
-
const doc = smithyClient.take(data, {
|
|
1772
|
-
exceptionMessage: smithyClient.expectString,
|
|
1773
|
-
});
|
|
1774
|
-
Object.assign(contents, doc);
|
|
1775
|
-
const exception = new ValidationException({
|
|
1776
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1777
|
-
...contents,
|
|
1778
|
-
});
|
|
1779
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1780
|
-
};
|
|
1781
|
-
const se_Video = (input, context) => {
|
|
1782
|
-
return smithyClient.take(input, {
|
|
1783
|
-
bitrate: [],
|
|
1784
|
-
framerate: smithyClient.serializeFloat,
|
|
1785
|
-
height: [],
|
|
1786
|
-
width: [],
|
|
1787
|
-
});
|
|
1788
|
-
};
|
|
1789
|
-
const de_Composition = (output, context) => {
|
|
1790
|
-
return smithyClient.take(output, {
|
|
1791
|
-
arn: smithyClient.expectString,
|
|
1792
|
-
destinations: (_) => de_DestinationList(_),
|
|
1793
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1794
|
-
layout: smithyClient._json,
|
|
1795
|
-
stageArn: smithyClient.expectString,
|
|
1796
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1797
|
-
state: smithyClient.expectString,
|
|
1798
|
-
tags: smithyClient._json,
|
|
1799
|
-
});
|
|
1800
|
-
};
|
|
1801
|
-
const de_CompositionSummary = (output, context) => {
|
|
1802
|
-
return smithyClient.take(output, {
|
|
1803
|
-
arn: smithyClient.expectString,
|
|
1804
|
-
destinations: (_) => de_DestinationSummaryList(_),
|
|
1805
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1806
|
-
stageArn: smithyClient.expectString,
|
|
1807
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1808
|
-
state: smithyClient.expectString,
|
|
1809
|
-
tags: smithyClient._json,
|
|
1810
|
-
});
|
|
1811
|
-
};
|
|
1812
|
-
const de_CompositionSummaryList = (output, context) => {
|
|
1813
|
-
const retVal = (output || [])
|
|
1814
|
-
.filter((e) => e != null)
|
|
1815
|
-
.map((entry) => {
|
|
1816
|
-
return de_CompositionSummary(entry);
|
|
1817
|
-
});
|
|
1818
|
-
return retVal;
|
|
1819
|
-
};
|
|
1820
|
-
const de_Destination = (output, context) => {
|
|
1821
|
-
return smithyClient.take(output, {
|
|
1822
|
-
configuration: smithyClient._json,
|
|
1823
|
-
detail: smithyClient._json,
|
|
1824
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1825
|
-
id: smithyClient.expectString,
|
|
1826
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1827
|
-
state: smithyClient.expectString,
|
|
1828
|
-
});
|
|
1829
|
-
};
|
|
1830
|
-
const de_DestinationList = (output, context) => {
|
|
1831
|
-
const retVal = (output || [])
|
|
1832
|
-
.filter((e) => e != null)
|
|
1833
|
-
.map((entry) => {
|
|
1834
|
-
return de_Destination(entry);
|
|
1835
|
-
});
|
|
1836
|
-
return retVal;
|
|
1837
|
-
};
|
|
1838
|
-
const de_DestinationSummary = (output, context) => {
|
|
1839
|
-
return smithyClient.take(output, {
|
|
1840
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1841
|
-
id: smithyClient.expectString,
|
|
1842
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1843
|
-
state: smithyClient.expectString,
|
|
1844
|
-
});
|
|
1845
|
-
};
|
|
1846
|
-
const de_DestinationSummaryList = (output, context) => {
|
|
1847
|
-
const retVal = (output || [])
|
|
1848
|
-
.filter((e) => e != null)
|
|
1849
|
-
.map((entry) => {
|
|
1850
|
-
return de_DestinationSummary(entry);
|
|
1851
|
-
});
|
|
1852
|
-
return retVal;
|
|
1853
|
-
};
|
|
1854
|
-
const de_EncoderConfiguration = (output, context) => {
|
|
1855
|
-
return smithyClient.take(output, {
|
|
1856
|
-
arn: smithyClient.expectString,
|
|
1857
|
-
name: smithyClient.expectString,
|
|
1858
|
-
tags: smithyClient._json,
|
|
1859
|
-
video: (_) => de_Video(_),
|
|
1860
|
-
});
|
|
1861
|
-
};
|
|
1862
|
-
const de_Event = (output, context) => {
|
|
1863
|
-
return smithyClient.take(output, {
|
|
1864
|
-
destinationSessionId: smithyClient.expectString,
|
|
1865
|
-
destinationStageArn: smithyClient.expectString,
|
|
1866
|
-
errorCode: smithyClient.expectString,
|
|
1867
|
-
eventTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1868
|
-
name: smithyClient.expectString,
|
|
1869
|
-
participantId: smithyClient.expectString,
|
|
1870
|
-
remoteParticipantId: smithyClient.expectString,
|
|
1871
|
-
replica: smithyClient.expectBoolean,
|
|
1872
|
-
});
|
|
1873
|
-
};
|
|
1874
|
-
const de_EventList = (output, context) => {
|
|
1875
|
-
const retVal = (output || [])
|
|
1876
|
-
.filter((e) => e != null)
|
|
1877
|
-
.map((entry) => {
|
|
1878
|
-
return de_Event(entry);
|
|
1879
|
-
});
|
|
1880
|
-
return retVal;
|
|
1881
|
-
};
|
|
1882
|
-
const de_Participant = (output, context) => {
|
|
1883
|
-
return smithyClient.take(output, {
|
|
1884
|
-
attributes: smithyClient._json,
|
|
1885
|
-
browserName: smithyClient.expectString,
|
|
1886
|
-
browserVersion: smithyClient.expectString,
|
|
1887
|
-
firstJoinTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1888
|
-
ispName: smithyClient.expectString,
|
|
1889
|
-
osName: smithyClient.expectString,
|
|
1890
|
-
osVersion: smithyClient.expectString,
|
|
1891
|
-
participantId: smithyClient.expectString,
|
|
1892
|
-
protocol: smithyClient.expectString,
|
|
1893
|
-
published: smithyClient.expectBoolean,
|
|
1894
|
-
recordingS3BucketName: smithyClient.expectString,
|
|
1895
|
-
recordingS3Prefix: smithyClient.expectString,
|
|
1896
|
-
recordingState: smithyClient.expectString,
|
|
1897
|
-
replicationState: smithyClient.expectString,
|
|
1898
|
-
replicationType: smithyClient.expectString,
|
|
1899
|
-
sdkVersion: smithyClient.expectString,
|
|
1900
|
-
sourceSessionId: smithyClient.expectString,
|
|
1901
|
-
sourceStageArn: smithyClient.expectString,
|
|
1902
|
-
state: smithyClient.expectString,
|
|
1903
|
-
userId: smithyClient.expectString,
|
|
1904
|
-
});
|
|
1905
|
-
};
|
|
1906
|
-
const de_ParticipantList = (output, context) => {
|
|
1907
|
-
const retVal = (output || [])
|
|
1908
|
-
.filter((e) => e != null)
|
|
1909
|
-
.map((entry) => {
|
|
1910
|
-
return de_ParticipantSummary(entry);
|
|
1911
|
-
});
|
|
1912
|
-
return retVal;
|
|
1913
|
-
};
|
|
1914
|
-
const de_ParticipantSummary = (output, context) => {
|
|
1915
|
-
return smithyClient.take(output, {
|
|
1916
|
-
firstJoinTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1917
|
-
participantId: smithyClient.expectString,
|
|
1918
|
-
published: smithyClient.expectBoolean,
|
|
1919
|
-
recordingState: smithyClient.expectString,
|
|
1920
|
-
replicationState: smithyClient.expectString,
|
|
1921
|
-
replicationType: smithyClient.expectString,
|
|
1922
|
-
sourceSessionId: smithyClient.expectString,
|
|
1923
|
-
sourceStageArn: smithyClient.expectString,
|
|
1924
|
-
state: smithyClient.expectString,
|
|
1925
|
-
userId: smithyClient.expectString,
|
|
1926
|
-
});
|
|
1927
|
-
};
|
|
1928
|
-
const de_ParticipantToken = (output, context) => {
|
|
1929
|
-
return smithyClient.take(output, {
|
|
1930
|
-
attributes: smithyClient._json,
|
|
1931
|
-
capabilities: smithyClient._json,
|
|
1932
|
-
duration: smithyClient.expectInt32,
|
|
1933
|
-
expirationTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1934
|
-
participantId: smithyClient.expectString,
|
|
1935
|
-
token: smithyClient.expectString,
|
|
1936
|
-
userId: smithyClient.expectString,
|
|
1937
|
-
});
|
|
1938
|
-
};
|
|
1939
|
-
const de_ParticipantTokenList = (output, context) => {
|
|
1940
|
-
const retVal = (output || [])
|
|
1941
|
-
.filter((e) => e != null)
|
|
1942
|
-
.map((entry) => {
|
|
1943
|
-
return de_ParticipantToken(entry);
|
|
1944
|
-
});
|
|
1945
|
-
return retVal;
|
|
1946
|
-
};
|
|
1947
|
-
const de_StageSession = (output, context) => {
|
|
1948
|
-
return smithyClient.take(output, {
|
|
1949
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1950
|
-
sessionId: smithyClient.expectString,
|
|
1951
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1952
|
-
});
|
|
1953
|
-
};
|
|
1954
|
-
const de_StageSessionList = (output, context) => {
|
|
1955
|
-
const retVal = (output || [])
|
|
1956
|
-
.filter((e) => e != null)
|
|
1957
|
-
.map((entry) => {
|
|
1958
|
-
return de_StageSessionSummary(entry);
|
|
1959
|
-
});
|
|
1960
|
-
return retVal;
|
|
1961
|
-
};
|
|
1962
|
-
const de_StageSessionSummary = (output, context) => {
|
|
1963
|
-
return smithyClient.take(output, {
|
|
1964
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1965
|
-
sessionId: smithyClient.expectString,
|
|
1966
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1967
|
-
});
|
|
1968
|
-
};
|
|
1969
|
-
const de_Video = (output, context) => {
|
|
1970
|
-
return smithyClient.take(output, {
|
|
1971
|
-
bitrate: smithyClient.expectInt32,
|
|
1972
|
-
framerate: smithyClient.limitedParseFloat32,
|
|
1973
|
-
height: smithyClient.expectInt32,
|
|
1974
|
-
width: smithyClient.expectInt32,
|
|
1975
|
-
});
|
|
1976
|
-
};
|
|
1977
|
-
const deserializeMetadata = (output) => ({
|
|
1978
|
-
httpStatusCode: output.statusCode,
|
|
1979
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1980
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1981
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1982
|
-
});
|
|
458
|
+
const _ACAO = "Access-Control-Allow-Origin";
|
|
459
|
+
const _ACEH = "Access-Control-Expose-Headers";
|
|
460
|
+
const _ADE = "AccessDeniedException";
|
|
461
|
+
const _APRC = "AutoParticipantRecordingConfiguration";
|
|
462
|
+
const _C = "Composition";
|
|
463
|
+
const _CC = "Cache-Control";
|
|
464
|
+
const _CDC = "ChannelDestinationConfiguration";
|
|
465
|
+
const _CE = "ConflictException";
|
|
466
|
+
const _CEC = "CreateEncoderConfiguration";
|
|
467
|
+
const _CECR = "CreateEncoderConfigurationRequest";
|
|
468
|
+
const _CECRr = "CreateEncoderConfigurationResponse";
|
|
469
|
+
const _CIC = "CreateIngestConfiguration";
|
|
470
|
+
const _CICR = "CreateIngestConfigurationRequest";
|
|
471
|
+
const _CICRr = "CreateIngestConfigurationResponse";
|
|
472
|
+
const _CPT = "CreateParticipantToken";
|
|
473
|
+
const _CPTR = "CreateParticipantTokenRequest";
|
|
474
|
+
const _CPTRr = "CreateParticipantTokenResponse";
|
|
475
|
+
const _CRHC = "CompositionRecordingHlsConfiguration";
|
|
476
|
+
const _CS = "CompositionSummary";
|
|
477
|
+
const _CSC = "CreateStorageConfiguration";
|
|
478
|
+
const _CSCR = "CreateStorageConfigurationRequest";
|
|
479
|
+
const _CSCRr = "CreateStorageConfigurationResponse";
|
|
480
|
+
const _CSL = "CompositionSummaryList";
|
|
481
|
+
const _CSP = "Content-Security-Policy";
|
|
482
|
+
const _CSR = "CreateStageRequest";
|
|
483
|
+
const _CSRr = "CreateStageResponse";
|
|
484
|
+
const _CSr = "CreateStage";
|
|
485
|
+
const _CTC = "CompositionThumbnailConfiguration";
|
|
486
|
+
const _CTCL = "CompositionThumbnailConfigurationList";
|
|
487
|
+
const _D = "Destination";
|
|
488
|
+
const _DC = "DestinationConfiguration";
|
|
489
|
+
const _DCL = "DestinationConfigurationList";
|
|
490
|
+
const _DD = "DestinationDetail";
|
|
491
|
+
const _DEC = "DeleteEncoderConfiguration";
|
|
492
|
+
const _DECR = "DeleteEncoderConfigurationRequest";
|
|
493
|
+
const _DECRe = "DeleteEncoderConfigurationResponse";
|
|
494
|
+
const _DIC = "DeleteIngestConfiguration";
|
|
495
|
+
const _DICR = "DeleteIngestConfigurationRequest";
|
|
496
|
+
const _DICRe = "DeleteIngestConfigurationResponse";
|
|
497
|
+
const _DL = "DestinationList";
|
|
498
|
+
const _DP = "DisconnectParticipant";
|
|
499
|
+
const _DPK = "DeletePublicKey";
|
|
500
|
+
const _DPKR = "DeletePublicKeyRequest";
|
|
501
|
+
const _DPKRe = "DeletePublicKeyResponse";
|
|
502
|
+
const _DPR = "DisconnectParticipantRequest";
|
|
503
|
+
const _DPRi = "DisconnectParticipantResponse";
|
|
504
|
+
const _DS = "DestinationSummary";
|
|
505
|
+
const _DSC = "DeleteStorageConfiguration";
|
|
506
|
+
const _DSCR = "DeleteStorageConfigurationRequest";
|
|
507
|
+
const _DSCRe = "DeleteStorageConfigurationResponse";
|
|
508
|
+
const _DSL = "DestinationSummaryList";
|
|
509
|
+
const _DSR = "DeleteStageRequest";
|
|
510
|
+
const _DSRe = "DeleteStageResponse";
|
|
511
|
+
const _DSe = "DeleteStage";
|
|
512
|
+
const _E = "Event";
|
|
513
|
+
const _EC = "EncoderConfiguration";
|
|
514
|
+
const _ECS = "EncoderConfigurationSummary";
|
|
515
|
+
const _ECSL = "EncoderConfigurationSummaryList";
|
|
516
|
+
const _EL = "EventList";
|
|
517
|
+
const _GC = "GridConfiguration";
|
|
518
|
+
const _GCR = "GetCompositionRequest";
|
|
519
|
+
const _GCRe = "GetCompositionResponse";
|
|
520
|
+
const _GCe = "GetComposition";
|
|
521
|
+
const _GEC = "GetEncoderConfiguration";
|
|
522
|
+
const _GECR = "GetEncoderConfigurationRequest";
|
|
523
|
+
const _GECRe = "GetEncoderConfigurationResponse";
|
|
524
|
+
const _GIC = "GetIngestConfiguration";
|
|
525
|
+
const _GICR = "GetIngestConfigurationRequest";
|
|
526
|
+
const _GICRe = "GetIngestConfigurationResponse";
|
|
527
|
+
const _GP = "GetParticipant";
|
|
528
|
+
const _GPK = "GetPublicKey";
|
|
529
|
+
const _GPKR = "GetPublicKeyRequest";
|
|
530
|
+
const _GPKRe = "GetPublicKeyResponse";
|
|
531
|
+
const _GPR = "GetParticipantRequest";
|
|
532
|
+
const _GPRe = "GetParticipantResponse";
|
|
533
|
+
const _GS = "GetStage";
|
|
534
|
+
const _GSC = "GetStorageConfiguration";
|
|
535
|
+
const _GSCR = "GetStorageConfigurationRequest";
|
|
536
|
+
const _GSCRe = "GetStorageConfigurationResponse";
|
|
537
|
+
const _GSR = "GetStageRequest";
|
|
538
|
+
const _GSRe = "GetStageResponse";
|
|
539
|
+
const _GSS = "GetStageSession";
|
|
540
|
+
const _GSSR = "GetStageSessionRequest";
|
|
541
|
+
const _GSSRe = "GetStageSessionResponse";
|
|
542
|
+
const _IC = "IngestConfiguration";
|
|
543
|
+
const _ICL = "IngestConfigurationList";
|
|
544
|
+
const _ICS = "IngestConfigurationSummary";
|
|
545
|
+
const _IPK = "ImportPublicKey";
|
|
546
|
+
const _IPKR = "ImportPublicKeyRequest";
|
|
547
|
+
const _IPKRm = "ImportPublicKeyResponse";
|
|
548
|
+
const _ISE = "InternalServerException";
|
|
549
|
+
const _LC = "LayoutConfiguration";
|
|
550
|
+
const _LCR = "ListCompositionsRequest";
|
|
551
|
+
const _LCRi = "ListCompositionsResponse";
|
|
552
|
+
const _LCi = "ListCompositions";
|
|
553
|
+
const _LEC = "ListEncoderConfigurations";
|
|
554
|
+
const _LECR = "ListEncoderConfigurationsRequest";
|
|
555
|
+
const _LECRi = "ListEncoderConfigurationsResponse";
|
|
556
|
+
const _LIC = "ListIngestConfigurations";
|
|
557
|
+
const _LICR = "ListIngestConfigurationsRequest";
|
|
558
|
+
const _LICRi = "ListIngestConfigurationsResponse";
|
|
559
|
+
const _LP = "ListParticipants";
|
|
560
|
+
const _LPE = "ListParticipantEvents";
|
|
561
|
+
const _LPER = "ListParticipantEventsRequest";
|
|
562
|
+
const _LPERi = "ListParticipantEventsResponse";
|
|
563
|
+
const _LPK = "ListPublicKeys";
|
|
564
|
+
const _LPKR = "ListPublicKeysRequest";
|
|
565
|
+
const _LPKRi = "ListPublicKeysResponse";
|
|
566
|
+
const _LPR = "ListParticipantsRequest";
|
|
567
|
+
const _LPRR = "ListParticipantReplicasRequest";
|
|
568
|
+
const _LPRRi = "ListParticipantReplicasResponse";
|
|
569
|
+
const _LPRi = "ListParticipantsResponse";
|
|
570
|
+
const _LPRis = "ListParticipantReplicas";
|
|
571
|
+
const _LS = "ListStages";
|
|
572
|
+
const _LSC = "ListStorageConfigurations";
|
|
573
|
+
const _LSCR = "ListStorageConfigurationsRequest";
|
|
574
|
+
const _LSCRi = "ListStorageConfigurationsResponse";
|
|
575
|
+
const _LSR = "ListStagesRequest";
|
|
576
|
+
const _LSRi = "ListStagesResponse";
|
|
577
|
+
const _LSS = "ListStageSessions";
|
|
578
|
+
const _LSSR = "ListStageSessionsRequest";
|
|
579
|
+
const _LSSRi = "ListStageSessionsResponse";
|
|
580
|
+
const _LTFR = "ListTagsForResource";
|
|
581
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
582
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
583
|
+
const _P = "Participant";
|
|
584
|
+
const _PC = "PipConfiguration";
|
|
585
|
+
const _PK = "PublicKey";
|
|
586
|
+
const _PKL = "PublicKeyList";
|
|
587
|
+
const _PKS = "PublicKeySummary";
|
|
588
|
+
const _PL = "ParticipantList";
|
|
589
|
+
const _PR = "ParticipantReplica";
|
|
590
|
+
const _PRHC = "ParticipantRecordingHlsConfiguration";
|
|
591
|
+
const _PRL = "ParticipantReplicaList";
|
|
592
|
+
const _PS = "ParticipantSummary";
|
|
593
|
+
const _PT = "ParticipantToken";
|
|
594
|
+
const _PTC = "ParticipantThumbnailConfiguration";
|
|
595
|
+
const _PTCa = "ParticipantTokenConfiguration";
|
|
596
|
+
const _PTCar = "ParticipantTokenConfigurations";
|
|
597
|
+
const _PTL = "ParticipantTokenList";
|
|
598
|
+
const _PTS = "ParticipantTokenString";
|
|
599
|
+
const _PV = "PendingVerification";
|
|
600
|
+
const _RC = "RecordingConfiguration";
|
|
601
|
+
const _RNFE = "ResourceNotFoundException";
|
|
602
|
+
const _S = "Stage";
|
|
603
|
+
const _SC = "StorageConfiguration";
|
|
604
|
+
const _SCR = "StartCompositionRequest";
|
|
605
|
+
const _SCRt = "StartCompositionResponse";
|
|
606
|
+
const _SCRto = "StopCompositionRequest";
|
|
607
|
+
const _SCRtop = "StopCompositionResponse";
|
|
608
|
+
const _SCS = "StorageConfigurationSummary";
|
|
609
|
+
const _SCSL = "StorageConfigurationSummaryList";
|
|
610
|
+
const _SCt = "StartComposition";
|
|
611
|
+
const _SCto = "StopComposition";
|
|
612
|
+
const _SD = "S3Detail";
|
|
613
|
+
const _SDC = "S3DestinationConfiguration";
|
|
614
|
+
const _SE = "StageEndpoints";
|
|
615
|
+
const _SK = "StreamKey";
|
|
616
|
+
const _SPR = "StartParticipantReplication";
|
|
617
|
+
const _SPRR = "StartParticipantReplicationRequest";
|
|
618
|
+
const _SPRRt = "StartParticipantReplicationResponse";
|
|
619
|
+
const _SPRRto = "StopParticipantReplicationRequest";
|
|
620
|
+
const _SPRRtop = "StopParticipantReplicationResponse";
|
|
621
|
+
const _SPRt = "StopParticipantReplication";
|
|
622
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
623
|
+
const _SS = "StageSession";
|
|
624
|
+
const _SSC = "S3StorageConfiguration";
|
|
625
|
+
const _SSL = "StageSessionList";
|
|
626
|
+
const _SSLt = "StageSummaryList";
|
|
627
|
+
const _SSS = "StageSessionSummary";
|
|
628
|
+
const _SSt = "StageSummary";
|
|
629
|
+
const _STS = "Strict-Transport-Security";
|
|
630
|
+
const _TR = "TagResource";
|
|
631
|
+
const _TRR = "TagResourceRequest";
|
|
632
|
+
const _TRRa = "TagResourceResponse";
|
|
633
|
+
const _UIC = "UpdateIngestConfiguration";
|
|
634
|
+
const _UICR = "UpdateIngestConfigurationRequest";
|
|
635
|
+
const _UICRp = "UpdateIngestConfigurationResponse";
|
|
636
|
+
const _UR = "UntagResource";
|
|
637
|
+
const _URR = "UntagResourceRequest";
|
|
638
|
+
const _URRn = "UntagResourceResponse";
|
|
639
|
+
const _US = "UpdateStage";
|
|
640
|
+
const _USR = "UpdateStageRequest";
|
|
641
|
+
const _USRp = "UpdateStageResponse";
|
|
642
|
+
const _V = "Video";
|
|
643
|
+
const _VE = "ValidationException";
|
|
644
|
+
const _XCTO = "X-Content-Type-Options";
|
|
645
|
+
const _XFO = "X-Frame-Options";
|
|
646
|
+
const _a = "arn";
|
|
1983
647
|
const _aCAO = "accessControlAllowOrigin";
|
|
1984
648
|
const _aCEH = "accessControlExposeHeaders";
|
|
1985
|
-
const
|
|
1986
|
-
const
|
|
649
|
+
const _aPRC = "autoParticipantRecordingConfiguration";
|
|
650
|
+
const _aSI = "activeSessionId";
|
|
651
|
+
const _at = "attributes";
|
|
652
|
+
const _b = "bitrate";
|
|
653
|
+
const _bN = "browserName";
|
|
654
|
+
const _bNu = "bucketName";
|
|
655
|
+
const _bV = "browserVersion";
|
|
656
|
+
const _c = "client";
|
|
657
|
+
const _cA = "channelArn";
|
|
1987
658
|
const _cC = "cacheControl";
|
|
1988
659
|
const _cSP = "contentSecurityPolicy";
|
|
1989
|
-
const
|
|
1990
|
-
const
|
|
660
|
+
const _ca = "capabilities";
|
|
661
|
+
const _ch = "channel";
|
|
662
|
+
const _co = "configuration";
|
|
663
|
+
const _com = "composition";
|
|
664
|
+
const _comp = "compositions";
|
|
665
|
+
const _d = "destinations";
|
|
666
|
+
const _dSA = "destinationStageArn";
|
|
667
|
+
const _dSI = "destinationSessionId";
|
|
668
|
+
const _de = "detail";
|
|
669
|
+
const _du = "duration";
|
|
670
|
+
const _e = "error";
|
|
671
|
+
const _eC = "encoderConfiguration";
|
|
672
|
+
const _eCA = "encoderConfigurationArn";
|
|
673
|
+
const _eCAn = "encoderConfigurationArns";
|
|
674
|
+
const _eCn = "encoderConfigurations";
|
|
675
|
+
const _eCr = "errorCode";
|
|
676
|
+
const _eM = "exceptionMessage";
|
|
677
|
+
const _eT = "endTime";
|
|
678
|
+
const _eTv = "eventTime";
|
|
679
|
+
const _eTx = "expirationTime";
|
|
680
|
+
const _en = "endpoints";
|
|
681
|
+
const _ev = "events";
|
|
682
|
+
const _f = "force";
|
|
683
|
+
const _fBECA = "filterByEncoderConfigurationArn";
|
|
684
|
+
const _fBP = "filterByPublished";
|
|
685
|
+
const _fBRS = "filterByRecordingState";
|
|
686
|
+
const _fBS = "filterByState";
|
|
687
|
+
const _fBSA = "filterByStageArn";
|
|
688
|
+
const _fBUI = "filterByUserId";
|
|
689
|
+
const _fJT = "firstJoinTime";
|
|
690
|
+
const _fPA = "featuredParticipantAttribute";
|
|
691
|
+
const _fi = "fingerprint";
|
|
692
|
+
const _fo = "format";
|
|
693
|
+
const _fr = "framerate";
|
|
694
|
+
const _g = "grid";
|
|
695
|
+
const _gG = "gridGap";
|
|
696
|
+
const _h = "height";
|
|
697
|
+
const _hC = "hlsConfiguration";
|
|
698
|
+
const _hE = "httpError";
|
|
699
|
+
const _hH = "httpHeader";
|
|
700
|
+
const _hQ = "httpQuery";
|
|
701
|
+
const _ht = "http";
|
|
702
|
+
const _i = "id";
|
|
703
|
+
const _iC = "ingestConfiguration";
|
|
704
|
+
const _iCn = "ingestConfigurations";
|
|
705
|
+
const _iI = "insecureIngest";
|
|
706
|
+
const _iN = "ispName";
|
|
707
|
+
const _iP = "ingestProtocol";
|
|
708
|
+
const _iT = "idempotencyToken";
|
|
709
|
+
const _l = "layout";
|
|
710
|
+
const _mR = "maxResults";
|
|
711
|
+
const _mT = "mediaTypes";
|
|
712
|
+
const _n = "name";
|
|
713
|
+
const _nT = "nextToken";
|
|
714
|
+
const _oN = "osName";
|
|
715
|
+
const _oSV = "omitStoppedVideo";
|
|
716
|
+
const _oV = "osVersion";
|
|
717
|
+
const _p = "participant";
|
|
718
|
+
const _pB = "pipBehavior";
|
|
719
|
+
const _pH = "pipHeight";
|
|
720
|
+
const _pI = "participantId";
|
|
721
|
+
const _pK = "publicKey";
|
|
722
|
+
const _pKM = "publicKeyMaterial";
|
|
723
|
+
const _pKu = "publicKeys";
|
|
724
|
+
const _pO = "pipOffset";
|
|
725
|
+
const _pOA = "participantOrderAttribute";
|
|
726
|
+
const _pP = "pipPosition";
|
|
727
|
+
const _pPA = "pipParticipantAttribute";
|
|
728
|
+
const _pT = "participantToken";
|
|
729
|
+
const _pTC = "participantTokenConfigurations";
|
|
730
|
+
const _pTa = "participantTokens";
|
|
731
|
+
const _pW = "pipWidth";
|
|
732
|
+
const _pa = "participants";
|
|
733
|
+
const _pi = "pip";
|
|
734
|
+
const _pr = "protocol";
|
|
735
|
+
const _pu = "published";
|
|
736
|
+
const _r = "reason";
|
|
737
|
+
const _rA = "resourceArn";
|
|
738
|
+
const _rC = "recordingConfiguration";
|
|
739
|
+
const _rM = "recordingMode";
|
|
740
|
+
const _rP = "recordingPrefix";
|
|
741
|
+
const _rPI = "remoteParticipantId";
|
|
742
|
+
const _rPR = "recordParticipantReplicas";
|
|
743
|
+
const _rRWS = "recordingReconnectWindowSeconds";
|
|
744
|
+
const _rS = "recordingState";
|
|
745
|
+
const _rSBN = "recordingS3BucketName";
|
|
746
|
+
const _rSP = "recordingS3Prefix";
|
|
747
|
+
const _rSe = "replicationState";
|
|
748
|
+
const _rT = "replicationType";
|
|
749
|
+
const _rWS = "reconnectWindowSeconds";
|
|
750
|
+
const _re = "replica";
|
|
751
|
+
const _rep = "replicas";
|
|
752
|
+
const _rt = "rtmp";
|
|
753
|
+
const _rtm = "rtmps";
|
|
754
|
+
const _s = "state";
|
|
755
|
+
const _sA = "stageArn";
|
|
756
|
+
const _sC = "storageConfiguration";
|
|
757
|
+
const _sCA = "storageConfigurationArn";
|
|
758
|
+
const _sCt = "storageConfigurations";
|
|
759
|
+
const _sI = "sessionId";
|
|
760
|
+
const _sK = "streamKey";
|
|
761
|
+
const _sS = "stageSession";
|
|
762
|
+
const _sSA = "sourceStageArn";
|
|
763
|
+
const _sSI = "sourceSessionId";
|
|
764
|
+
const _sSt = "stageSessions";
|
|
765
|
+
const _sT = "startTime";
|
|
1991
766
|
const _sTS = "strictTransportSecurity";
|
|
1992
|
-
const
|
|
767
|
+
const _sV = "sdkVersion";
|
|
768
|
+
const _s_ = "s3";
|
|
769
|
+
const _se = "server";
|
|
770
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ivsrealtime";
|
|
771
|
+
const _st = "storage";
|
|
772
|
+
const _sta = "stage";
|
|
773
|
+
const _stag = "stages";
|
|
774
|
+
const _t = "tags";
|
|
775
|
+
const _tC = "thumbnailConfiguration";
|
|
776
|
+
const _tCh = "thumbnailConfigurations";
|
|
777
|
+
const _tIS = "targetIntervalSeconds";
|
|
1993
778
|
const _tK = "tagKeys";
|
|
779
|
+
const _tSDS = "targetSegmentDurationSeconds";
|
|
780
|
+
const _to = "token";
|
|
781
|
+
const _uI = "userId";
|
|
782
|
+
const _v = "video";
|
|
783
|
+
const _vAR = "videoAspectRatio";
|
|
784
|
+
const _vFM = "videoFillMode";
|
|
785
|
+
const _w = "whip";
|
|
786
|
+
const _wi = "width";
|
|
1994
787
|
const _xAET = "xAmznErrorType";
|
|
1995
788
|
const _xCTO = "xContentTypeOptions";
|
|
1996
789
|
const _xFO = "xFrameOptions";
|
|
1997
|
-
const
|
|
1998
|
-
const
|
|
1999
|
-
|
|
790
|
+
const _xaE = "x-amzn-ErrorType";
|
|
791
|
+
const n0 = "com.amazonaws.ivsrealtime";
|
|
792
|
+
var ParticipantTokenString = [0, n0, _PTS, 8, 0];
|
|
793
|
+
var StreamKey = [0, n0, _SK, 8, 0];
|
|
794
|
+
var AccessDeniedException = [
|
|
795
|
+
-3,
|
|
796
|
+
n0,
|
|
797
|
+
_ADE,
|
|
798
|
+
{
|
|
799
|
+
[_e]: _c,
|
|
800
|
+
[_hE]: 403,
|
|
801
|
+
},
|
|
802
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
803
|
+
[
|
|
804
|
+
[
|
|
805
|
+
0,
|
|
806
|
+
{
|
|
807
|
+
[_hH]: _ACAO,
|
|
808
|
+
},
|
|
809
|
+
],
|
|
810
|
+
[
|
|
811
|
+
0,
|
|
812
|
+
{
|
|
813
|
+
[_hH]: _ACEH,
|
|
814
|
+
},
|
|
815
|
+
],
|
|
816
|
+
[
|
|
817
|
+
0,
|
|
818
|
+
{
|
|
819
|
+
[_hH]: _CC,
|
|
820
|
+
},
|
|
821
|
+
],
|
|
822
|
+
[
|
|
823
|
+
0,
|
|
824
|
+
{
|
|
825
|
+
[_hH]: _CSP,
|
|
826
|
+
},
|
|
827
|
+
],
|
|
828
|
+
[
|
|
829
|
+
0,
|
|
830
|
+
{
|
|
831
|
+
[_hH]: _STS,
|
|
832
|
+
},
|
|
833
|
+
],
|
|
834
|
+
[
|
|
835
|
+
0,
|
|
836
|
+
{
|
|
837
|
+
[_hH]: _XCTO,
|
|
838
|
+
},
|
|
839
|
+
],
|
|
840
|
+
[
|
|
841
|
+
0,
|
|
842
|
+
{
|
|
843
|
+
[_hH]: _XFO,
|
|
844
|
+
},
|
|
845
|
+
],
|
|
846
|
+
[
|
|
847
|
+
0,
|
|
848
|
+
{
|
|
849
|
+
[_hH]: _xaE,
|
|
850
|
+
},
|
|
851
|
+
],
|
|
852
|
+
0,
|
|
853
|
+
],
|
|
854
|
+
];
|
|
855
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
856
|
+
var AutoParticipantRecordingConfiguration = [
|
|
857
|
+
3,
|
|
858
|
+
n0,
|
|
859
|
+
_APRC,
|
|
860
|
+
0,
|
|
861
|
+
[_sCA, _mT, _tC, _rRWS, _hC, _rPR],
|
|
862
|
+
[0, 64 | 0, () => ParticipantThumbnailConfiguration, 1, () => ParticipantRecordingHlsConfiguration, 2],
|
|
863
|
+
];
|
|
864
|
+
var ChannelDestinationConfiguration = [3, n0, _CDC, 0, [_cA, _eCA], [0, 0]];
|
|
865
|
+
var Composition = [
|
|
866
|
+
3,
|
|
867
|
+
n0,
|
|
868
|
+
_C,
|
|
869
|
+
0,
|
|
870
|
+
[_a, _sA, _s, _l, _d, _t, _sT, _eT],
|
|
871
|
+
[0, 0, 0, () => LayoutConfiguration, () => DestinationList, 128 | 0, 5, 5],
|
|
872
|
+
];
|
|
873
|
+
var CompositionRecordingHlsConfiguration = [3, n0, _CRHC, 0, [_tSDS], [1]];
|
|
874
|
+
var CompositionSummary = [
|
|
875
|
+
3,
|
|
876
|
+
n0,
|
|
877
|
+
_CS,
|
|
878
|
+
0,
|
|
879
|
+
[_a, _sA, _d, _s, _t, _sT, _eT],
|
|
880
|
+
[0, 0, () => DestinationSummaryList, 0, 128 | 0, 5, 5],
|
|
881
|
+
];
|
|
882
|
+
var CompositionThumbnailConfiguration = [3, n0, _CTC, 0, [_tIS, _st], [1, 64 | 0]];
|
|
883
|
+
var ConflictException = [
|
|
884
|
+
-3,
|
|
885
|
+
n0,
|
|
886
|
+
_CE,
|
|
887
|
+
{
|
|
888
|
+
[_e]: _c,
|
|
889
|
+
[_hE]: 409,
|
|
890
|
+
},
|
|
891
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
892
|
+
[
|
|
893
|
+
[
|
|
894
|
+
0,
|
|
895
|
+
{
|
|
896
|
+
[_hH]: _ACAO,
|
|
897
|
+
},
|
|
898
|
+
],
|
|
899
|
+
[
|
|
900
|
+
0,
|
|
901
|
+
{
|
|
902
|
+
[_hH]: _ACEH,
|
|
903
|
+
},
|
|
904
|
+
],
|
|
905
|
+
[
|
|
906
|
+
0,
|
|
907
|
+
{
|
|
908
|
+
[_hH]: _CC,
|
|
909
|
+
},
|
|
910
|
+
],
|
|
911
|
+
[
|
|
912
|
+
0,
|
|
913
|
+
{
|
|
914
|
+
[_hH]: _CSP,
|
|
915
|
+
},
|
|
916
|
+
],
|
|
917
|
+
[
|
|
918
|
+
0,
|
|
919
|
+
{
|
|
920
|
+
[_hH]: _STS,
|
|
921
|
+
},
|
|
922
|
+
],
|
|
923
|
+
[
|
|
924
|
+
0,
|
|
925
|
+
{
|
|
926
|
+
[_hH]: _XCTO,
|
|
927
|
+
},
|
|
928
|
+
],
|
|
929
|
+
[
|
|
930
|
+
0,
|
|
931
|
+
{
|
|
932
|
+
[_hH]: _XFO,
|
|
933
|
+
},
|
|
934
|
+
],
|
|
935
|
+
[
|
|
936
|
+
0,
|
|
937
|
+
{
|
|
938
|
+
[_hH]: _xaE,
|
|
939
|
+
},
|
|
940
|
+
],
|
|
941
|
+
0,
|
|
942
|
+
],
|
|
943
|
+
];
|
|
944
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
945
|
+
var CreateEncoderConfigurationRequest = [
|
|
946
|
+
3,
|
|
947
|
+
n0,
|
|
948
|
+
_CECR,
|
|
949
|
+
0,
|
|
950
|
+
[_n, _v, _t],
|
|
951
|
+
[0, () => Video, 128 | 0],
|
|
952
|
+
];
|
|
953
|
+
var CreateEncoderConfigurationResponse = [
|
|
954
|
+
3,
|
|
955
|
+
n0,
|
|
956
|
+
_CECRr,
|
|
957
|
+
0,
|
|
958
|
+
[_eC],
|
|
959
|
+
[() => EncoderConfiguration],
|
|
960
|
+
];
|
|
961
|
+
var CreateIngestConfigurationRequest = [
|
|
962
|
+
3,
|
|
963
|
+
n0,
|
|
964
|
+
_CICR,
|
|
965
|
+
0,
|
|
966
|
+
[_n, _sA, _uI, _at, _iP, _iI, _t],
|
|
967
|
+
[0, 0, 0, 128 | 0, 0, 2, 128 | 0],
|
|
968
|
+
];
|
|
969
|
+
var CreateIngestConfigurationResponse = [
|
|
970
|
+
3,
|
|
971
|
+
n0,
|
|
972
|
+
_CICRr,
|
|
973
|
+
0,
|
|
974
|
+
[_iC],
|
|
975
|
+
[[() => IngestConfiguration, 0]],
|
|
976
|
+
];
|
|
977
|
+
var CreateParticipantTokenRequest = [
|
|
978
|
+
3,
|
|
979
|
+
n0,
|
|
980
|
+
_CPTR,
|
|
981
|
+
0,
|
|
982
|
+
[_sA, _du, _uI, _at, _ca],
|
|
983
|
+
[0, 1, 0, 128 | 0, 64 | 0],
|
|
984
|
+
];
|
|
985
|
+
var CreateParticipantTokenResponse = [
|
|
986
|
+
3,
|
|
987
|
+
n0,
|
|
988
|
+
_CPTRr,
|
|
989
|
+
0,
|
|
990
|
+
[_pT],
|
|
991
|
+
[[() => ParticipantToken, 0]],
|
|
992
|
+
];
|
|
993
|
+
var CreateStageRequest = [
|
|
994
|
+
3,
|
|
995
|
+
n0,
|
|
996
|
+
_CSR,
|
|
997
|
+
0,
|
|
998
|
+
[_n, _pTC, _t, _aPRC],
|
|
999
|
+
[0, () => ParticipantTokenConfigurations, 128 | 0, () => AutoParticipantRecordingConfiguration],
|
|
1000
|
+
];
|
|
1001
|
+
var CreateStageResponse = [
|
|
1002
|
+
3,
|
|
1003
|
+
n0,
|
|
1004
|
+
_CSRr,
|
|
1005
|
+
0,
|
|
1006
|
+
[_sta, _pTa],
|
|
1007
|
+
[() => Stage, [() => ParticipantTokenList, 0]],
|
|
1008
|
+
];
|
|
1009
|
+
var CreateStorageConfigurationRequest = [
|
|
1010
|
+
3,
|
|
1011
|
+
n0,
|
|
1012
|
+
_CSCR,
|
|
1013
|
+
0,
|
|
1014
|
+
[_n, _s_, _t],
|
|
1015
|
+
[0, () => S3StorageConfiguration, 128 | 0],
|
|
1016
|
+
];
|
|
1017
|
+
var CreateStorageConfigurationResponse = [
|
|
1018
|
+
3,
|
|
1019
|
+
n0,
|
|
1020
|
+
_CSCRr,
|
|
1021
|
+
0,
|
|
1022
|
+
[_sC],
|
|
1023
|
+
[() => StorageConfiguration],
|
|
1024
|
+
];
|
|
1025
|
+
var DeleteEncoderConfigurationRequest = [3, n0, _DECR, 0, [_a], [0]];
|
|
1026
|
+
var DeleteEncoderConfigurationResponse = [3, n0, _DECRe, 0, [], []];
|
|
1027
|
+
var DeleteIngestConfigurationRequest = [3, n0, _DICR, 0, [_a, _f], [0, 2]];
|
|
1028
|
+
var DeleteIngestConfigurationResponse = [3, n0, _DICRe, 0, [], []];
|
|
1029
|
+
var DeletePublicKeyRequest = [3, n0, _DPKR, 0, [_a], [0]];
|
|
1030
|
+
var DeletePublicKeyResponse = [3, n0, _DPKRe, 0, [], []];
|
|
1031
|
+
var DeleteStageRequest = [3, n0, _DSR, 0, [_a], [0]];
|
|
1032
|
+
var DeleteStageResponse = [3, n0, _DSRe, 0, [], []];
|
|
1033
|
+
var DeleteStorageConfigurationRequest = [3, n0, _DSCR, 0, [_a], [0]];
|
|
1034
|
+
var DeleteStorageConfigurationResponse = [3, n0, _DSCRe, 0, [], []];
|
|
1035
|
+
var Destination = [
|
|
1036
|
+
3,
|
|
1037
|
+
n0,
|
|
1038
|
+
_D,
|
|
1039
|
+
0,
|
|
1040
|
+
[_i, _s, _sT, _eT, _co, _de],
|
|
1041
|
+
[0, 0, 5, 5, () => DestinationConfiguration, () => DestinationDetail],
|
|
1042
|
+
];
|
|
1043
|
+
var DestinationConfiguration = [
|
|
1044
|
+
3,
|
|
1045
|
+
n0,
|
|
1046
|
+
_DC,
|
|
1047
|
+
0,
|
|
1048
|
+
[_n, _ch, _s_],
|
|
1049
|
+
[0, () => ChannelDestinationConfiguration, () => S3DestinationConfiguration],
|
|
1050
|
+
];
|
|
1051
|
+
var DestinationDetail = [3, n0, _DD, 0, [_s_], [() => S3Detail]];
|
|
1052
|
+
var DestinationSummary = [3, n0, _DS, 0, [_i, _s, _sT, _eT], [0, 0, 5, 5]];
|
|
1053
|
+
var DisconnectParticipantRequest = [3, n0, _DPR, 0, [_sA, _pI, _r], [0, 0, 0]];
|
|
1054
|
+
var DisconnectParticipantResponse = [3, n0, _DPRi, 0, [], []];
|
|
1055
|
+
var EncoderConfiguration = [
|
|
1056
|
+
3,
|
|
1057
|
+
n0,
|
|
1058
|
+
_EC,
|
|
1059
|
+
0,
|
|
1060
|
+
[_a, _n, _v, _t],
|
|
1061
|
+
[0, 0, () => Video, 128 | 0],
|
|
1062
|
+
];
|
|
1063
|
+
var EncoderConfigurationSummary = [3, n0, _ECS, 0, [_a, _n, _t], [0, 0, 128 | 0]];
|
|
1064
|
+
var Event = [
|
|
1065
|
+
3,
|
|
1066
|
+
n0,
|
|
1067
|
+
_E,
|
|
1068
|
+
0,
|
|
1069
|
+
[_n, _pI, _eTv, _rPI, _eCr, _dSA, _dSI, _re],
|
|
1070
|
+
[0, 0, 5, 0, 0, 0, 0, 2],
|
|
1071
|
+
];
|
|
1072
|
+
var GetCompositionRequest = [3, n0, _GCR, 0, [_a], [0]];
|
|
1073
|
+
var GetCompositionResponse = [3, n0, _GCRe, 0, [_com], [() => Composition]];
|
|
1074
|
+
var GetEncoderConfigurationRequest = [3, n0, _GECR, 0, [_a], [0]];
|
|
1075
|
+
var GetEncoderConfigurationResponse = [
|
|
1076
|
+
3,
|
|
1077
|
+
n0,
|
|
1078
|
+
_GECRe,
|
|
1079
|
+
0,
|
|
1080
|
+
[_eC],
|
|
1081
|
+
[() => EncoderConfiguration],
|
|
1082
|
+
];
|
|
1083
|
+
var GetIngestConfigurationRequest = [3, n0, _GICR, 0, [_a], [0]];
|
|
1084
|
+
var GetIngestConfigurationResponse = [
|
|
1085
|
+
3,
|
|
1086
|
+
n0,
|
|
1087
|
+
_GICRe,
|
|
1088
|
+
0,
|
|
1089
|
+
[_iC],
|
|
1090
|
+
[[() => IngestConfiguration, 0]],
|
|
1091
|
+
];
|
|
1092
|
+
var GetParticipantRequest = [3, n0, _GPR, 0, [_sA, _sI, _pI], [0, 0, 0]];
|
|
1093
|
+
var GetParticipantResponse = [3, n0, _GPRe, 0, [_p], [() => Participant]];
|
|
1094
|
+
var GetPublicKeyRequest = [3, n0, _GPKR, 0, [_a], [0]];
|
|
1095
|
+
var GetPublicKeyResponse = [3, n0, _GPKRe, 0, [_pK], [() => PublicKey]];
|
|
1096
|
+
var GetStageRequest = [3, n0, _GSR, 0, [_a], [0]];
|
|
1097
|
+
var GetStageResponse = [3, n0, _GSRe, 0, [_sta], [() => Stage]];
|
|
1098
|
+
var GetStageSessionRequest = [3, n0, _GSSR, 0, [_sA, _sI], [0, 0]];
|
|
1099
|
+
var GetStageSessionResponse = [3, n0, _GSSRe, 0, [_sS], [() => StageSession]];
|
|
1100
|
+
var GetStorageConfigurationRequest = [3, n0, _GSCR, 0, [_a], [0]];
|
|
1101
|
+
var GetStorageConfigurationResponse = [
|
|
1102
|
+
3,
|
|
1103
|
+
n0,
|
|
1104
|
+
_GSCRe,
|
|
1105
|
+
0,
|
|
1106
|
+
[_sC],
|
|
1107
|
+
[() => StorageConfiguration],
|
|
1108
|
+
];
|
|
1109
|
+
var GridConfiguration = [
|
|
1110
|
+
3,
|
|
1111
|
+
n0,
|
|
1112
|
+
_GC,
|
|
1113
|
+
0,
|
|
1114
|
+
[_fPA, _oSV, _vAR, _vFM, _gG, _pOA],
|
|
1115
|
+
[0, 2, 0, 0, 1, 0],
|
|
1116
|
+
];
|
|
1117
|
+
var ImportPublicKeyRequest = [3, n0, _IPKR, 0, [_pKM, _n, _t], [0, 0, 128 | 0]];
|
|
1118
|
+
var ImportPublicKeyResponse = [3, n0, _IPKRm, 0, [_pK], [() => PublicKey]];
|
|
1119
|
+
var IngestConfiguration = [
|
|
1120
|
+
3,
|
|
1121
|
+
n0,
|
|
1122
|
+
_IC,
|
|
1123
|
+
0,
|
|
1124
|
+
[_n, _a, _iP, _sK, _sA, _pI, _s, _uI, _at, _t],
|
|
1125
|
+
[0, 0, 0, [() => StreamKey, 0], 0, 0, 0, 0, 128 | 0, 128 | 0],
|
|
1126
|
+
];
|
|
1127
|
+
var IngestConfigurationSummary = [
|
|
1128
|
+
3,
|
|
1129
|
+
n0,
|
|
1130
|
+
_ICS,
|
|
1131
|
+
0,
|
|
1132
|
+
[_n, _a, _iP, _sA, _pI, _s, _uI],
|
|
1133
|
+
[0, 0, 0, 0, 0, 0, 0],
|
|
1134
|
+
];
|
|
1135
|
+
var InternalServerException = [
|
|
1136
|
+
-3,
|
|
1137
|
+
n0,
|
|
1138
|
+
_ISE,
|
|
1139
|
+
{
|
|
1140
|
+
[_e]: _se,
|
|
1141
|
+
[_hE]: 500,
|
|
1142
|
+
},
|
|
1143
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
1144
|
+
[
|
|
1145
|
+
[
|
|
1146
|
+
0,
|
|
1147
|
+
{
|
|
1148
|
+
[_hH]: _ACAO,
|
|
1149
|
+
},
|
|
1150
|
+
],
|
|
1151
|
+
[
|
|
1152
|
+
0,
|
|
1153
|
+
{
|
|
1154
|
+
[_hH]: _ACEH,
|
|
1155
|
+
},
|
|
1156
|
+
],
|
|
1157
|
+
[
|
|
1158
|
+
0,
|
|
1159
|
+
{
|
|
1160
|
+
[_hH]: _CC,
|
|
1161
|
+
},
|
|
1162
|
+
],
|
|
1163
|
+
[
|
|
1164
|
+
0,
|
|
1165
|
+
{
|
|
1166
|
+
[_hH]: _CSP,
|
|
1167
|
+
},
|
|
1168
|
+
],
|
|
1169
|
+
[
|
|
1170
|
+
0,
|
|
1171
|
+
{
|
|
1172
|
+
[_hH]: _STS,
|
|
1173
|
+
},
|
|
1174
|
+
],
|
|
1175
|
+
[
|
|
1176
|
+
0,
|
|
1177
|
+
{
|
|
1178
|
+
[_hH]: _XCTO,
|
|
1179
|
+
},
|
|
1180
|
+
],
|
|
1181
|
+
[
|
|
1182
|
+
0,
|
|
1183
|
+
{
|
|
1184
|
+
[_hH]: _XFO,
|
|
1185
|
+
},
|
|
1186
|
+
],
|
|
1187
|
+
[
|
|
1188
|
+
0,
|
|
1189
|
+
{
|
|
1190
|
+
[_hH]: _xaE,
|
|
1191
|
+
},
|
|
1192
|
+
],
|
|
1193
|
+
0,
|
|
1194
|
+
],
|
|
1195
|
+
];
|
|
1196
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
1197
|
+
var LayoutConfiguration = [
|
|
1198
|
+
3,
|
|
1199
|
+
n0,
|
|
1200
|
+
_LC,
|
|
1201
|
+
0,
|
|
1202
|
+
[_g, _pi],
|
|
1203
|
+
[() => GridConfiguration, () => PipConfiguration],
|
|
1204
|
+
];
|
|
1205
|
+
var ListCompositionsRequest = [3, n0, _LCR, 0, [_fBSA, _fBECA, _nT, _mR], [0, 0, 0, 1]];
|
|
1206
|
+
var ListCompositionsResponse = [
|
|
1207
|
+
3,
|
|
1208
|
+
n0,
|
|
1209
|
+
_LCRi,
|
|
1210
|
+
0,
|
|
1211
|
+
[_comp, _nT],
|
|
1212
|
+
[() => CompositionSummaryList, 0],
|
|
1213
|
+
];
|
|
1214
|
+
var ListEncoderConfigurationsRequest = [3, n0, _LECR, 0, [_nT, _mR], [0, 1]];
|
|
1215
|
+
var ListEncoderConfigurationsResponse = [
|
|
1216
|
+
3,
|
|
1217
|
+
n0,
|
|
1218
|
+
_LECRi,
|
|
1219
|
+
0,
|
|
1220
|
+
[_eCn, _nT],
|
|
1221
|
+
[() => EncoderConfigurationSummaryList, 0],
|
|
1222
|
+
];
|
|
1223
|
+
var ListIngestConfigurationsRequest = [
|
|
1224
|
+
3,
|
|
1225
|
+
n0,
|
|
1226
|
+
_LICR,
|
|
1227
|
+
0,
|
|
1228
|
+
[_fBSA, _fBS, _nT, _mR],
|
|
1229
|
+
[0, 0, 0, 1],
|
|
1230
|
+
];
|
|
1231
|
+
var ListIngestConfigurationsResponse = [
|
|
1232
|
+
3,
|
|
1233
|
+
n0,
|
|
1234
|
+
_LICRi,
|
|
1235
|
+
0,
|
|
1236
|
+
[_iCn, _nT],
|
|
1237
|
+
[() => IngestConfigurationList, 0],
|
|
1238
|
+
];
|
|
1239
|
+
var ListParticipantEventsRequest = [
|
|
1240
|
+
3,
|
|
1241
|
+
n0,
|
|
1242
|
+
_LPER,
|
|
1243
|
+
0,
|
|
1244
|
+
[_sA, _sI, _pI, _nT, _mR],
|
|
1245
|
+
[0, 0, 0, 0, 1],
|
|
1246
|
+
];
|
|
1247
|
+
var ListParticipantEventsResponse = [3, n0, _LPERi, 0, [_ev, _nT], [() => EventList, 0]];
|
|
1248
|
+
var ListParticipantReplicasRequest = [
|
|
1249
|
+
3,
|
|
1250
|
+
n0,
|
|
1251
|
+
_LPRR,
|
|
1252
|
+
0,
|
|
1253
|
+
[_sSA, _pI, _nT, _mR],
|
|
1254
|
+
[0, 0, 0, 1],
|
|
1255
|
+
];
|
|
1256
|
+
var ListParticipantReplicasResponse = [
|
|
1257
|
+
3,
|
|
1258
|
+
n0,
|
|
1259
|
+
_LPRRi,
|
|
1260
|
+
0,
|
|
1261
|
+
[_rep, _nT],
|
|
1262
|
+
[() => ParticipantReplicaList, 0],
|
|
1263
|
+
];
|
|
1264
|
+
var ListParticipantsRequest = [
|
|
1265
|
+
3,
|
|
1266
|
+
n0,
|
|
1267
|
+
_LPR,
|
|
1268
|
+
0,
|
|
1269
|
+
[_sA, _sI, _fBUI, _fBP, _fBS, _nT, _mR, _fBRS],
|
|
1270
|
+
[0, 0, 0, 2, 0, 0, 1, 0],
|
|
1271
|
+
];
|
|
1272
|
+
var ListParticipantsResponse = [3, n0, _LPRi, 0, [_pa, _nT], [() => ParticipantList, 0]];
|
|
1273
|
+
var ListPublicKeysRequest = [3, n0, _LPKR, 0, [_nT, _mR], [0, 1]];
|
|
1274
|
+
var ListPublicKeysResponse = [3, n0, _LPKRi, 0, [_pKu, _nT], [() => PublicKeyList, 0]];
|
|
1275
|
+
var ListStageSessionsRequest = [3, n0, _LSSR, 0, [_sA, _nT, _mR], [0, 0, 1]];
|
|
1276
|
+
var ListStageSessionsResponse = [
|
|
1277
|
+
3,
|
|
1278
|
+
n0,
|
|
1279
|
+
_LSSRi,
|
|
1280
|
+
0,
|
|
1281
|
+
[_sSt, _nT],
|
|
1282
|
+
[() => StageSessionList, 0],
|
|
1283
|
+
];
|
|
1284
|
+
var ListStagesRequest = [3, n0, _LSR, 0, [_nT, _mR], [0, 1]];
|
|
1285
|
+
var ListStagesResponse = [3, n0, _LSRi, 0, [_stag, _nT], [() => StageSummaryList, 0]];
|
|
1286
|
+
var ListStorageConfigurationsRequest = [3, n0, _LSCR, 0, [_nT, _mR], [0, 1]];
|
|
1287
|
+
var ListStorageConfigurationsResponse = [
|
|
1288
|
+
3,
|
|
1289
|
+
n0,
|
|
1290
|
+
_LSCRi,
|
|
1291
|
+
0,
|
|
1292
|
+
[_sCt, _nT],
|
|
1293
|
+
[() => StorageConfigurationSummaryList, 0],
|
|
1294
|
+
];
|
|
1295
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
1296
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1297
|
+
var Participant = [
|
|
1298
|
+
3,
|
|
1299
|
+
n0,
|
|
1300
|
+
_P,
|
|
1301
|
+
0,
|
|
1302
|
+
[_pI, _uI, _s, _fJT, _at, _pu, _iN, _oN, _oV, _bN, _bV, _sV, _rSBN, _rSP, _rS, _pr, _rT, _rSe, _sSA, _sSI],
|
|
1303
|
+
[0, 0, 0, 5, 128 | 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
1304
|
+
];
|
|
1305
|
+
var ParticipantRecordingHlsConfiguration = [3, n0, _PRHC, 0, [_tSDS], [1]];
|
|
1306
|
+
var ParticipantReplica = [
|
|
1307
|
+
3,
|
|
1308
|
+
n0,
|
|
1309
|
+
_PR,
|
|
1310
|
+
0,
|
|
1311
|
+
[_sSA, _pI, _sSI, _dSA, _dSI, _rSe],
|
|
1312
|
+
[0, 0, 0, 0, 0, 0],
|
|
1313
|
+
];
|
|
1314
|
+
var ParticipantSummary = [
|
|
1315
|
+
3,
|
|
1316
|
+
n0,
|
|
1317
|
+
_PS,
|
|
1318
|
+
0,
|
|
1319
|
+
[_pI, _uI, _s, _fJT, _pu, _rS, _rT, _rSe, _sSA, _sSI],
|
|
1320
|
+
[0, 0, 0, 5, 2, 0, 0, 0, 0, 0],
|
|
1321
|
+
];
|
|
1322
|
+
var ParticipantThumbnailConfiguration = [
|
|
1323
|
+
3,
|
|
1324
|
+
n0,
|
|
1325
|
+
_PTC,
|
|
1326
|
+
0,
|
|
1327
|
+
[_tIS, _st, _rM],
|
|
1328
|
+
[1, 64 | 0, 0],
|
|
1329
|
+
];
|
|
1330
|
+
var ParticipantToken = [
|
|
1331
|
+
3,
|
|
1332
|
+
n0,
|
|
1333
|
+
_PT,
|
|
1334
|
+
0,
|
|
1335
|
+
[_pI, _to, _uI, _at, _du, _ca, _eTx],
|
|
1336
|
+
[0, [() => ParticipantTokenString, 0], 0, 128 | 0, 1, 64 | 0, 5],
|
|
1337
|
+
];
|
|
1338
|
+
var ParticipantTokenConfiguration = [
|
|
1339
|
+
3,
|
|
1340
|
+
n0,
|
|
1341
|
+
_PTCa,
|
|
1342
|
+
0,
|
|
1343
|
+
[_du, _uI, _at, _ca],
|
|
1344
|
+
[1, 0, 128 | 0, 64 | 0],
|
|
1345
|
+
];
|
|
1346
|
+
var PendingVerification = [
|
|
1347
|
+
-3,
|
|
1348
|
+
n0,
|
|
1349
|
+
_PV,
|
|
1350
|
+
{
|
|
1351
|
+
[_e]: _c,
|
|
1352
|
+
[_hE]: 403,
|
|
1353
|
+
},
|
|
1354
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
1355
|
+
[
|
|
1356
|
+
[
|
|
1357
|
+
0,
|
|
1358
|
+
{
|
|
1359
|
+
[_hH]: _ACAO,
|
|
1360
|
+
},
|
|
1361
|
+
],
|
|
1362
|
+
[
|
|
1363
|
+
0,
|
|
1364
|
+
{
|
|
1365
|
+
[_hH]: _ACEH,
|
|
1366
|
+
},
|
|
1367
|
+
],
|
|
1368
|
+
[
|
|
1369
|
+
0,
|
|
1370
|
+
{
|
|
1371
|
+
[_hH]: _CC,
|
|
1372
|
+
},
|
|
1373
|
+
],
|
|
1374
|
+
[
|
|
1375
|
+
0,
|
|
1376
|
+
{
|
|
1377
|
+
[_hH]: _CSP,
|
|
1378
|
+
},
|
|
1379
|
+
],
|
|
1380
|
+
[
|
|
1381
|
+
0,
|
|
1382
|
+
{
|
|
1383
|
+
[_hH]: _STS,
|
|
1384
|
+
},
|
|
1385
|
+
],
|
|
1386
|
+
[
|
|
1387
|
+
0,
|
|
1388
|
+
{
|
|
1389
|
+
[_hH]: _XCTO,
|
|
1390
|
+
},
|
|
1391
|
+
],
|
|
1392
|
+
[
|
|
1393
|
+
0,
|
|
1394
|
+
{
|
|
1395
|
+
[_hH]: _XFO,
|
|
1396
|
+
},
|
|
1397
|
+
],
|
|
1398
|
+
[
|
|
1399
|
+
0,
|
|
1400
|
+
{
|
|
1401
|
+
[_hH]: _xaE,
|
|
1402
|
+
},
|
|
1403
|
+
],
|
|
1404
|
+
0,
|
|
1405
|
+
],
|
|
1406
|
+
];
|
|
1407
|
+
schema.TypeRegistry.for(n0).registerError(PendingVerification, PendingVerification$1);
|
|
1408
|
+
var PipConfiguration = [
|
|
1409
|
+
3,
|
|
1410
|
+
n0,
|
|
1411
|
+
_PC,
|
|
1412
|
+
0,
|
|
1413
|
+
[_fPA, _oSV, _vFM, _gG, _pPA, _pB, _pO, _pP, _pW, _pH, _pOA],
|
|
1414
|
+
[0, 2, 0, 1, 0, 0, 1, 0, 1, 1, 0],
|
|
1415
|
+
];
|
|
1416
|
+
var PublicKey = [3, n0, _PK, 0, [_a, _n, _pKM, _fi, _t], [0, 0, 0, 0, 128 | 0]];
|
|
1417
|
+
var PublicKeySummary = [3, n0, _PKS, 0, [_a, _n, _t], [0, 0, 128 | 0]];
|
|
1418
|
+
var RecordingConfiguration = [
|
|
1419
|
+
3,
|
|
1420
|
+
n0,
|
|
1421
|
+
_RC,
|
|
1422
|
+
0,
|
|
1423
|
+
[_hC, _fo],
|
|
1424
|
+
[() => CompositionRecordingHlsConfiguration, 0],
|
|
1425
|
+
];
|
|
1426
|
+
var ResourceNotFoundException = [
|
|
1427
|
+
-3,
|
|
1428
|
+
n0,
|
|
1429
|
+
_RNFE,
|
|
1430
|
+
{
|
|
1431
|
+
[_e]: _c,
|
|
1432
|
+
[_hE]: 404,
|
|
1433
|
+
},
|
|
1434
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
1435
|
+
[
|
|
1436
|
+
[
|
|
1437
|
+
0,
|
|
1438
|
+
{
|
|
1439
|
+
[_hH]: _ACAO,
|
|
1440
|
+
},
|
|
1441
|
+
],
|
|
1442
|
+
[
|
|
1443
|
+
0,
|
|
1444
|
+
{
|
|
1445
|
+
[_hH]: _ACEH,
|
|
1446
|
+
},
|
|
1447
|
+
],
|
|
1448
|
+
[
|
|
1449
|
+
0,
|
|
1450
|
+
{
|
|
1451
|
+
[_hH]: _CC,
|
|
1452
|
+
},
|
|
1453
|
+
],
|
|
1454
|
+
[
|
|
1455
|
+
0,
|
|
1456
|
+
{
|
|
1457
|
+
[_hH]: _CSP,
|
|
1458
|
+
},
|
|
1459
|
+
],
|
|
1460
|
+
[
|
|
1461
|
+
0,
|
|
1462
|
+
{
|
|
1463
|
+
[_hH]: _STS,
|
|
1464
|
+
},
|
|
1465
|
+
],
|
|
1466
|
+
[
|
|
1467
|
+
0,
|
|
1468
|
+
{
|
|
1469
|
+
[_hH]: _XCTO,
|
|
1470
|
+
},
|
|
1471
|
+
],
|
|
1472
|
+
[
|
|
1473
|
+
0,
|
|
1474
|
+
{
|
|
1475
|
+
[_hH]: _XFO,
|
|
1476
|
+
},
|
|
1477
|
+
],
|
|
1478
|
+
[
|
|
1479
|
+
0,
|
|
1480
|
+
{
|
|
1481
|
+
[_hH]: _xaE,
|
|
1482
|
+
},
|
|
1483
|
+
],
|
|
1484
|
+
0,
|
|
1485
|
+
],
|
|
1486
|
+
];
|
|
1487
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1488
|
+
var S3DestinationConfiguration = [
|
|
1489
|
+
3,
|
|
1490
|
+
n0,
|
|
1491
|
+
_SDC,
|
|
1492
|
+
0,
|
|
1493
|
+
[_sCA, _eCAn, _rC, _tCh],
|
|
1494
|
+
[0, 64 | 0, () => RecordingConfiguration, () => CompositionThumbnailConfigurationList],
|
|
1495
|
+
];
|
|
1496
|
+
var S3Detail = [3, n0, _SD, 0, [_rP], [0]];
|
|
1497
|
+
var S3StorageConfiguration = [3, n0, _SSC, 0, [_bNu], [0]];
|
|
1498
|
+
var ServiceQuotaExceededException = [
|
|
1499
|
+
-3,
|
|
1500
|
+
n0,
|
|
1501
|
+
_SQEE,
|
|
1502
|
+
{
|
|
1503
|
+
[_e]: _c,
|
|
1504
|
+
[_hE]: 402,
|
|
1505
|
+
},
|
|
1506
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
1507
|
+
[
|
|
1508
|
+
[
|
|
1509
|
+
0,
|
|
1510
|
+
{
|
|
1511
|
+
[_hH]: _ACAO,
|
|
1512
|
+
},
|
|
1513
|
+
],
|
|
1514
|
+
[
|
|
1515
|
+
0,
|
|
1516
|
+
{
|
|
1517
|
+
[_hH]: _ACEH,
|
|
1518
|
+
},
|
|
1519
|
+
],
|
|
1520
|
+
[
|
|
1521
|
+
0,
|
|
1522
|
+
{
|
|
1523
|
+
[_hH]: _CC,
|
|
1524
|
+
},
|
|
1525
|
+
],
|
|
1526
|
+
[
|
|
1527
|
+
0,
|
|
1528
|
+
{
|
|
1529
|
+
[_hH]: _CSP,
|
|
1530
|
+
},
|
|
1531
|
+
],
|
|
1532
|
+
[
|
|
1533
|
+
0,
|
|
1534
|
+
{
|
|
1535
|
+
[_hH]: _STS,
|
|
1536
|
+
},
|
|
1537
|
+
],
|
|
1538
|
+
[
|
|
1539
|
+
0,
|
|
1540
|
+
{
|
|
1541
|
+
[_hH]: _XCTO,
|
|
1542
|
+
},
|
|
1543
|
+
],
|
|
1544
|
+
[
|
|
1545
|
+
0,
|
|
1546
|
+
{
|
|
1547
|
+
[_hH]: _XFO,
|
|
1548
|
+
},
|
|
1549
|
+
],
|
|
1550
|
+
[
|
|
1551
|
+
0,
|
|
1552
|
+
{
|
|
1553
|
+
[_hH]: _xaE,
|
|
1554
|
+
},
|
|
1555
|
+
],
|
|
1556
|
+
0,
|
|
1557
|
+
],
|
|
1558
|
+
];
|
|
1559
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1560
|
+
var Stage = [
|
|
1561
|
+
3,
|
|
1562
|
+
n0,
|
|
1563
|
+
_S,
|
|
1564
|
+
0,
|
|
1565
|
+
[_a, _n, _aSI, _t, _aPRC, _en],
|
|
1566
|
+
[0, 0, 0, 128 | 0, () => AutoParticipantRecordingConfiguration, () => StageEndpoints],
|
|
1567
|
+
];
|
|
1568
|
+
var StageEndpoints = [3, n0, _SE, 0, [_ev, _w, _rt, _rtm], [0, 0, 0, 0]];
|
|
1569
|
+
var StageSession = [3, n0, _SS, 0, [_sI, _sT, _eT], [0, 5, 5]];
|
|
1570
|
+
var StageSessionSummary = [3, n0, _SSS, 0, [_sI, _sT, _eT], [0, 5, 5]];
|
|
1571
|
+
var StageSummary = [3, n0, _SSt, 0, [_a, _n, _aSI, _t], [0, 0, 0, 128 | 0]];
|
|
1572
|
+
var StartCompositionRequest = [
|
|
1573
|
+
3,
|
|
1574
|
+
n0,
|
|
1575
|
+
_SCR,
|
|
1576
|
+
0,
|
|
1577
|
+
[_sA, _iT, _l, _d, _t],
|
|
1578
|
+
[0, [0, 4], () => LayoutConfiguration, () => DestinationConfigurationList, 128 | 0],
|
|
1579
|
+
];
|
|
1580
|
+
var StartCompositionResponse = [3, n0, _SCRt, 0, [_com], [() => Composition]];
|
|
1581
|
+
var StartParticipantReplicationRequest = [
|
|
1582
|
+
3,
|
|
1583
|
+
n0,
|
|
1584
|
+
_SPRR,
|
|
1585
|
+
0,
|
|
1586
|
+
[_sSA, _dSA, _pI, _rWS, _at],
|
|
1587
|
+
[0, 0, 0, 1, 128 | 0],
|
|
1588
|
+
];
|
|
1589
|
+
var StartParticipantReplicationResponse = [
|
|
1590
|
+
3,
|
|
1591
|
+
n0,
|
|
1592
|
+
_SPRRt,
|
|
1593
|
+
0,
|
|
1594
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO],
|
|
1595
|
+
[
|
|
1596
|
+
[
|
|
1597
|
+
0,
|
|
1598
|
+
{
|
|
1599
|
+
[_hH]: _ACAO,
|
|
1600
|
+
},
|
|
1601
|
+
],
|
|
1602
|
+
[
|
|
1603
|
+
0,
|
|
1604
|
+
{
|
|
1605
|
+
[_hH]: _ACEH,
|
|
1606
|
+
},
|
|
1607
|
+
],
|
|
1608
|
+
[
|
|
1609
|
+
0,
|
|
1610
|
+
{
|
|
1611
|
+
[_hH]: _CC,
|
|
1612
|
+
},
|
|
1613
|
+
],
|
|
1614
|
+
[
|
|
1615
|
+
0,
|
|
1616
|
+
{
|
|
1617
|
+
[_hH]: _CSP,
|
|
1618
|
+
},
|
|
1619
|
+
],
|
|
1620
|
+
[
|
|
1621
|
+
0,
|
|
1622
|
+
{
|
|
1623
|
+
[_hH]: _STS,
|
|
1624
|
+
},
|
|
1625
|
+
],
|
|
1626
|
+
[
|
|
1627
|
+
0,
|
|
1628
|
+
{
|
|
1629
|
+
[_hH]: _XCTO,
|
|
1630
|
+
},
|
|
1631
|
+
],
|
|
1632
|
+
[
|
|
1633
|
+
0,
|
|
1634
|
+
{
|
|
1635
|
+
[_hH]: _XFO,
|
|
1636
|
+
},
|
|
1637
|
+
],
|
|
1638
|
+
],
|
|
1639
|
+
];
|
|
1640
|
+
var StopCompositionRequest = [3, n0, _SCRto, 0, [_a], [0]];
|
|
1641
|
+
var StopCompositionResponse = [3, n0, _SCRtop, 0, [], []];
|
|
1642
|
+
var StopParticipantReplicationRequest = [3, n0, _SPRRto, 0, [_sSA, _dSA, _pI], [0, 0, 0]];
|
|
1643
|
+
var StopParticipantReplicationResponse = [
|
|
1644
|
+
3,
|
|
1645
|
+
n0,
|
|
1646
|
+
_SPRRtop,
|
|
1647
|
+
0,
|
|
1648
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO],
|
|
1649
|
+
[
|
|
1650
|
+
[
|
|
1651
|
+
0,
|
|
1652
|
+
{
|
|
1653
|
+
[_hH]: _ACAO,
|
|
1654
|
+
},
|
|
1655
|
+
],
|
|
1656
|
+
[
|
|
1657
|
+
0,
|
|
1658
|
+
{
|
|
1659
|
+
[_hH]: _ACEH,
|
|
1660
|
+
},
|
|
1661
|
+
],
|
|
1662
|
+
[
|
|
1663
|
+
0,
|
|
1664
|
+
{
|
|
1665
|
+
[_hH]: _CC,
|
|
1666
|
+
},
|
|
1667
|
+
],
|
|
1668
|
+
[
|
|
1669
|
+
0,
|
|
1670
|
+
{
|
|
1671
|
+
[_hH]: _CSP,
|
|
1672
|
+
},
|
|
1673
|
+
],
|
|
1674
|
+
[
|
|
1675
|
+
0,
|
|
1676
|
+
{
|
|
1677
|
+
[_hH]: _STS,
|
|
1678
|
+
},
|
|
1679
|
+
],
|
|
1680
|
+
[
|
|
1681
|
+
0,
|
|
1682
|
+
{
|
|
1683
|
+
[_hH]: _XCTO,
|
|
1684
|
+
},
|
|
1685
|
+
],
|
|
1686
|
+
[
|
|
1687
|
+
0,
|
|
1688
|
+
{
|
|
1689
|
+
[_hH]: _XFO,
|
|
1690
|
+
},
|
|
1691
|
+
],
|
|
1692
|
+
],
|
|
1693
|
+
];
|
|
1694
|
+
var StorageConfiguration = [
|
|
1695
|
+
3,
|
|
1696
|
+
n0,
|
|
1697
|
+
_SC,
|
|
1698
|
+
0,
|
|
1699
|
+
[_a, _n, _s_, _t],
|
|
1700
|
+
[0, 0, () => S3StorageConfiguration, 128 | 0],
|
|
1701
|
+
];
|
|
1702
|
+
var StorageConfigurationSummary = [
|
|
1703
|
+
3,
|
|
1704
|
+
n0,
|
|
1705
|
+
_SCS,
|
|
1706
|
+
0,
|
|
1707
|
+
[_a, _n, _s_, _t],
|
|
1708
|
+
[0, 0, () => S3StorageConfiguration, 128 | 0],
|
|
1709
|
+
];
|
|
1710
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
1711
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1712
|
+
var UntagResourceRequest = [
|
|
1713
|
+
3,
|
|
1714
|
+
n0,
|
|
1715
|
+
_URR,
|
|
1716
|
+
0,
|
|
1717
|
+
[_rA, _tK],
|
|
1718
|
+
[
|
|
1719
|
+
[0, 1],
|
|
1720
|
+
[
|
|
1721
|
+
64 | 0,
|
|
1722
|
+
{
|
|
1723
|
+
[_hQ]: _tK,
|
|
1724
|
+
},
|
|
1725
|
+
],
|
|
1726
|
+
],
|
|
1727
|
+
];
|
|
1728
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1729
|
+
var UpdateIngestConfigurationRequest = [3, n0, _UICR, 0, [_a, _sA], [0, 0]];
|
|
1730
|
+
var UpdateIngestConfigurationResponse = [
|
|
1731
|
+
3,
|
|
1732
|
+
n0,
|
|
1733
|
+
_UICRp,
|
|
1734
|
+
0,
|
|
1735
|
+
[_iC],
|
|
1736
|
+
[[() => IngestConfiguration, 0]],
|
|
1737
|
+
];
|
|
1738
|
+
var UpdateStageRequest = [
|
|
1739
|
+
3,
|
|
1740
|
+
n0,
|
|
1741
|
+
_USR,
|
|
1742
|
+
0,
|
|
1743
|
+
[_a, _n, _aPRC],
|
|
1744
|
+
[0, 0, () => AutoParticipantRecordingConfiguration],
|
|
1745
|
+
];
|
|
1746
|
+
var UpdateStageResponse = [3, n0, _USRp, 0, [_sta], [() => Stage]];
|
|
1747
|
+
var ValidationException = [
|
|
1748
|
+
-3,
|
|
1749
|
+
n0,
|
|
1750
|
+
_VE,
|
|
1751
|
+
{
|
|
1752
|
+
[_e]: _c,
|
|
1753
|
+
[_hE]: 400,
|
|
1754
|
+
},
|
|
1755
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
1756
|
+
[
|
|
1757
|
+
[
|
|
1758
|
+
0,
|
|
1759
|
+
{
|
|
1760
|
+
[_hH]: _ACAO,
|
|
1761
|
+
},
|
|
1762
|
+
],
|
|
1763
|
+
[
|
|
1764
|
+
0,
|
|
1765
|
+
{
|
|
1766
|
+
[_hH]: _ACEH,
|
|
1767
|
+
},
|
|
1768
|
+
],
|
|
1769
|
+
[
|
|
1770
|
+
0,
|
|
1771
|
+
{
|
|
1772
|
+
[_hH]: _CC,
|
|
1773
|
+
},
|
|
1774
|
+
],
|
|
1775
|
+
[
|
|
1776
|
+
0,
|
|
1777
|
+
{
|
|
1778
|
+
[_hH]: _CSP,
|
|
1779
|
+
},
|
|
1780
|
+
],
|
|
1781
|
+
[
|
|
1782
|
+
0,
|
|
1783
|
+
{
|
|
1784
|
+
[_hH]: _STS,
|
|
1785
|
+
},
|
|
1786
|
+
],
|
|
1787
|
+
[
|
|
1788
|
+
0,
|
|
1789
|
+
{
|
|
1790
|
+
[_hH]: _XCTO,
|
|
1791
|
+
},
|
|
1792
|
+
],
|
|
1793
|
+
[
|
|
1794
|
+
0,
|
|
1795
|
+
{
|
|
1796
|
+
[_hH]: _XFO,
|
|
1797
|
+
},
|
|
1798
|
+
],
|
|
1799
|
+
[
|
|
1800
|
+
0,
|
|
1801
|
+
{
|
|
1802
|
+
[_hH]: _xaE,
|
|
1803
|
+
},
|
|
1804
|
+
],
|
|
1805
|
+
0,
|
|
1806
|
+
],
|
|
1807
|
+
];
|
|
1808
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1809
|
+
var Video = [3, n0, _V, 0, [_wi, _h, _fr, _b], [1, 1, 1, 1]];
|
|
1810
|
+
var IVSRealTimeServiceException = [-3, _sm, "IVSRealTimeServiceException", 0, [], []];
|
|
1811
|
+
schema.TypeRegistry.for(_sm).registerError(IVSRealTimeServiceException, IVSRealTimeServiceException$1);
|
|
1812
|
+
var CompositionSummaryList = [1, n0, _CSL, 0, () => CompositionSummary];
|
|
1813
|
+
var CompositionThumbnailConfigurationList = [
|
|
1814
|
+
1,
|
|
1815
|
+
n0,
|
|
1816
|
+
_CTCL,
|
|
1817
|
+
0,
|
|
1818
|
+
() => CompositionThumbnailConfiguration,
|
|
1819
|
+
];
|
|
1820
|
+
var DestinationConfigurationList = [1, n0, _DCL, 0, () => DestinationConfiguration];
|
|
1821
|
+
var DestinationList = [1, n0, _DL, 0, () => Destination];
|
|
1822
|
+
var DestinationSummaryList = [1, n0, _DSL, 0, () => DestinationSummary];
|
|
1823
|
+
var EncoderConfigurationSummaryList = [1, n0, _ECSL, 0, () => EncoderConfigurationSummary];
|
|
1824
|
+
var EventList = [1, n0, _EL, 0, () => Event];
|
|
1825
|
+
var IngestConfigurationList = [1, n0, _ICL, 0, () => IngestConfigurationSummary];
|
|
1826
|
+
var ParticipantList = [1, n0, _PL, 0, () => ParticipantSummary];
|
|
1827
|
+
var ParticipantReplicaList = [1, n0, _PRL, 0, () => ParticipantReplica];
|
|
1828
|
+
var ParticipantTokenConfigurations = [1, n0, _PTCar, 0, () => ParticipantTokenConfiguration];
|
|
1829
|
+
var ParticipantTokenList = [1, n0, _PTL, 0, [() => ParticipantToken, 0]];
|
|
1830
|
+
var PublicKeyList = [1, n0, _PKL, 0, () => PublicKeySummary];
|
|
1831
|
+
var StageSessionList = [1, n0, _SSL, 0, () => StageSessionSummary];
|
|
1832
|
+
var StageSummaryList = [1, n0, _SSLt, 0, () => StageSummary];
|
|
1833
|
+
var StorageConfigurationSummaryList = [1, n0, _SCSL, 0, () => StorageConfigurationSummary];
|
|
1834
|
+
var CreateEncoderConfiguration = [
|
|
1835
|
+
9,
|
|
1836
|
+
n0,
|
|
1837
|
+
_CEC,
|
|
1838
|
+
{
|
|
1839
|
+
[_ht]: ["POST", "/CreateEncoderConfiguration", 200],
|
|
1840
|
+
},
|
|
1841
|
+
() => CreateEncoderConfigurationRequest,
|
|
1842
|
+
() => CreateEncoderConfigurationResponse,
|
|
1843
|
+
];
|
|
1844
|
+
var CreateIngestConfiguration = [
|
|
1845
|
+
9,
|
|
1846
|
+
n0,
|
|
1847
|
+
_CIC,
|
|
1848
|
+
{
|
|
1849
|
+
[_ht]: ["POST", "/CreateIngestConfiguration", 200],
|
|
1850
|
+
},
|
|
1851
|
+
() => CreateIngestConfigurationRequest,
|
|
1852
|
+
() => CreateIngestConfigurationResponse,
|
|
1853
|
+
];
|
|
1854
|
+
var CreateParticipantToken = [
|
|
1855
|
+
9,
|
|
1856
|
+
n0,
|
|
1857
|
+
_CPT,
|
|
1858
|
+
{
|
|
1859
|
+
[_ht]: ["POST", "/CreateParticipantToken", 200],
|
|
1860
|
+
},
|
|
1861
|
+
() => CreateParticipantTokenRequest,
|
|
1862
|
+
() => CreateParticipantTokenResponse,
|
|
1863
|
+
];
|
|
1864
|
+
var CreateStage = [
|
|
1865
|
+
9,
|
|
1866
|
+
n0,
|
|
1867
|
+
_CSr,
|
|
1868
|
+
{
|
|
1869
|
+
[_ht]: ["POST", "/CreateStage", 200],
|
|
1870
|
+
},
|
|
1871
|
+
() => CreateStageRequest,
|
|
1872
|
+
() => CreateStageResponse,
|
|
1873
|
+
];
|
|
1874
|
+
var CreateStorageConfiguration = [
|
|
1875
|
+
9,
|
|
1876
|
+
n0,
|
|
1877
|
+
_CSC,
|
|
1878
|
+
{
|
|
1879
|
+
[_ht]: ["POST", "/CreateStorageConfiguration", 200],
|
|
1880
|
+
},
|
|
1881
|
+
() => CreateStorageConfigurationRequest,
|
|
1882
|
+
() => CreateStorageConfigurationResponse,
|
|
1883
|
+
];
|
|
1884
|
+
var DeleteEncoderConfiguration = [
|
|
1885
|
+
9,
|
|
1886
|
+
n0,
|
|
1887
|
+
_DEC,
|
|
1888
|
+
{
|
|
1889
|
+
[_ht]: ["POST", "/DeleteEncoderConfiguration", 200],
|
|
1890
|
+
},
|
|
1891
|
+
() => DeleteEncoderConfigurationRequest,
|
|
1892
|
+
() => DeleteEncoderConfigurationResponse,
|
|
1893
|
+
];
|
|
1894
|
+
var DeleteIngestConfiguration = [
|
|
1895
|
+
9,
|
|
1896
|
+
n0,
|
|
1897
|
+
_DIC,
|
|
1898
|
+
{
|
|
1899
|
+
[_ht]: ["POST", "/DeleteIngestConfiguration", 200],
|
|
1900
|
+
},
|
|
1901
|
+
() => DeleteIngestConfigurationRequest,
|
|
1902
|
+
() => DeleteIngestConfigurationResponse,
|
|
1903
|
+
];
|
|
1904
|
+
var DeletePublicKey = [
|
|
1905
|
+
9,
|
|
1906
|
+
n0,
|
|
1907
|
+
_DPK,
|
|
1908
|
+
{
|
|
1909
|
+
[_ht]: ["POST", "/DeletePublicKey", 200],
|
|
1910
|
+
},
|
|
1911
|
+
() => DeletePublicKeyRequest,
|
|
1912
|
+
() => DeletePublicKeyResponse,
|
|
1913
|
+
];
|
|
1914
|
+
var DeleteStage = [
|
|
1915
|
+
9,
|
|
1916
|
+
n0,
|
|
1917
|
+
_DSe,
|
|
1918
|
+
{
|
|
1919
|
+
[_ht]: ["POST", "/DeleteStage", 200],
|
|
1920
|
+
},
|
|
1921
|
+
() => DeleteStageRequest,
|
|
1922
|
+
() => DeleteStageResponse,
|
|
1923
|
+
];
|
|
1924
|
+
var DeleteStorageConfiguration = [
|
|
1925
|
+
9,
|
|
1926
|
+
n0,
|
|
1927
|
+
_DSC,
|
|
1928
|
+
{
|
|
1929
|
+
[_ht]: ["POST", "/DeleteStorageConfiguration", 200],
|
|
1930
|
+
},
|
|
1931
|
+
() => DeleteStorageConfigurationRequest,
|
|
1932
|
+
() => DeleteStorageConfigurationResponse,
|
|
1933
|
+
];
|
|
1934
|
+
var DisconnectParticipant = [
|
|
1935
|
+
9,
|
|
1936
|
+
n0,
|
|
1937
|
+
_DP,
|
|
1938
|
+
{
|
|
1939
|
+
[_ht]: ["POST", "/DisconnectParticipant", 200],
|
|
1940
|
+
},
|
|
1941
|
+
() => DisconnectParticipantRequest,
|
|
1942
|
+
() => DisconnectParticipantResponse,
|
|
1943
|
+
];
|
|
1944
|
+
var GetComposition = [
|
|
1945
|
+
9,
|
|
1946
|
+
n0,
|
|
1947
|
+
_GCe,
|
|
1948
|
+
{
|
|
1949
|
+
[_ht]: ["POST", "/GetComposition", 200],
|
|
1950
|
+
},
|
|
1951
|
+
() => GetCompositionRequest,
|
|
1952
|
+
() => GetCompositionResponse,
|
|
1953
|
+
];
|
|
1954
|
+
var GetEncoderConfiguration = [
|
|
1955
|
+
9,
|
|
1956
|
+
n0,
|
|
1957
|
+
_GEC,
|
|
1958
|
+
{
|
|
1959
|
+
[_ht]: ["POST", "/GetEncoderConfiguration", 200],
|
|
1960
|
+
},
|
|
1961
|
+
() => GetEncoderConfigurationRequest,
|
|
1962
|
+
() => GetEncoderConfigurationResponse,
|
|
1963
|
+
];
|
|
1964
|
+
var GetIngestConfiguration = [
|
|
1965
|
+
9,
|
|
1966
|
+
n0,
|
|
1967
|
+
_GIC,
|
|
1968
|
+
{
|
|
1969
|
+
[_ht]: ["POST", "/GetIngestConfiguration", 200],
|
|
1970
|
+
},
|
|
1971
|
+
() => GetIngestConfigurationRequest,
|
|
1972
|
+
() => GetIngestConfigurationResponse,
|
|
1973
|
+
];
|
|
1974
|
+
var GetParticipant = [
|
|
1975
|
+
9,
|
|
1976
|
+
n0,
|
|
1977
|
+
_GP,
|
|
1978
|
+
{
|
|
1979
|
+
[_ht]: ["POST", "/GetParticipant", 200],
|
|
1980
|
+
},
|
|
1981
|
+
() => GetParticipantRequest,
|
|
1982
|
+
() => GetParticipantResponse,
|
|
1983
|
+
];
|
|
1984
|
+
var GetPublicKey = [
|
|
1985
|
+
9,
|
|
1986
|
+
n0,
|
|
1987
|
+
_GPK,
|
|
1988
|
+
{
|
|
1989
|
+
[_ht]: ["POST", "/GetPublicKey", 200],
|
|
1990
|
+
},
|
|
1991
|
+
() => GetPublicKeyRequest,
|
|
1992
|
+
() => GetPublicKeyResponse,
|
|
1993
|
+
];
|
|
1994
|
+
var GetStage = [
|
|
1995
|
+
9,
|
|
1996
|
+
n0,
|
|
1997
|
+
_GS,
|
|
1998
|
+
{
|
|
1999
|
+
[_ht]: ["POST", "/GetStage", 200],
|
|
2000
|
+
},
|
|
2001
|
+
() => GetStageRequest,
|
|
2002
|
+
() => GetStageResponse,
|
|
2003
|
+
];
|
|
2004
|
+
var GetStageSession = [
|
|
2005
|
+
9,
|
|
2006
|
+
n0,
|
|
2007
|
+
_GSS,
|
|
2008
|
+
{
|
|
2009
|
+
[_ht]: ["POST", "/GetStageSession", 200],
|
|
2010
|
+
},
|
|
2011
|
+
() => GetStageSessionRequest,
|
|
2012
|
+
() => GetStageSessionResponse,
|
|
2013
|
+
];
|
|
2014
|
+
var GetStorageConfiguration = [
|
|
2015
|
+
9,
|
|
2016
|
+
n0,
|
|
2017
|
+
_GSC,
|
|
2018
|
+
{
|
|
2019
|
+
[_ht]: ["POST", "/GetStorageConfiguration", 200],
|
|
2020
|
+
},
|
|
2021
|
+
() => GetStorageConfigurationRequest,
|
|
2022
|
+
() => GetStorageConfigurationResponse,
|
|
2023
|
+
];
|
|
2024
|
+
var ImportPublicKey = [
|
|
2025
|
+
9,
|
|
2026
|
+
n0,
|
|
2027
|
+
_IPK,
|
|
2028
|
+
{
|
|
2029
|
+
[_ht]: ["POST", "/ImportPublicKey", 200],
|
|
2030
|
+
},
|
|
2031
|
+
() => ImportPublicKeyRequest,
|
|
2032
|
+
() => ImportPublicKeyResponse,
|
|
2033
|
+
];
|
|
2034
|
+
var ListCompositions = [
|
|
2035
|
+
9,
|
|
2036
|
+
n0,
|
|
2037
|
+
_LCi,
|
|
2038
|
+
{
|
|
2039
|
+
[_ht]: ["POST", "/ListCompositions", 200],
|
|
2040
|
+
},
|
|
2041
|
+
() => ListCompositionsRequest,
|
|
2042
|
+
() => ListCompositionsResponse,
|
|
2043
|
+
];
|
|
2044
|
+
var ListEncoderConfigurations = [
|
|
2045
|
+
9,
|
|
2046
|
+
n0,
|
|
2047
|
+
_LEC,
|
|
2048
|
+
{
|
|
2049
|
+
[_ht]: ["POST", "/ListEncoderConfigurations", 200],
|
|
2050
|
+
},
|
|
2051
|
+
() => ListEncoderConfigurationsRequest,
|
|
2052
|
+
() => ListEncoderConfigurationsResponse,
|
|
2053
|
+
];
|
|
2054
|
+
var ListIngestConfigurations = [
|
|
2055
|
+
9,
|
|
2056
|
+
n0,
|
|
2057
|
+
_LIC,
|
|
2058
|
+
{
|
|
2059
|
+
[_ht]: ["POST", "/ListIngestConfigurations", 200],
|
|
2060
|
+
},
|
|
2061
|
+
() => ListIngestConfigurationsRequest,
|
|
2062
|
+
() => ListIngestConfigurationsResponse,
|
|
2063
|
+
];
|
|
2064
|
+
var ListParticipantEvents = [
|
|
2065
|
+
9,
|
|
2066
|
+
n0,
|
|
2067
|
+
_LPE,
|
|
2068
|
+
{
|
|
2069
|
+
[_ht]: ["POST", "/ListParticipantEvents", 200],
|
|
2070
|
+
},
|
|
2071
|
+
() => ListParticipantEventsRequest,
|
|
2072
|
+
() => ListParticipantEventsResponse,
|
|
2073
|
+
];
|
|
2074
|
+
var ListParticipantReplicas = [
|
|
2075
|
+
9,
|
|
2076
|
+
n0,
|
|
2077
|
+
_LPRis,
|
|
2078
|
+
{
|
|
2079
|
+
[_ht]: ["POST", "/ListParticipantReplicas", 200],
|
|
2080
|
+
},
|
|
2081
|
+
() => ListParticipantReplicasRequest,
|
|
2082
|
+
() => ListParticipantReplicasResponse,
|
|
2083
|
+
];
|
|
2084
|
+
var ListParticipants = [
|
|
2085
|
+
9,
|
|
2086
|
+
n0,
|
|
2087
|
+
_LP,
|
|
2088
|
+
{
|
|
2089
|
+
[_ht]: ["POST", "/ListParticipants", 200],
|
|
2090
|
+
},
|
|
2091
|
+
() => ListParticipantsRequest,
|
|
2092
|
+
() => ListParticipantsResponse,
|
|
2093
|
+
];
|
|
2094
|
+
var ListPublicKeys = [
|
|
2095
|
+
9,
|
|
2096
|
+
n0,
|
|
2097
|
+
_LPK,
|
|
2098
|
+
{
|
|
2099
|
+
[_ht]: ["POST", "/ListPublicKeys", 200],
|
|
2100
|
+
},
|
|
2101
|
+
() => ListPublicKeysRequest,
|
|
2102
|
+
() => ListPublicKeysResponse,
|
|
2103
|
+
];
|
|
2104
|
+
var ListStages = [
|
|
2105
|
+
9,
|
|
2106
|
+
n0,
|
|
2107
|
+
_LS,
|
|
2108
|
+
{
|
|
2109
|
+
[_ht]: ["POST", "/ListStages", 200],
|
|
2110
|
+
},
|
|
2111
|
+
() => ListStagesRequest,
|
|
2112
|
+
() => ListStagesResponse,
|
|
2113
|
+
];
|
|
2114
|
+
var ListStageSessions = [
|
|
2115
|
+
9,
|
|
2116
|
+
n0,
|
|
2117
|
+
_LSS,
|
|
2118
|
+
{
|
|
2119
|
+
[_ht]: ["POST", "/ListStageSessions", 200],
|
|
2120
|
+
},
|
|
2121
|
+
() => ListStageSessionsRequest,
|
|
2122
|
+
() => ListStageSessionsResponse,
|
|
2123
|
+
];
|
|
2124
|
+
var ListStorageConfigurations = [
|
|
2125
|
+
9,
|
|
2126
|
+
n0,
|
|
2127
|
+
_LSC,
|
|
2128
|
+
{
|
|
2129
|
+
[_ht]: ["POST", "/ListStorageConfigurations", 200],
|
|
2130
|
+
},
|
|
2131
|
+
() => ListStorageConfigurationsRequest,
|
|
2132
|
+
() => ListStorageConfigurationsResponse,
|
|
2133
|
+
];
|
|
2134
|
+
var ListTagsForResource = [
|
|
2135
|
+
9,
|
|
2136
|
+
n0,
|
|
2137
|
+
_LTFR,
|
|
2138
|
+
{
|
|
2139
|
+
[_ht]: ["GET", "/tags/{resourceArn}", 200],
|
|
2140
|
+
},
|
|
2141
|
+
() => ListTagsForResourceRequest,
|
|
2142
|
+
() => ListTagsForResourceResponse,
|
|
2143
|
+
];
|
|
2144
|
+
var StartComposition = [
|
|
2145
|
+
9,
|
|
2146
|
+
n0,
|
|
2147
|
+
_SCt,
|
|
2148
|
+
{
|
|
2149
|
+
[_ht]: ["POST", "/StartComposition", 200],
|
|
2150
|
+
},
|
|
2151
|
+
() => StartCompositionRequest,
|
|
2152
|
+
() => StartCompositionResponse,
|
|
2153
|
+
];
|
|
2154
|
+
var StartParticipantReplication = [
|
|
2155
|
+
9,
|
|
2156
|
+
n0,
|
|
2157
|
+
_SPR,
|
|
2158
|
+
{
|
|
2159
|
+
[_ht]: ["POST", "/StartParticipantReplication", 200],
|
|
2160
|
+
},
|
|
2161
|
+
() => StartParticipantReplicationRequest,
|
|
2162
|
+
() => StartParticipantReplicationResponse,
|
|
2163
|
+
];
|
|
2164
|
+
var StopComposition = [
|
|
2165
|
+
9,
|
|
2166
|
+
n0,
|
|
2167
|
+
_SCto,
|
|
2168
|
+
{
|
|
2169
|
+
[_ht]: ["POST", "/StopComposition", 200],
|
|
2170
|
+
},
|
|
2171
|
+
() => StopCompositionRequest,
|
|
2172
|
+
() => StopCompositionResponse,
|
|
2173
|
+
];
|
|
2174
|
+
var StopParticipantReplication = [
|
|
2175
|
+
9,
|
|
2176
|
+
n0,
|
|
2177
|
+
_SPRt,
|
|
2178
|
+
{
|
|
2179
|
+
[_ht]: ["POST", "/StopParticipantReplication", 200],
|
|
2180
|
+
},
|
|
2181
|
+
() => StopParticipantReplicationRequest,
|
|
2182
|
+
() => StopParticipantReplicationResponse,
|
|
2183
|
+
];
|
|
2184
|
+
var TagResource = [
|
|
2185
|
+
9,
|
|
2186
|
+
n0,
|
|
2187
|
+
_TR,
|
|
2188
|
+
{
|
|
2189
|
+
[_ht]: ["POST", "/tags/{resourceArn}", 200],
|
|
2190
|
+
},
|
|
2191
|
+
() => TagResourceRequest,
|
|
2192
|
+
() => TagResourceResponse,
|
|
2193
|
+
];
|
|
2194
|
+
var UntagResource = [
|
|
2195
|
+
9,
|
|
2196
|
+
n0,
|
|
2197
|
+
_UR,
|
|
2198
|
+
{
|
|
2199
|
+
[_ht]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
2200
|
+
},
|
|
2201
|
+
() => UntagResourceRequest,
|
|
2202
|
+
() => UntagResourceResponse,
|
|
2203
|
+
];
|
|
2204
|
+
var UpdateIngestConfiguration = [
|
|
2205
|
+
9,
|
|
2206
|
+
n0,
|
|
2207
|
+
_UIC,
|
|
2208
|
+
{
|
|
2209
|
+
[_ht]: ["POST", "/UpdateIngestConfiguration", 200],
|
|
2210
|
+
},
|
|
2211
|
+
() => UpdateIngestConfigurationRequest,
|
|
2212
|
+
() => UpdateIngestConfigurationResponse,
|
|
2213
|
+
];
|
|
2214
|
+
var UpdateStage = [
|
|
2215
|
+
9,
|
|
2216
|
+
n0,
|
|
2217
|
+
_US,
|
|
2218
|
+
{
|
|
2219
|
+
[_ht]: ["POST", "/UpdateStage", 200],
|
|
2220
|
+
},
|
|
2221
|
+
() => UpdateStageRequest,
|
|
2222
|
+
() => UpdateStageResponse,
|
|
2223
|
+
];
|
|
2000
2224
|
|
|
2001
2225
|
class CreateEncoderConfigurationCommand extends smithyClient.Command
|
|
2002
2226
|
.classBuilder()
|
|
2003
2227
|
.ep(commonParams)
|
|
2004
2228
|
.m(function (Command, cs, config, o) {
|
|
2005
|
-
return [
|
|
2006
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2007
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2008
|
-
];
|
|
2229
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2009
2230
|
})
|
|
2010
2231
|
.s("AmazonInteractiveVideoServiceRealTime", "CreateEncoderConfiguration", {})
|
|
2011
2232
|
.n("IVSRealTimeClient", "CreateEncoderConfigurationCommand")
|
|
2012
|
-
.
|
|
2013
|
-
.ser(se_CreateEncoderConfigurationCommand)
|
|
2014
|
-
.de(de_CreateEncoderConfigurationCommand)
|
|
2233
|
+
.sc(CreateEncoderConfiguration)
|
|
2015
2234
|
.build() {
|
|
2016
2235
|
}
|
|
2017
2236
|
|
|
@@ -2019,16 +2238,11 @@ class CreateIngestConfigurationCommand extends smithyClient.Command
|
|
|
2019
2238
|
.classBuilder()
|
|
2020
2239
|
.ep(commonParams)
|
|
2021
2240
|
.m(function (Command, cs, config, o) {
|
|
2022
|
-
return [
|
|
2023
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2024
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2025
|
-
];
|
|
2241
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2026
2242
|
})
|
|
2027
2243
|
.s("AmazonInteractiveVideoServiceRealTime", "CreateIngestConfiguration", {})
|
|
2028
2244
|
.n("IVSRealTimeClient", "CreateIngestConfigurationCommand")
|
|
2029
|
-
.
|
|
2030
|
-
.ser(se_CreateIngestConfigurationCommand)
|
|
2031
|
-
.de(de_CreateIngestConfigurationCommand)
|
|
2245
|
+
.sc(CreateIngestConfiguration)
|
|
2032
2246
|
.build() {
|
|
2033
2247
|
}
|
|
2034
2248
|
|
|
@@ -2036,16 +2250,11 @@ class CreateParticipantTokenCommand extends smithyClient.Command
|
|
|
2036
2250
|
.classBuilder()
|
|
2037
2251
|
.ep(commonParams)
|
|
2038
2252
|
.m(function (Command, cs, config, o) {
|
|
2039
|
-
return [
|
|
2040
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2041
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2042
|
-
];
|
|
2253
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2043
2254
|
})
|
|
2044
2255
|
.s("AmazonInteractiveVideoServiceRealTime", "CreateParticipantToken", {})
|
|
2045
2256
|
.n("IVSRealTimeClient", "CreateParticipantTokenCommand")
|
|
2046
|
-
.
|
|
2047
|
-
.ser(se_CreateParticipantTokenCommand)
|
|
2048
|
-
.de(de_CreateParticipantTokenCommand)
|
|
2257
|
+
.sc(CreateParticipantToken)
|
|
2049
2258
|
.build() {
|
|
2050
2259
|
}
|
|
2051
2260
|
|
|
@@ -2053,16 +2262,11 @@ class CreateStageCommand extends smithyClient.Command
|
|
|
2053
2262
|
.classBuilder()
|
|
2054
2263
|
.ep(commonParams)
|
|
2055
2264
|
.m(function (Command, cs, config, o) {
|
|
2056
|
-
return [
|
|
2057
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2058
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2059
|
-
];
|
|
2265
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2060
2266
|
})
|
|
2061
2267
|
.s("AmazonInteractiveVideoServiceRealTime", "CreateStage", {})
|
|
2062
2268
|
.n("IVSRealTimeClient", "CreateStageCommand")
|
|
2063
|
-
.
|
|
2064
|
-
.ser(se_CreateStageCommand)
|
|
2065
|
-
.de(de_CreateStageCommand)
|
|
2269
|
+
.sc(CreateStage)
|
|
2066
2270
|
.build() {
|
|
2067
2271
|
}
|
|
2068
2272
|
|
|
@@ -2070,16 +2274,11 @@ class CreateStorageConfigurationCommand extends smithyClient.Command
|
|
|
2070
2274
|
.classBuilder()
|
|
2071
2275
|
.ep(commonParams)
|
|
2072
2276
|
.m(function (Command, cs, config, o) {
|
|
2073
|
-
return [
|
|
2074
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2075
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2076
|
-
];
|
|
2277
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2077
2278
|
})
|
|
2078
2279
|
.s("AmazonInteractiveVideoServiceRealTime", "CreateStorageConfiguration", {})
|
|
2079
2280
|
.n("IVSRealTimeClient", "CreateStorageConfigurationCommand")
|
|
2080
|
-
.
|
|
2081
|
-
.ser(se_CreateStorageConfigurationCommand)
|
|
2082
|
-
.de(de_CreateStorageConfigurationCommand)
|
|
2281
|
+
.sc(CreateStorageConfiguration)
|
|
2083
2282
|
.build() {
|
|
2084
2283
|
}
|
|
2085
2284
|
|
|
@@ -2087,16 +2286,11 @@ class DeleteEncoderConfigurationCommand extends smithyClient.Command
|
|
|
2087
2286
|
.classBuilder()
|
|
2088
2287
|
.ep(commonParams)
|
|
2089
2288
|
.m(function (Command, cs, config, o) {
|
|
2090
|
-
return [
|
|
2091
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2092
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2093
|
-
];
|
|
2289
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2094
2290
|
})
|
|
2095
2291
|
.s("AmazonInteractiveVideoServiceRealTime", "DeleteEncoderConfiguration", {})
|
|
2096
2292
|
.n("IVSRealTimeClient", "DeleteEncoderConfigurationCommand")
|
|
2097
|
-
.
|
|
2098
|
-
.ser(se_DeleteEncoderConfigurationCommand)
|
|
2099
|
-
.de(de_DeleteEncoderConfigurationCommand)
|
|
2293
|
+
.sc(DeleteEncoderConfiguration)
|
|
2100
2294
|
.build() {
|
|
2101
2295
|
}
|
|
2102
2296
|
|
|
@@ -2104,16 +2298,11 @@ class DeleteIngestConfigurationCommand extends smithyClient.Command
|
|
|
2104
2298
|
.classBuilder()
|
|
2105
2299
|
.ep(commonParams)
|
|
2106
2300
|
.m(function (Command, cs, config, o) {
|
|
2107
|
-
return [
|
|
2108
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2109
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2110
|
-
];
|
|
2301
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2111
2302
|
})
|
|
2112
2303
|
.s("AmazonInteractiveVideoServiceRealTime", "DeleteIngestConfiguration", {})
|
|
2113
2304
|
.n("IVSRealTimeClient", "DeleteIngestConfigurationCommand")
|
|
2114
|
-
.
|
|
2115
|
-
.ser(se_DeleteIngestConfigurationCommand)
|
|
2116
|
-
.de(de_DeleteIngestConfigurationCommand)
|
|
2305
|
+
.sc(DeleteIngestConfiguration)
|
|
2117
2306
|
.build() {
|
|
2118
2307
|
}
|
|
2119
2308
|
|
|
@@ -2121,16 +2310,11 @@ class DeletePublicKeyCommand extends smithyClient.Command
|
|
|
2121
2310
|
.classBuilder()
|
|
2122
2311
|
.ep(commonParams)
|
|
2123
2312
|
.m(function (Command, cs, config, o) {
|
|
2124
|
-
return [
|
|
2125
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2126
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2127
|
-
];
|
|
2313
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2128
2314
|
})
|
|
2129
2315
|
.s("AmazonInteractiveVideoServiceRealTime", "DeletePublicKey", {})
|
|
2130
2316
|
.n("IVSRealTimeClient", "DeletePublicKeyCommand")
|
|
2131
|
-
.
|
|
2132
|
-
.ser(se_DeletePublicKeyCommand)
|
|
2133
|
-
.de(de_DeletePublicKeyCommand)
|
|
2317
|
+
.sc(DeletePublicKey)
|
|
2134
2318
|
.build() {
|
|
2135
2319
|
}
|
|
2136
2320
|
|
|
@@ -2138,16 +2322,11 @@ class DeleteStageCommand extends smithyClient.Command
|
|
|
2138
2322
|
.classBuilder()
|
|
2139
2323
|
.ep(commonParams)
|
|
2140
2324
|
.m(function (Command, cs, config, o) {
|
|
2141
|
-
return [
|
|
2142
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2143
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2144
|
-
];
|
|
2325
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2145
2326
|
})
|
|
2146
2327
|
.s("AmazonInteractiveVideoServiceRealTime", "DeleteStage", {})
|
|
2147
2328
|
.n("IVSRealTimeClient", "DeleteStageCommand")
|
|
2148
|
-
.
|
|
2149
|
-
.ser(se_DeleteStageCommand)
|
|
2150
|
-
.de(de_DeleteStageCommand)
|
|
2329
|
+
.sc(DeleteStage)
|
|
2151
2330
|
.build() {
|
|
2152
2331
|
}
|
|
2153
2332
|
|
|
@@ -2155,16 +2334,11 @@ class DeleteStorageConfigurationCommand extends smithyClient.Command
|
|
|
2155
2334
|
.classBuilder()
|
|
2156
2335
|
.ep(commonParams)
|
|
2157
2336
|
.m(function (Command, cs, config, o) {
|
|
2158
|
-
return [
|
|
2159
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2160
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2161
|
-
];
|
|
2337
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2162
2338
|
})
|
|
2163
2339
|
.s("AmazonInteractiveVideoServiceRealTime", "DeleteStorageConfiguration", {})
|
|
2164
2340
|
.n("IVSRealTimeClient", "DeleteStorageConfigurationCommand")
|
|
2165
|
-
.
|
|
2166
|
-
.ser(se_DeleteStorageConfigurationCommand)
|
|
2167
|
-
.de(de_DeleteStorageConfigurationCommand)
|
|
2341
|
+
.sc(DeleteStorageConfiguration)
|
|
2168
2342
|
.build() {
|
|
2169
2343
|
}
|
|
2170
2344
|
|
|
@@ -2172,16 +2346,11 @@ class DisconnectParticipantCommand extends smithyClient.Command
|
|
|
2172
2346
|
.classBuilder()
|
|
2173
2347
|
.ep(commonParams)
|
|
2174
2348
|
.m(function (Command, cs, config, o) {
|
|
2175
|
-
return [
|
|
2176
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2177
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2178
|
-
];
|
|
2349
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2179
2350
|
})
|
|
2180
2351
|
.s("AmazonInteractiveVideoServiceRealTime", "DisconnectParticipant", {})
|
|
2181
2352
|
.n("IVSRealTimeClient", "DisconnectParticipantCommand")
|
|
2182
|
-
.
|
|
2183
|
-
.ser(se_DisconnectParticipantCommand)
|
|
2184
|
-
.de(de_DisconnectParticipantCommand)
|
|
2353
|
+
.sc(DisconnectParticipant)
|
|
2185
2354
|
.build() {
|
|
2186
2355
|
}
|
|
2187
2356
|
|
|
@@ -2189,16 +2358,11 @@ class GetCompositionCommand extends smithyClient.Command
|
|
|
2189
2358
|
.classBuilder()
|
|
2190
2359
|
.ep(commonParams)
|
|
2191
2360
|
.m(function (Command, cs, config, o) {
|
|
2192
|
-
return [
|
|
2193
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2194
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2195
|
-
];
|
|
2361
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2196
2362
|
})
|
|
2197
2363
|
.s("AmazonInteractiveVideoServiceRealTime", "GetComposition", {})
|
|
2198
2364
|
.n("IVSRealTimeClient", "GetCompositionCommand")
|
|
2199
|
-
.
|
|
2200
|
-
.ser(se_GetCompositionCommand)
|
|
2201
|
-
.de(de_GetCompositionCommand)
|
|
2365
|
+
.sc(GetComposition)
|
|
2202
2366
|
.build() {
|
|
2203
2367
|
}
|
|
2204
2368
|
|
|
@@ -2206,16 +2370,11 @@ class GetEncoderConfigurationCommand extends smithyClient.Command
|
|
|
2206
2370
|
.classBuilder()
|
|
2207
2371
|
.ep(commonParams)
|
|
2208
2372
|
.m(function (Command, cs, config, o) {
|
|
2209
|
-
return [
|
|
2210
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2211
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2212
|
-
];
|
|
2373
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2213
2374
|
})
|
|
2214
2375
|
.s("AmazonInteractiveVideoServiceRealTime", "GetEncoderConfiguration", {})
|
|
2215
2376
|
.n("IVSRealTimeClient", "GetEncoderConfigurationCommand")
|
|
2216
|
-
.
|
|
2217
|
-
.ser(se_GetEncoderConfigurationCommand)
|
|
2218
|
-
.de(de_GetEncoderConfigurationCommand)
|
|
2377
|
+
.sc(GetEncoderConfiguration)
|
|
2219
2378
|
.build() {
|
|
2220
2379
|
}
|
|
2221
2380
|
|
|
@@ -2223,16 +2382,11 @@ class GetIngestConfigurationCommand extends smithyClient.Command
|
|
|
2223
2382
|
.classBuilder()
|
|
2224
2383
|
.ep(commonParams)
|
|
2225
2384
|
.m(function (Command, cs, config, o) {
|
|
2226
|
-
return [
|
|
2227
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2228
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2229
|
-
];
|
|
2385
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2230
2386
|
})
|
|
2231
2387
|
.s("AmazonInteractiveVideoServiceRealTime", "GetIngestConfiguration", {})
|
|
2232
2388
|
.n("IVSRealTimeClient", "GetIngestConfigurationCommand")
|
|
2233
|
-
.
|
|
2234
|
-
.ser(se_GetIngestConfigurationCommand)
|
|
2235
|
-
.de(de_GetIngestConfigurationCommand)
|
|
2389
|
+
.sc(GetIngestConfiguration)
|
|
2236
2390
|
.build() {
|
|
2237
2391
|
}
|
|
2238
2392
|
|
|
@@ -2240,16 +2394,11 @@ class GetParticipantCommand extends smithyClient.Command
|
|
|
2240
2394
|
.classBuilder()
|
|
2241
2395
|
.ep(commonParams)
|
|
2242
2396
|
.m(function (Command, cs, config, o) {
|
|
2243
|
-
return [
|
|
2244
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2245
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2246
|
-
];
|
|
2397
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2247
2398
|
})
|
|
2248
2399
|
.s("AmazonInteractiveVideoServiceRealTime", "GetParticipant", {})
|
|
2249
2400
|
.n("IVSRealTimeClient", "GetParticipantCommand")
|
|
2250
|
-
.
|
|
2251
|
-
.ser(se_GetParticipantCommand)
|
|
2252
|
-
.de(de_GetParticipantCommand)
|
|
2401
|
+
.sc(GetParticipant)
|
|
2253
2402
|
.build() {
|
|
2254
2403
|
}
|
|
2255
2404
|
|
|
@@ -2257,16 +2406,11 @@ class GetPublicKeyCommand extends smithyClient.Command
|
|
|
2257
2406
|
.classBuilder()
|
|
2258
2407
|
.ep(commonParams)
|
|
2259
2408
|
.m(function (Command, cs, config, o) {
|
|
2260
|
-
return [
|
|
2261
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2262
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2263
|
-
];
|
|
2409
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2264
2410
|
})
|
|
2265
2411
|
.s("AmazonInteractiveVideoServiceRealTime", "GetPublicKey", {})
|
|
2266
2412
|
.n("IVSRealTimeClient", "GetPublicKeyCommand")
|
|
2267
|
-
.
|
|
2268
|
-
.ser(se_GetPublicKeyCommand)
|
|
2269
|
-
.de(de_GetPublicKeyCommand)
|
|
2413
|
+
.sc(GetPublicKey)
|
|
2270
2414
|
.build() {
|
|
2271
2415
|
}
|
|
2272
2416
|
|
|
@@ -2274,16 +2418,11 @@ class GetStageCommand extends smithyClient.Command
|
|
|
2274
2418
|
.classBuilder()
|
|
2275
2419
|
.ep(commonParams)
|
|
2276
2420
|
.m(function (Command, cs, config, o) {
|
|
2277
|
-
return [
|
|
2278
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2279
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2280
|
-
];
|
|
2421
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2281
2422
|
})
|
|
2282
2423
|
.s("AmazonInteractiveVideoServiceRealTime", "GetStage", {})
|
|
2283
2424
|
.n("IVSRealTimeClient", "GetStageCommand")
|
|
2284
|
-
.
|
|
2285
|
-
.ser(se_GetStageCommand)
|
|
2286
|
-
.de(de_GetStageCommand)
|
|
2425
|
+
.sc(GetStage)
|
|
2287
2426
|
.build() {
|
|
2288
2427
|
}
|
|
2289
2428
|
|
|
@@ -2291,16 +2430,11 @@ class GetStageSessionCommand extends smithyClient.Command
|
|
|
2291
2430
|
.classBuilder()
|
|
2292
2431
|
.ep(commonParams)
|
|
2293
2432
|
.m(function (Command, cs, config, o) {
|
|
2294
|
-
return [
|
|
2295
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2296
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2297
|
-
];
|
|
2433
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2298
2434
|
})
|
|
2299
2435
|
.s("AmazonInteractiveVideoServiceRealTime", "GetStageSession", {})
|
|
2300
2436
|
.n("IVSRealTimeClient", "GetStageSessionCommand")
|
|
2301
|
-
.
|
|
2302
|
-
.ser(se_GetStageSessionCommand)
|
|
2303
|
-
.de(de_GetStageSessionCommand)
|
|
2437
|
+
.sc(GetStageSession)
|
|
2304
2438
|
.build() {
|
|
2305
2439
|
}
|
|
2306
2440
|
|
|
@@ -2308,16 +2442,11 @@ class GetStorageConfigurationCommand extends smithyClient.Command
|
|
|
2308
2442
|
.classBuilder()
|
|
2309
2443
|
.ep(commonParams)
|
|
2310
2444
|
.m(function (Command, cs, config, o) {
|
|
2311
|
-
return [
|
|
2312
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2313
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2314
|
-
];
|
|
2445
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2315
2446
|
})
|
|
2316
2447
|
.s("AmazonInteractiveVideoServiceRealTime", "GetStorageConfiguration", {})
|
|
2317
2448
|
.n("IVSRealTimeClient", "GetStorageConfigurationCommand")
|
|
2318
|
-
.
|
|
2319
|
-
.ser(se_GetStorageConfigurationCommand)
|
|
2320
|
-
.de(de_GetStorageConfigurationCommand)
|
|
2449
|
+
.sc(GetStorageConfiguration)
|
|
2321
2450
|
.build() {
|
|
2322
2451
|
}
|
|
2323
2452
|
|
|
@@ -2325,16 +2454,11 @@ class ImportPublicKeyCommand extends smithyClient.Command
|
|
|
2325
2454
|
.classBuilder()
|
|
2326
2455
|
.ep(commonParams)
|
|
2327
2456
|
.m(function (Command, cs, config, o) {
|
|
2328
|
-
return [
|
|
2329
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2330
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2331
|
-
];
|
|
2457
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2332
2458
|
})
|
|
2333
2459
|
.s("AmazonInteractiveVideoServiceRealTime", "ImportPublicKey", {})
|
|
2334
2460
|
.n("IVSRealTimeClient", "ImportPublicKeyCommand")
|
|
2335
|
-
.
|
|
2336
|
-
.ser(se_ImportPublicKeyCommand)
|
|
2337
|
-
.de(de_ImportPublicKeyCommand)
|
|
2461
|
+
.sc(ImportPublicKey)
|
|
2338
2462
|
.build() {
|
|
2339
2463
|
}
|
|
2340
2464
|
|
|
@@ -2342,16 +2466,11 @@ class ListCompositionsCommand extends smithyClient.Command
|
|
|
2342
2466
|
.classBuilder()
|
|
2343
2467
|
.ep(commonParams)
|
|
2344
2468
|
.m(function (Command, cs, config, o) {
|
|
2345
|
-
return [
|
|
2346
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2347
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2348
|
-
];
|
|
2469
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2349
2470
|
})
|
|
2350
2471
|
.s("AmazonInteractiveVideoServiceRealTime", "ListCompositions", {})
|
|
2351
2472
|
.n("IVSRealTimeClient", "ListCompositionsCommand")
|
|
2352
|
-
.
|
|
2353
|
-
.ser(se_ListCompositionsCommand)
|
|
2354
|
-
.de(de_ListCompositionsCommand)
|
|
2473
|
+
.sc(ListCompositions)
|
|
2355
2474
|
.build() {
|
|
2356
2475
|
}
|
|
2357
2476
|
|
|
@@ -2359,16 +2478,11 @@ class ListEncoderConfigurationsCommand extends smithyClient.Command
|
|
|
2359
2478
|
.classBuilder()
|
|
2360
2479
|
.ep(commonParams)
|
|
2361
2480
|
.m(function (Command, cs, config, o) {
|
|
2362
|
-
return [
|
|
2363
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2364
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2365
|
-
];
|
|
2481
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2366
2482
|
})
|
|
2367
2483
|
.s("AmazonInteractiveVideoServiceRealTime", "ListEncoderConfigurations", {})
|
|
2368
2484
|
.n("IVSRealTimeClient", "ListEncoderConfigurationsCommand")
|
|
2369
|
-
.
|
|
2370
|
-
.ser(se_ListEncoderConfigurationsCommand)
|
|
2371
|
-
.de(de_ListEncoderConfigurationsCommand)
|
|
2485
|
+
.sc(ListEncoderConfigurations)
|
|
2372
2486
|
.build() {
|
|
2373
2487
|
}
|
|
2374
2488
|
|
|
@@ -2376,16 +2490,11 @@ class ListIngestConfigurationsCommand extends smithyClient.Command
|
|
|
2376
2490
|
.classBuilder()
|
|
2377
2491
|
.ep(commonParams)
|
|
2378
2492
|
.m(function (Command, cs, config, o) {
|
|
2379
|
-
return [
|
|
2380
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2381
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2382
|
-
];
|
|
2493
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2383
2494
|
})
|
|
2384
2495
|
.s("AmazonInteractiveVideoServiceRealTime", "ListIngestConfigurations", {})
|
|
2385
2496
|
.n("IVSRealTimeClient", "ListIngestConfigurationsCommand")
|
|
2386
|
-
.
|
|
2387
|
-
.ser(se_ListIngestConfigurationsCommand)
|
|
2388
|
-
.de(de_ListIngestConfigurationsCommand)
|
|
2497
|
+
.sc(ListIngestConfigurations)
|
|
2389
2498
|
.build() {
|
|
2390
2499
|
}
|
|
2391
2500
|
|
|
@@ -2393,16 +2502,11 @@ class ListParticipantEventsCommand extends smithyClient.Command
|
|
|
2393
2502
|
.classBuilder()
|
|
2394
2503
|
.ep(commonParams)
|
|
2395
2504
|
.m(function (Command, cs, config, o) {
|
|
2396
|
-
return [
|
|
2397
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2398
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2399
|
-
];
|
|
2505
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2400
2506
|
})
|
|
2401
2507
|
.s("AmazonInteractiveVideoServiceRealTime", "ListParticipantEvents", {})
|
|
2402
2508
|
.n("IVSRealTimeClient", "ListParticipantEventsCommand")
|
|
2403
|
-
.
|
|
2404
|
-
.ser(se_ListParticipantEventsCommand)
|
|
2405
|
-
.de(de_ListParticipantEventsCommand)
|
|
2509
|
+
.sc(ListParticipantEvents)
|
|
2406
2510
|
.build() {
|
|
2407
2511
|
}
|
|
2408
2512
|
|
|
@@ -2410,16 +2514,11 @@ class ListParticipantReplicasCommand extends smithyClient.Command
|
|
|
2410
2514
|
.classBuilder()
|
|
2411
2515
|
.ep(commonParams)
|
|
2412
2516
|
.m(function (Command, cs, config, o) {
|
|
2413
|
-
return [
|
|
2414
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2415
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2416
|
-
];
|
|
2517
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2417
2518
|
})
|
|
2418
2519
|
.s("AmazonInteractiveVideoServiceRealTime", "ListParticipantReplicas", {})
|
|
2419
2520
|
.n("IVSRealTimeClient", "ListParticipantReplicasCommand")
|
|
2420
|
-
.
|
|
2421
|
-
.ser(se_ListParticipantReplicasCommand)
|
|
2422
|
-
.de(de_ListParticipantReplicasCommand)
|
|
2521
|
+
.sc(ListParticipantReplicas)
|
|
2423
2522
|
.build() {
|
|
2424
2523
|
}
|
|
2425
2524
|
|
|
@@ -2427,16 +2526,11 @@ class ListParticipantsCommand extends smithyClient.Command
|
|
|
2427
2526
|
.classBuilder()
|
|
2428
2527
|
.ep(commonParams)
|
|
2429
2528
|
.m(function (Command, cs, config, o) {
|
|
2430
|
-
return [
|
|
2431
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2432
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2433
|
-
];
|
|
2529
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2434
2530
|
})
|
|
2435
2531
|
.s("AmazonInteractiveVideoServiceRealTime", "ListParticipants", {})
|
|
2436
2532
|
.n("IVSRealTimeClient", "ListParticipantsCommand")
|
|
2437
|
-
.
|
|
2438
|
-
.ser(se_ListParticipantsCommand)
|
|
2439
|
-
.de(de_ListParticipantsCommand)
|
|
2533
|
+
.sc(ListParticipants)
|
|
2440
2534
|
.build() {
|
|
2441
2535
|
}
|
|
2442
2536
|
|
|
@@ -2444,16 +2538,11 @@ class ListPublicKeysCommand extends smithyClient.Command
|
|
|
2444
2538
|
.classBuilder()
|
|
2445
2539
|
.ep(commonParams)
|
|
2446
2540
|
.m(function (Command, cs, config, o) {
|
|
2447
|
-
return [
|
|
2448
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2449
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2450
|
-
];
|
|
2541
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2451
2542
|
})
|
|
2452
2543
|
.s("AmazonInteractiveVideoServiceRealTime", "ListPublicKeys", {})
|
|
2453
2544
|
.n("IVSRealTimeClient", "ListPublicKeysCommand")
|
|
2454
|
-
.
|
|
2455
|
-
.ser(se_ListPublicKeysCommand)
|
|
2456
|
-
.de(de_ListPublicKeysCommand)
|
|
2545
|
+
.sc(ListPublicKeys)
|
|
2457
2546
|
.build() {
|
|
2458
2547
|
}
|
|
2459
2548
|
|
|
@@ -2461,16 +2550,11 @@ class ListStagesCommand extends smithyClient.Command
|
|
|
2461
2550
|
.classBuilder()
|
|
2462
2551
|
.ep(commonParams)
|
|
2463
2552
|
.m(function (Command, cs, config, o) {
|
|
2464
|
-
return [
|
|
2465
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2466
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2467
|
-
];
|
|
2553
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2468
2554
|
})
|
|
2469
2555
|
.s("AmazonInteractiveVideoServiceRealTime", "ListStages", {})
|
|
2470
2556
|
.n("IVSRealTimeClient", "ListStagesCommand")
|
|
2471
|
-
.
|
|
2472
|
-
.ser(se_ListStagesCommand)
|
|
2473
|
-
.de(de_ListStagesCommand)
|
|
2557
|
+
.sc(ListStages)
|
|
2474
2558
|
.build() {
|
|
2475
2559
|
}
|
|
2476
2560
|
|
|
@@ -2478,16 +2562,11 @@ class ListStageSessionsCommand extends smithyClient.Command
|
|
|
2478
2562
|
.classBuilder()
|
|
2479
2563
|
.ep(commonParams)
|
|
2480
2564
|
.m(function (Command, cs, config, o) {
|
|
2481
|
-
return [
|
|
2482
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2483
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2484
|
-
];
|
|
2565
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2485
2566
|
})
|
|
2486
2567
|
.s("AmazonInteractiveVideoServiceRealTime", "ListStageSessions", {})
|
|
2487
2568
|
.n("IVSRealTimeClient", "ListStageSessionsCommand")
|
|
2488
|
-
.
|
|
2489
|
-
.ser(se_ListStageSessionsCommand)
|
|
2490
|
-
.de(de_ListStageSessionsCommand)
|
|
2569
|
+
.sc(ListStageSessions)
|
|
2491
2570
|
.build() {
|
|
2492
2571
|
}
|
|
2493
2572
|
|
|
@@ -2495,16 +2574,11 @@ class ListStorageConfigurationsCommand extends smithyClient.Command
|
|
|
2495
2574
|
.classBuilder()
|
|
2496
2575
|
.ep(commonParams)
|
|
2497
2576
|
.m(function (Command, cs, config, o) {
|
|
2498
|
-
return [
|
|
2499
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2500
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2501
|
-
];
|
|
2577
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2502
2578
|
})
|
|
2503
2579
|
.s("AmazonInteractiveVideoServiceRealTime", "ListStorageConfigurations", {})
|
|
2504
2580
|
.n("IVSRealTimeClient", "ListStorageConfigurationsCommand")
|
|
2505
|
-
.
|
|
2506
|
-
.ser(se_ListStorageConfigurationsCommand)
|
|
2507
|
-
.de(de_ListStorageConfigurationsCommand)
|
|
2581
|
+
.sc(ListStorageConfigurations)
|
|
2508
2582
|
.build() {
|
|
2509
2583
|
}
|
|
2510
2584
|
|
|
@@ -2512,16 +2586,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2512
2586
|
.classBuilder()
|
|
2513
2587
|
.ep(commonParams)
|
|
2514
2588
|
.m(function (Command, cs, config, o) {
|
|
2515
|
-
return [
|
|
2516
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2517
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2518
|
-
];
|
|
2589
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2519
2590
|
})
|
|
2520
2591
|
.s("AmazonInteractiveVideoServiceRealTime", "ListTagsForResource", {})
|
|
2521
2592
|
.n("IVSRealTimeClient", "ListTagsForResourceCommand")
|
|
2522
|
-
.
|
|
2523
|
-
.ser(se_ListTagsForResourceCommand)
|
|
2524
|
-
.de(de_ListTagsForResourceCommand)
|
|
2593
|
+
.sc(ListTagsForResource)
|
|
2525
2594
|
.build() {
|
|
2526
2595
|
}
|
|
2527
2596
|
|
|
@@ -2529,16 +2598,11 @@ class StartCompositionCommand extends smithyClient.Command
|
|
|
2529
2598
|
.classBuilder()
|
|
2530
2599
|
.ep(commonParams)
|
|
2531
2600
|
.m(function (Command, cs, config, o) {
|
|
2532
|
-
return [
|
|
2533
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2534
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2535
|
-
];
|
|
2601
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2536
2602
|
})
|
|
2537
2603
|
.s("AmazonInteractiveVideoServiceRealTime", "StartComposition", {})
|
|
2538
2604
|
.n("IVSRealTimeClient", "StartCompositionCommand")
|
|
2539
|
-
.
|
|
2540
|
-
.ser(se_StartCompositionCommand)
|
|
2541
|
-
.de(de_StartCompositionCommand)
|
|
2605
|
+
.sc(StartComposition)
|
|
2542
2606
|
.build() {
|
|
2543
2607
|
}
|
|
2544
2608
|
|
|
@@ -2546,16 +2610,11 @@ class StartParticipantReplicationCommand extends smithyClient.Command
|
|
|
2546
2610
|
.classBuilder()
|
|
2547
2611
|
.ep(commonParams)
|
|
2548
2612
|
.m(function (Command, cs, config, o) {
|
|
2549
|
-
return [
|
|
2550
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2551
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2552
|
-
];
|
|
2613
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2553
2614
|
})
|
|
2554
2615
|
.s("AmazonInteractiveVideoServiceRealTime", "StartParticipantReplication", {})
|
|
2555
2616
|
.n("IVSRealTimeClient", "StartParticipantReplicationCommand")
|
|
2556
|
-
.
|
|
2557
|
-
.ser(se_StartParticipantReplicationCommand)
|
|
2558
|
-
.de(de_StartParticipantReplicationCommand)
|
|
2617
|
+
.sc(StartParticipantReplication)
|
|
2559
2618
|
.build() {
|
|
2560
2619
|
}
|
|
2561
2620
|
|
|
@@ -2563,16 +2622,11 @@ class StopCompositionCommand extends smithyClient.Command
|
|
|
2563
2622
|
.classBuilder()
|
|
2564
2623
|
.ep(commonParams)
|
|
2565
2624
|
.m(function (Command, cs, config, o) {
|
|
2566
|
-
return [
|
|
2567
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2568
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2569
|
-
];
|
|
2625
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2570
2626
|
})
|
|
2571
2627
|
.s("AmazonInteractiveVideoServiceRealTime", "StopComposition", {})
|
|
2572
2628
|
.n("IVSRealTimeClient", "StopCompositionCommand")
|
|
2573
|
-
.
|
|
2574
|
-
.ser(se_StopCompositionCommand)
|
|
2575
|
-
.de(de_StopCompositionCommand)
|
|
2629
|
+
.sc(StopComposition)
|
|
2576
2630
|
.build() {
|
|
2577
2631
|
}
|
|
2578
2632
|
|
|
@@ -2580,16 +2634,11 @@ class StopParticipantReplicationCommand extends smithyClient.Command
|
|
|
2580
2634
|
.classBuilder()
|
|
2581
2635
|
.ep(commonParams)
|
|
2582
2636
|
.m(function (Command, cs, config, o) {
|
|
2583
|
-
return [
|
|
2584
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2585
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2586
|
-
];
|
|
2637
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2587
2638
|
})
|
|
2588
2639
|
.s("AmazonInteractiveVideoServiceRealTime", "StopParticipantReplication", {})
|
|
2589
2640
|
.n("IVSRealTimeClient", "StopParticipantReplicationCommand")
|
|
2590
|
-
.
|
|
2591
|
-
.ser(se_StopParticipantReplicationCommand)
|
|
2592
|
-
.de(de_StopParticipantReplicationCommand)
|
|
2641
|
+
.sc(StopParticipantReplication)
|
|
2593
2642
|
.build() {
|
|
2594
2643
|
}
|
|
2595
2644
|
|
|
@@ -2597,16 +2646,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2597
2646
|
.classBuilder()
|
|
2598
2647
|
.ep(commonParams)
|
|
2599
2648
|
.m(function (Command, cs, config, o) {
|
|
2600
|
-
return [
|
|
2601
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2602
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2603
|
-
];
|
|
2649
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2604
2650
|
})
|
|
2605
2651
|
.s("AmazonInteractiveVideoServiceRealTime", "TagResource", {})
|
|
2606
2652
|
.n("IVSRealTimeClient", "TagResourceCommand")
|
|
2607
|
-
.
|
|
2608
|
-
.ser(se_TagResourceCommand)
|
|
2609
|
-
.de(de_TagResourceCommand)
|
|
2653
|
+
.sc(TagResource)
|
|
2610
2654
|
.build() {
|
|
2611
2655
|
}
|
|
2612
2656
|
|
|
@@ -2614,16 +2658,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2614
2658
|
.classBuilder()
|
|
2615
2659
|
.ep(commonParams)
|
|
2616
2660
|
.m(function (Command, cs, config, o) {
|
|
2617
|
-
return [
|
|
2618
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2619
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2620
|
-
];
|
|
2661
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2621
2662
|
})
|
|
2622
2663
|
.s("AmazonInteractiveVideoServiceRealTime", "UntagResource", {})
|
|
2623
2664
|
.n("IVSRealTimeClient", "UntagResourceCommand")
|
|
2624
|
-
.
|
|
2625
|
-
.ser(se_UntagResourceCommand)
|
|
2626
|
-
.de(de_UntagResourceCommand)
|
|
2665
|
+
.sc(UntagResource)
|
|
2627
2666
|
.build() {
|
|
2628
2667
|
}
|
|
2629
2668
|
|
|
@@ -2631,16 +2670,11 @@ class UpdateIngestConfigurationCommand extends smithyClient.Command
|
|
|
2631
2670
|
.classBuilder()
|
|
2632
2671
|
.ep(commonParams)
|
|
2633
2672
|
.m(function (Command, cs, config, o) {
|
|
2634
|
-
return [
|
|
2635
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2636
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2637
|
-
];
|
|
2673
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2638
2674
|
})
|
|
2639
2675
|
.s("AmazonInteractiveVideoServiceRealTime", "UpdateIngestConfiguration", {})
|
|
2640
2676
|
.n("IVSRealTimeClient", "UpdateIngestConfigurationCommand")
|
|
2641
|
-
.
|
|
2642
|
-
.ser(se_UpdateIngestConfigurationCommand)
|
|
2643
|
-
.de(de_UpdateIngestConfigurationCommand)
|
|
2677
|
+
.sc(UpdateIngestConfiguration)
|
|
2644
2678
|
.build() {
|
|
2645
2679
|
}
|
|
2646
2680
|
|
|
@@ -2648,16 +2682,11 @@ class UpdateStageCommand extends smithyClient.Command
|
|
|
2648
2682
|
.classBuilder()
|
|
2649
2683
|
.ep(commonParams)
|
|
2650
2684
|
.m(function (Command, cs, config, o) {
|
|
2651
|
-
return [
|
|
2652
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
2653
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2654
|
-
];
|
|
2685
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2655
2686
|
})
|
|
2656
2687
|
.s("AmazonInteractiveVideoServiceRealTime", "UpdateStage", {})
|
|
2657
2688
|
.n("IVSRealTimeClient", "UpdateStageCommand")
|
|
2658
|
-
.
|
|
2659
|
-
.ser(se_UpdateStageCommand)
|
|
2660
|
-
.de(de_UpdateStageCommand)
|
|
2689
|
+
.sc(UpdateStage)
|
|
2661
2690
|
.build() {
|
|
2662
2691
|
}
|
|
2663
2692
|
|
|
@@ -2734,16 +2763,13 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2734
2763
|
enumerable: true,
|
|
2735
2764
|
get: function () { return smithyClient.Client; }
|
|
2736
2765
|
});
|
|
2737
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
2766
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
2738
2767
|
exports.CompositionState = CompositionState;
|
|
2739
|
-
exports.ConflictException = ConflictException;
|
|
2768
|
+
exports.ConflictException = ConflictException$1;
|
|
2740
2769
|
exports.CreateEncoderConfigurationCommand = CreateEncoderConfigurationCommand;
|
|
2741
2770
|
exports.CreateIngestConfigurationCommand = CreateIngestConfigurationCommand;
|
|
2742
|
-
exports.CreateIngestConfigurationResponseFilterSensitiveLog = CreateIngestConfigurationResponseFilterSensitiveLog;
|
|
2743
2771
|
exports.CreateParticipantTokenCommand = CreateParticipantTokenCommand;
|
|
2744
|
-
exports.CreateParticipantTokenResponseFilterSensitiveLog = CreateParticipantTokenResponseFilterSensitiveLog;
|
|
2745
2772
|
exports.CreateStageCommand = CreateStageCommand;
|
|
2746
|
-
exports.CreateStageResponseFilterSensitiveLog = CreateStageResponseFilterSensitiveLog;
|
|
2747
2773
|
exports.CreateStorageConfigurationCommand = CreateStorageConfigurationCommand;
|
|
2748
2774
|
exports.DeleteEncoderConfigurationCommand = DeleteEncoderConfigurationCommand;
|
|
2749
2775
|
exports.DeleteIngestConfigurationCommand = DeleteIngestConfigurationCommand;
|
|
@@ -2757,7 +2783,6 @@ exports.EventName = EventName;
|
|
|
2757
2783
|
exports.GetCompositionCommand = GetCompositionCommand;
|
|
2758
2784
|
exports.GetEncoderConfigurationCommand = GetEncoderConfigurationCommand;
|
|
2759
2785
|
exports.GetIngestConfigurationCommand = GetIngestConfigurationCommand;
|
|
2760
|
-
exports.GetIngestConfigurationResponseFilterSensitiveLog = GetIngestConfigurationResponseFilterSensitiveLog;
|
|
2761
2786
|
exports.GetParticipantCommand = GetParticipantCommand;
|
|
2762
2787
|
exports.GetPublicKeyCommand = GetPublicKeyCommand;
|
|
2763
2788
|
exports.GetStageCommand = GetStageCommand;
|
|
@@ -2765,12 +2790,11 @@ exports.GetStageSessionCommand = GetStageSessionCommand;
|
|
|
2765
2790
|
exports.GetStorageConfigurationCommand = GetStorageConfigurationCommand;
|
|
2766
2791
|
exports.IVSRealTime = IVSRealTime;
|
|
2767
2792
|
exports.IVSRealTimeClient = IVSRealTimeClient;
|
|
2768
|
-
exports.IVSRealTimeServiceException = IVSRealTimeServiceException;
|
|
2793
|
+
exports.IVSRealTimeServiceException = IVSRealTimeServiceException$1;
|
|
2769
2794
|
exports.ImportPublicKeyCommand = ImportPublicKeyCommand;
|
|
2770
|
-
exports.IngestConfigurationFilterSensitiveLog = IngestConfigurationFilterSensitiveLog;
|
|
2771
2795
|
exports.IngestConfigurationState = IngestConfigurationState;
|
|
2772
2796
|
exports.IngestProtocol = IngestProtocol;
|
|
2773
|
-
exports.InternalServerException = InternalServerException;
|
|
2797
|
+
exports.InternalServerException = InternalServerException$1;
|
|
2774
2798
|
exports.ListCompositionsCommand = ListCompositionsCommand;
|
|
2775
2799
|
exports.ListEncoderConfigurationsCommand = ListEncoderConfigurationsCommand;
|
|
2776
2800
|
exports.ListIngestConfigurationsCommand = ListIngestConfigurationsCommand;
|
|
@@ -2788,15 +2812,14 @@ exports.ParticipantRecordingMediaType = ParticipantRecordingMediaType;
|
|
|
2788
2812
|
exports.ParticipantRecordingState = ParticipantRecordingState;
|
|
2789
2813
|
exports.ParticipantState = ParticipantState;
|
|
2790
2814
|
exports.ParticipantTokenCapability = ParticipantTokenCapability;
|
|
2791
|
-
exports.
|
|
2792
|
-
exports.PendingVerification = PendingVerification;
|
|
2815
|
+
exports.PendingVerification = PendingVerification$1;
|
|
2793
2816
|
exports.PipBehavior = PipBehavior;
|
|
2794
2817
|
exports.PipPosition = PipPosition;
|
|
2795
2818
|
exports.RecordingConfigurationFormat = RecordingConfigurationFormat;
|
|
2796
2819
|
exports.ReplicationState = ReplicationState;
|
|
2797
2820
|
exports.ReplicationType = ReplicationType;
|
|
2798
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2799
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2821
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2822
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2800
2823
|
exports.StartCompositionCommand = StartCompositionCommand;
|
|
2801
2824
|
exports.StartParticipantReplicationCommand = StartParticipantReplicationCommand;
|
|
2802
2825
|
exports.StopCompositionCommand = StopCompositionCommand;
|
|
@@ -2806,9 +2829,8 @@ exports.ThumbnailRecordingMode = ThumbnailRecordingMode;
|
|
|
2806
2829
|
exports.ThumbnailStorageType = ThumbnailStorageType;
|
|
2807
2830
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2808
2831
|
exports.UpdateIngestConfigurationCommand = UpdateIngestConfigurationCommand;
|
|
2809
|
-
exports.UpdateIngestConfigurationResponseFilterSensitiveLog = UpdateIngestConfigurationResponseFilterSensitiveLog;
|
|
2810
2832
|
exports.UpdateStageCommand = UpdateStageCommand;
|
|
2811
|
-
exports.ValidationException = ValidationException;
|
|
2833
|
+
exports.ValidationException = ValidationException$1;
|
|
2812
2834
|
exports.VideoAspectRatio = VideoAspectRatio;
|
|
2813
2835
|
exports.VideoFillMode = VideoFillMode;
|
|
2814
2836
|
exports.paginateListCompositions = paginateListCompositions;
|