@aws-sdk/client-kinesis-video 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.
Files changed (54) hide show
  1. package/dist-cjs/index.js +1111 -1478
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/KinesisVideoClient.js +2 -0
  4. package/dist-es/commands/CreateSignalingChannelCommand.js +3 -9
  5. package/dist-es/commands/CreateStreamCommand.js +3 -9
  6. package/dist-es/commands/DeleteEdgeConfigurationCommand.js +3 -9
  7. package/dist-es/commands/DeleteSignalingChannelCommand.js +3 -9
  8. package/dist-es/commands/DeleteStreamCommand.js +3 -9
  9. package/dist-es/commands/DescribeEdgeConfigurationCommand.js +3 -10
  10. package/dist-es/commands/DescribeImageGenerationConfigurationCommand.js +3 -9
  11. package/dist-es/commands/DescribeMappedResourceConfigurationCommand.js +3 -9
  12. package/dist-es/commands/DescribeMediaStorageConfigurationCommand.js +3 -9
  13. package/dist-es/commands/DescribeNotificationConfigurationCommand.js +3 -9
  14. package/dist-es/commands/DescribeSignalingChannelCommand.js +3 -9
  15. package/dist-es/commands/DescribeStreamCommand.js +3 -9
  16. package/dist-es/commands/GetDataEndpointCommand.js +3 -9
  17. package/dist-es/commands/GetSignalingChannelEndpointCommand.js +3 -9
  18. package/dist-es/commands/ListEdgeAgentConfigurationsCommand.js +3 -10
  19. package/dist-es/commands/ListSignalingChannelsCommand.js +3 -9
  20. package/dist-es/commands/ListStreamsCommand.js +3 -9
  21. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  22. package/dist-es/commands/ListTagsForStreamCommand.js +3 -9
  23. package/dist-es/commands/StartEdgeConfigurationUpdateCommand.js +3 -10
  24. package/dist-es/commands/TagResourceCommand.js +3 -9
  25. package/dist-es/commands/TagStreamCommand.js +3 -9
  26. package/dist-es/commands/UntagResourceCommand.js +3 -9
  27. package/dist-es/commands/UntagStreamCommand.js +3 -9
  28. package/dist-es/commands/UpdateDataRetentionCommand.js +3 -9
  29. package/dist-es/commands/UpdateImageGenerationConfigurationCommand.js +3 -9
  30. package/dist-es/commands/UpdateMediaStorageConfigurationCommand.js +3 -9
  31. package/dist-es/commands/UpdateNotificationConfigurationCommand.js +3 -9
  32. package/dist-es/commands/UpdateSignalingChannelCommand.js +3 -9
  33. package/dist-es/commands/UpdateStreamCommand.js +3 -9
  34. package/dist-es/models/models_0.js +0 -35
  35. package/dist-es/runtimeConfig.shared.js +2 -0
  36. package/dist-es/schemas/schemas_0.js +1009 -0
  37. package/dist-types/KinesisVideoClient.d.ts +10 -1
  38. package/dist-types/models/models_0.d.ts +0 -32
  39. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  40. package/dist-types/runtimeConfig.d.ts +1 -0
  41. package/dist-types/runtimeConfig.native.d.ts +1 -0
  42. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  43. package/dist-types/schemas/schemas_0.d.ts +145 -0
  44. package/dist-types/ts3.4/KinesisVideoClient.d.ts +4 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +0 -22
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  50. package/dist-types/ts3.4/schemas/schemas_0.d.ts +151 -0
  51. package/package.json +2 -2
  52. package/dist-es/protocols/Aws_restJson1.js +0 -1182
  53. package/dist-types/protocols/Aws_restJson1.d.ts +0 -272
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -365
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,8 +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
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class KinesisVideoClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -110,14 +110,14 @@ class KinesisVideoClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class KinesisVideoServiceException extends smithyClient.ServiceException {
113
+ let KinesisVideoServiceException$1 = class KinesisVideoServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, KinesisVideoServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
- class AccessDeniedException extends KinesisVideoServiceException {
120
+ let AccessDeniedException$1 = class AccessDeniedException extends KinesisVideoServiceException$1 {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  Message;
@@ -130,8 +130,8 @@ class AccessDeniedException extends KinesisVideoServiceException {
130
130
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- }
134
- class AccountChannelLimitExceededException extends KinesisVideoServiceException {
133
+ };
134
+ let AccountChannelLimitExceededException$1 = class AccountChannelLimitExceededException extends KinesisVideoServiceException$1 {
135
135
  name = "AccountChannelLimitExceededException";
136
136
  $fault = "client";
137
137
  Message;
@@ -144,8 +144,8 @@ class AccountChannelLimitExceededException extends KinesisVideoServiceException
144
144
  Object.setPrototypeOf(this, AccountChannelLimitExceededException.prototype);
145
145
  this.Message = opts.Message;
146
146
  }
147
- }
148
- class AccountStreamLimitExceededException extends KinesisVideoServiceException {
147
+ };
148
+ let AccountStreamLimitExceededException$1 = class AccountStreamLimitExceededException extends KinesisVideoServiceException$1 {
149
149
  name = "AccountStreamLimitExceededException";
150
150
  $fault = "client";
151
151
  Message;
@@ -158,7 +158,7 @@ class AccountStreamLimitExceededException extends KinesisVideoServiceException {
158
158
  Object.setPrototypeOf(this, AccountStreamLimitExceededException.prototype);
159
159
  this.Message = opts.Message;
160
160
  }
161
- }
161
+ };
162
162
  const APIName = {
163
163
  GET_CLIP: "GET_CLIP",
164
164
  GET_DASH_STREAMING_SESSION_URL: "GET_DASH_STREAMING_SESSION_URL",
@@ -191,7 +191,7 @@ const ChannelRole = {
191
191
  MASTER: "MASTER",
192
192
  VIEWER: "VIEWER",
193
193
  };
194
- class ClientLimitExceededException extends KinesisVideoServiceException {
194
+ let ClientLimitExceededException$1 = class ClientLimitExceededException extends KinesisVideoServiceException$1 {
195
195
  name = "ClientLimitExceededException";
196
196
  $fault = "client";
197
197
  Message;
@@ -204,12 +204,12 @@ class ClientLimitExceededException extends KinesisVideoServiceException {
204
204
  Object.setPrototypeOf(this, ClientLimitExceededException.prototype);
205
205
  this.Message = opts.Message;
206
206
  }
207
- }
207
+ };
208
208
  const ConfigurationStatus = {
209
209
  DISABLED: "DISABLED",
210
210
  ENABLED: "ENABLED",
211
211
  };
212
- class InvalidArgumentException extends KinesisVideoServiceException {
212
+ let InvalidArgumentException$1 = class InvalidArgumentException extends KinesisVideoServiceException$1 {
213
213
  name = "InvalidArgumentException";
214
214
  $fault = "client";
215
215
  Message;
@@ -222,8 +222,8 @@ class InvalidArgumentException extends KinesisVideoServiceException {
222
222
  Object.setPrototypeOf(this, InvalidArgumentException.prototype);
223
223
  this.Message = opts.Message;
224
224
  }
225
- }
226
- class ResourceInUseException extends KinesisVideoServiceException {
225
+ };
226
+ let ResourceInUseException$1 = class ResourceInUseException extends KinesisVideoServiceException$1 {
227
227
  name = "ResourceInUseException";
228
228
  $fault = "client";
229
229
  Message;
@@ -236,8 +236,8 @@ class ResourceInUseException extends KinesisVideoServiceException {
236
236
  Object.setPrototypeOf(this, ResourceInUseException.prototype);
237
237
  this.Message = opts.Message;
238
238
  }
239
- }
240
- class TagsPerResourceExceededLimitException extends KinesisVideoServiceException {
239
+ };
240
+ let TagsPerResourceExceededLimitException$1 = class TagsPerResourceExceededLimitException extends KinesisVideoServiceException$1 {
241
241
  name = "TagsPerResourceExceededLimitException";
242
242
  $fault = "client";
243
243
  Message;
@@ -250,8 +250,8 @@ class TagsPerResourceExceededLimitException extends KinesisVideoServiceException
250
250
  Object.setPrototypeOf(this, TagsPerResourceExceededLimitException.prototype);
251
251
  this.Message = opts.Message;
252
252
  }
253
- }
254
- class DeviceStreamLimitExceededException extends KinesisVideoServiceException {
253
+ };
254
+ let DeviceStreamLimitExceededException$1 = class DeviceStreamLimitExceededException extends KinesisVideoServiceException$1 {
255
255
  name = "DeviceStreamLimitExceededException";
256
256
  $fault = "client";
257
257
  Message;
@@ -264,8 +264,8 @@ class DeviceStreamLimitExceededException extends KinesisVideoServiceException {
264
264
  Object.setPrototypeOf(this, DeviceStreamLimitExceededException.prototype);
265
265
  this.Message = opts.Message;
266
266
  }
267
- }
268
- class InvalidDeviceException extends KinesisVideoServiceException {
267
+ };
268
+ let InvalidDeviceException$1 = class InvalidDeviceException extends KinesisVideoServiceException$1 {
269
269
  name = "InvalidDeviceException";
270
270
  $fault = "client";
271
271
  Message;
@@ -278,8 +278,8 @@ class InvalidDeviceException extends KinesisVideoServiceException {
278
278
  Object.setPrototypeOf(this, InvalidDeviceException.prototype);
279
279
  this.Message = opts.Message;
280
280
  }
281
- }
282
- class ResourceNotFoundException extends KinesisVideoServiceException {
281
+ };
282
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends KinesisVideoServiceException$1 {
283
283
  name = "ResourceNotFoundException";
284
284
  $fault = "client";
285
285
  Message;
@@ -292,8 +292,8 @@ class ResourceNotFoundException extends KinesisVideoServiceException {
292
292
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
293
293
  this.Message = opts.Message;
294
294
  }
295
- }
296
- class StreamEdgeConfigurationNotFoundException extends KinesisVideoServiceException {
295
+ };
296
+ let StreamEdgeConfigurationNotFoundException$1 = class StreamEdgeConfigurationNotFoundException extends KinesisVideoServiceException$1 {
297
297
  name = "StreamEdgeConfigurationNotFoundException";
298
298
  $fault = "client";
299
299
  Message;
@@ -306,8 +306,8 @@ class StreamEdgeConfigurationNotFoundException extends KinesisVideoServiceExcept
306
306
  Object.setPrototypeOf(this, StreamEdgeConfigurationNotFoundException.prototype);
307
307
  this.Message = opts.Message;
308
308
  }
309
- }
310
- class VersionMismatchException extends KinesisVideoServiceException {
309
+ };
310
+ let VersionMismatchException$1 = class VersionMismatchException extends KinesisVideoServiceException$1 {
311
311
  name = "VersionMismatchException";
312
312
  $fault = "client";
313
313
  Message;
@@ -320,8 +320,8 @@ class VersionMismatchException extends KinesisVideoServiceException {
320
320
  Object.setPrototypeOf(this, VersionMismatchException.prototype);
321
321
  this.Message = opts.Message;
322
322
  }
323
- }
324
- class NotAuthorizedException extends KinesisVideoServiceException {
323
+ };
324
+ let NotAuthorizedException$1 = class NotAuthorizedException extends KinesisVideoServiceException$1 {
325
325
  name = "NotAuthorizedException";
326
326
  $fault = "client";
327
327
  Message;
@@ -334,7 +334,7 @@ class NotAuthorizedException extends KinesisVideoServiceException {
334
334
  Object.setPrototypeOf(this, NotAuthorizedException.prototype);
335
335
  this.Message = opts.Message;
336
336
  }
337
- }
337
+ };
338
338
  const StrategyOnFullSize = {
339
339
  DELETE_OLDEST_MEDIA: "DELETE_OLDEST_MEDIA",
340
340
  DENY_NEW_MEDIA: "DENY_NEW_MEDIA",
@@ -377,7 +377,7 @@ const MediaStorageConfigurationStatus = {
377
377
  DISABLED: "DISABLED",
378
378
  ENABLED: "ENABLED",
379
379
  };
380
- class InvalidResourceFormatException extends KinesisVideoServiceException {
380
+ let InvalidResourceFormatException$1 = class InvalidResourceFormatException extends KinesisVideoServiceException$1 {
381
381
  name = "InvalidResourceFormatException";
382
382
  $fault = "client";
383
383
  Message;
@@ -390,8 +390,8 @@ class InvalidResourceFormatException extends KinesisVideoServiceException {
390
390
  Object.setPrototypeOf(this, InvalidResourceFormatException.prototype);
391
391
  this.Message = opts.Message;
392
392
  }
393
- }
394
- class NoDataRetentionException extends KinesisVideoServiceException {
393
+ };
394
+ let NoDataRetentionException$1 = class NoDataRetentionException extends KinesisVideoServiceException$1 {
395
395
  name = "NoDataRetentionException";
396
396
  $fault = "client";
397
397
  Message;
@@ -404,1237 +404,1023 @@ class NoDataRetentionException extends KinesisVideoServiceException {
404
404
  Object.setPrototypeOf(this, NoDataRetentionException.prototype);
405
405
  this.Message = opts.Message;
406
406
  }
407
- }
407
+ };
408
408
  const UpdateDataRetentionOperation = {
409
409
  DECREASE_DATA_RETENTION: "DECREASE_DATA_RETENTION",
410
410
  INCREASE_DATA_RETENTION: "INCREASE_DATA_RETENTION",
411
411
  };
412
- const MediaSourceConfigFilterSensitiveLog = (obj) => ({
413
- ...obj,
414
- ...(obj.MediaUriSecretArn && { MediaUriSecretArn: smithyClient.SENSITIVE_STRING }),
415
- });
416
- const RecorderConfigFilterSensitiveLog = (obj) => ({
417
- ...obj,
418
- ...(obj.MediaSourceConfig && { MediaSourceConfig: MediaSourceConfigFilterSensitiveLog(obj.MediaSourceConfig) }),
419
- });
420
- const EdgeConfigFilterSensitiveLog = (obj) => ({
421
- ...obj,
422
- ...(obj.RecorderConfig && { RecorderConfig: RecorderConfigFilterSensitiveLog(obj.RecorderConfig) }),
423
- });
424
- const DescribeEdgeConfigurationOutputFilterSensitiveLog = (obj) => ({
425
- ...obj,
426
- ...(obj.EdgeConfig && { EdgeConfig: EdgeConfigFilterSensitiveLog(obj.EdgeConfig) }),
427
- });
428
- const ListEdgeAgentConfigurationsEdgeConfigFilterSensitiveLog = (obj) => ({
429
- ...obj,
430
- ...(obj.EdgeConfig && { EdgeConfig: EdgeConfigFilterSensitiveLog(obj.EdgeConfig) }),
431
- });
432
- const ListEdgeAgentConfigurationsOutputFilterSensitiveLog = (obj) => ({
433
- ...obj,
434
- ...(obj.EdgeConfigs && {
435
- EdgeConfigs: obj.EdgeConfigs.map((item) => ListEdgeAgentConfigurationsEdgeConfigFilterSensitiveLog(item)),
436
- }),
437
- });
438
- const StartEdgeConfigurationUpdateInputFilterSensitiveLog = (obj) => ({
439
- ...obj,
440
- ...(obj.EdgeConfig && { EdgeConfig: EdgeConfigFilterSensitiveLog(obj.EdgeConfig) }),
441
- });
442
- const StartEdgeConfigurationUpdateOutputFilterSensitiveLog = (obj) => ({
443
- ...obj,
444
- ...(obj.EdgeConfig && { EdgeConfig: EdgeConfigFilterSensitiveLog(obj.EdgeConfig) }),
445
- });
446
412
 
447
- const se_CreateSignalingChannelCommand = async (input, context) => {
448
- const b = core.requestBuilder(input, context);
449
- const headers = {
450
- "content-type": "application/json",
451
- };
452
- b.bp("/createSignalingChannel");
453
- let body;
454
- body = JSON.stringify(smithyClient.take(input, {
455
- ChannelName: [],
456
- ChannelType: [],
457
- SingleMasterConfiguration: (_) => smithyClient._json(_),
458
- Tags: (_) => smithyClient._json(_),
459
- }));
460
- b.m("POST").h(headers).b(body);
461
- return b.build();
462
- };
463
- const se_CreateStreamCommand = async (input, context) => {
464
- const b = core.requestBuilder(input, context);
465
- const headers = {
466
- "content-type": "application/json",
467
- };
468
- b.bp("/createStream");
469
- let body;
470
- body = JSON.stringify(smithyClient.take(input, {
471
- DataRetentionInHours: [],
472
- DeviceName: [],
473
- KmsKeyId: [],
474
- MediaType: [],
475
- StreamName: [],
476
- Tags: (_) => smithyClient._json(_),
477
- }));
478
- b.m("POST").h(headers).b(body);
479
- return b.build();
480
- };
481
- const se_DeleteEdgeConfigurationCommand = async (input, context) => {
482
- const b = core.requestBuilder(input, context);
483
- const headers = {
484
- "content-type": "application/json",
485
- };
486
- b.bp("/deleteEdgeConfiguration");
487
- let body;
488
- body = JSON.stringify(smithyClient.take(input, {
489
- StreamARN: [],
490
- StreamName: [],
491
- }));
492
- b.m("POST").h(headers).b(body);
493
- return b.build();
494
- };
495
- const se_DeleteSignalingChannelCommand = async (input, context) => {
496
- const b = core.requestBuilder(input, context);
497
- const headers = {
498
- "content-type": "application/json",
499
- };
500
- b.bp("/deleteSignalingChannel");
501
- let body;
502
- body = JSON.stringify(smithyClient.take(input, {
503
- ChannelARN: [],
504
- CurrentVersion: [],
505
- }));
506
- b.m("POST").h(headers).b(body);
507
- return b.build();
508
- };
509
- const se_DeleteStreamCommand = async (input, context) => {
510
- const b = core.requestBuilder(input, context);
511
- const headers = {
512
- "content-type": "application/json",
513
- };
514
- b.bp("/deleteStream");
515
- let body;
516
- body = JSON.stringify(smithyClient.take(input, {
517
- CurrentVersion: [],
518
- StreamARN: [],
519
- }));
520
- b.m("POST").h(headers).b(body);
521
- return b.build();
522
- };
523
- const se_DescribeEdgeConfigurationCommand = async (input, context) => {
524
- const b = core.requestBuilder(input, context);
525
- const headers = {
526
- "content-type": "application/json",
527
- };
528
- b.bp("/describeEdgeConfiguration");
529
- let body;
530
- body = JSON.stringify(smithyClient.take(input, {
531
- StreamARN: [],
532
- StreamName: [],
533
- }));
534
- b.m("POST").h(headers).b(body);
535
- return b.build();
536
- };
537
- const se_DescribeImageGenerationConfigurationCommand = async (input, context) => {
538
- const b = core.requestBuilder(input, context);
539
- const headers = {
540
- "content-type": "application/json",
541
- };
542
- b.bp("/describeImageGenerationConfiguration");
543
- let body;
544
- body = JSON.stringify(smithyClient.take(input, {
545
- StreamARN: [],
546
- StreamName: [],
547
- }));
548
- b.m("POST").h(headers).b(body);
549
- return b.build();
550
- };
551
- const se_DescribeMappedResourceConfigurationCommand = async (input, context) => {
552
- const b = core.requestBuilder(input, context);
553
- const headers = {
554
- "content-type": "application/json",
555
- };
556
- b.bp("/describeMappedResourceConfiguration");
557
- let body;
558
- body = JSON.stringify(smithyClient.take(input, {
559
- MaxResults: [],
560
- NextToken: [],
561
- StreamARN: [],
562
- StreamName: [],
563
- }));
564
- b.m("POST").h(headers).b(body);
565
- return b.build();
566
- };
567
- const se_DescribeMediaStorageConfigurationCommand = async (input, context) => {
568
- const b = core.requestBuilder(input, context);
569
- const headers = {
570
- "content-type": "application/json",
571
- };
572
- b.bp("/describeMediaStorageConfiguration");
573
- let body;
574
- body = JSON.stringify(smithyClient.take(input, {
575
- ChannelARN: [],
576
- ChannelName: [],
577
- }));
578
- b.m("POST").h(headers).b(body);
579
- return b.build();
580
- };
581
- const se_DescribeNotificationConfigurationCommand = async (input, context) => {
582
- const b = core.requestBuilder(input, context);
583
- const headers = {
584
- "content-type": "application/json",
585
- };
586
- b.bp("/describeNotificationConfiguration");
587
- let body;
588
- body = JSON.stringify(smithyClient.take(input, {
589
- StreamARN: [],
590
- StreamName: [],
591
- }));
592
- b.m("POST").h(headers).b(body);
593
- return b.build();
594
- };
595
- const se_DescribeSignalingChannelCommand = async (input, context) => {
596
- const b = core.requestBuilder(input, context);
597
- const headers = {
598
- "content-type": "application/json",
599
- };
600
- b.bp("/describeSignalingChannel");
601
- let body;
602
- body = JSON.stringify(smithyClient.take(input, {
603
- ChannelARN: [],
604
- ChannelName: [],
605
- }));
606
- b.m("POST").h(headers).b(body);
607
- return b.build();
608
- };
609
- const se_DescribeStreamCommand = async (input, context) => {
610
- const b = core.requestBuilder(input, context);
611
- const headers = {
612
- "content-type": "application/json",
613
- };
614
- b.bp("/describeStream");
615
- let body;
616
- body = JSON.stringify(smithyClient.take(input, {
617
- StreamARN: [],
618
- StreamName: [],
619
- }));
620
- b.m("POST").h(headers).b(body);
621
- return b.build();
622
- };
623
- const se_GetDataEndpointCommand = async (input, context) => {
624
- const b = core.requestBuilder(input, context);
625
- const headers = {
626
- "content-type": "application/json",
627
- };
628
- b.bp("/getDataEndpoint");
629
- let body;
630
- body = JSON.stringify(smithyClient.take(input, {
631
- APIName: [],
632
- StreamARN: [],
633
- StreamName: [],
634
- }));
635
- b.m("POST").h(headers).b(body);
636
- return b.build();
637
- };
638
- const se_GetSignalingChannelEndpointCommand = async (input, context) => {
639
- const b = core.requestBuilder(input, context);
640
- const headers = {
641
- "content-type": "application/json",
642
- };
643
- b.bp("/getSignalingChannelEndpoint");
644
- let body;
645
- body = JSON.stringify(smithyClient.take(input, {
646
- ChannelARN: [],
647
- SingleMasterChannelEndpointConfiguration: (_) => smithyClient._json(_),
648
- }));
649
- b.m("POST").h(headers).b(body);
650
- return b.build();
651
- };
652
- const se_ListEdgeAgentConfigurationsCommand = async (input, context) => {
653
- const b = core.requestBuilder(input, context);
654
- const headers = {
655
- "content-type": "application/json",
656
- };
657
- b.bp("/listEdgeAgentConfigurations");
658
- let body;
659
- body = JSON.stringify(smithyClient.take(input, {
660
- HubDeviceArn: [],
661
- MaxResults: [],
662
- NextToken: [],
663
- }));
664
- b.m("POST").h(headers).b(body);
665
- return b.build();
666
- };
667
- const se_ListSignalingChannelsCommand = async (input, context) => {
668
- const b = core.requestBuilder(input, context);
669
- const headers = {
670
- "content-type": "application/json",
671
- };
672
- b.bp("/listSignalingChannels");
673
- let body;
674
- body = JSON.stringify(smithyClient.take(input, {
675
- ChannelNameCondition: (_) => smithyClient._json(_),
676
- MaxResults: [],
677
- NextToken: [],
678
- }));
679
- b.m("POST").h(headers).b(body);
680
- return b.build();
681
- };
682
- const se_ListStreamsCommand = async (input, context) => {
683
- const b = core.requestBuilder(input, context);
684
- const headers = {
685
- "content-type": "application/json",
686
- };
687
- b.bp("/listStreams");
688
- let body;
689
- body = JSON.stringify(smithyClient.take(input, {
690
- MaxResults: [],
691
- NextToken: [],
692
- StreamNameCondition: (_) => smithyClient._json(_),
693
- }));
694
- b.m("POST").h(headers).b(body);
695
- return b.build();
696
- };
697
- const se_ListTagsForResourceCommand = async (input, context) => {
698
- const b = core.requestBuilder(input, context);
699
- const headers = {
700
- "content-type": "application/json",
701
- };
702
- b.bp("/ListTagsForResource");
703
- let body;
704
- body = JSON.stringify(smithyClient.take(input, {
705
- NextToken: [],
706
- ResourceARN: [],
707
- }));
708
- b.m("POST").h(headers).b(body);
709
- return b.build();
710
- };
711
- const se_ListTagsForStreamCommand = async (input, context) => {
712
- const b = core.requestBuilder(input, context);
713
- const headers = {
714
- "content-type": "application/json",
715
- };
716
- b.bp("/listTagsForStream");
717
- let body;
718
- body = JSON.stringify(smithyClient.take(input, {
719
- NextToken: [],
720
- StreamARN: [],
721
- StreamName: [],
722
- }));
723
- b.m("POST").h(headers).b(body);
724
- return b.build();
725
- };
726
- const se_StartEdgeConfigurationUpdateCommand = async (input, context) => {
727
- const b = core.requestBuilder(input, context);
728
- const headers = {
729
- "content-type": "application/json",
730
- };
731
- b.bp("/startEdgeConfigurationUpdate");
732
- let body;
733
- body = JSON.stringify(smithyClient.take(input, {
734
- EdgeConfig: (_) => smithyClient._json(_),
735
- StreamARN: [],
736
- StreamName: [],
737
- }));
738
- b.m("POST").h(headers).b(body);
739
- return b.build();
740
- };
741
- const se_TagResourceCommand = async (input, context) => {
742
- const b = core.requestBuilder(input, context);
743
- const headers = {
744
- "content-type": "application/json",
745
- };
746
- b.bp("/TagResource");
747
- let body;
748
- body = JSON.stringify(smithyClient.take(input, {
749
- ResourceARN: [],
750
- Tags: (_) => smithyClient._json(_),
751
- }));
752
- b.m("POST").h(headers).b(body);
753
- return b.build();
754
- };
755
- const se_TagStreamCommand = async (input, context) => {
756
- const b = core.requestBuilder(input, context);
757
- const headers = {
758
- "content-type": "application/json",
759
- };
760
- b.bp("/tagStream");
761
- let body;
762
- body = JSON.stringify(smithyClient.take(input, {
763
- StreamARN: [],
764
- StreamName: [],
765
- Tags: (_) => smithyClient._json(_),
766
- }));
767
- b.m("POST").h(headers).b(body);
768
- return b.build();
769
- };
770
- const se_UntagResourceCommand = async (input, context) => {
771
- const b = core.requestBuilder(input, context);
772
- const headers = {
773
- "content-type": "application/json",
774
- };
775
- b.bp("/UntagResource");
776
- let body;
777
- body = JSON.stringify(smithyClient.take(input, {
778
- ResourceARN: [],
779
- TagKeyList: (_) => smithyClient._json(_),
780
- }));
781
- b.m("POST").h(headers).b(body);
782
- return b.build();
783
- };
784
- const se_UntagStreamCommand = async (input, context) => {
785
- const b = core.requestBuilder(input, context);
786
- const headers = {
787
- "content-type": "application/json",
788
- };
789
- b.bp("/untagStream");
790
- let body;
791
- body = JSON.stringify(smithyClient.take(input, {
792
- StreamARN: [],
793
- StreamName: [],
794
- TagKeyList: (_) => smithyClient._json(_),
795
- }));
796
- b.m("POST").h(headers).b(body);
797
- return b.build();
798
- };
799
- const se_UpdateDataRetentionCommand = async (input, context) => {
800
- const b = core.requestBuilder(input, context);
801
- const headers = {
802
- "content-type": "application/json",
803
- };
804
- b.bp("/updateDataRetention");
805
- let body;
806
- body = JSON.stringify(smithyClient.take(input, {
807
- CurrentVersion: [],
808
- DataRetentionChangeInHours: [],
809
- Operation: [],
810
- StreamARN: [],
811
- StreamName: [],
812
- }));
813
- b.m("POST").h(headers).b(body);
814
- return b.build();
815
- };
816
- const se_UpdateImageGenerationConfigurationCommand = async (input, context) => {
817
- const b = core.requestBuilder(input, context);
818
- const headers = {
819
- "content-type": "application/json",
820
- };
821
- b.bp("/updateImageGenerationConfiguration");
822
- let body;
823
- body = JSON.stringify(smithyClient.take(input, {
824
- ImageGenerationConfiguration: (_) => smithyClient._json(_),
825
- StreamARN: [],
826
- StreamName: [],
827
- }));
828
- b.m("POST").h(headers).b(body);
829
- return b.build();
830
- };
831
- const se_UpdateMediaStorageConfigurationCommand = async (input, context) => {
832
- const b = core.requestBuilder(input, context);
833
- const headers = {
834
- "content-type": "application/json",
835
- };
836
- b.bp("/updateMediaStorageConfiguration");
837
- let body;
838
- body = JSON.stringify(smithyClient.take(input, {
839
- ChannelARN: [],
840
- MediaStorageConfiguration: (_) => smithyClient._json(_),
841
- }));
842
- b.m("POST").h(headers).b(body);
843
- return b.build();
844
- };
845
- const se_UpdateNotificationConfigurationCommand = async (input, context) => {
846
- const b = core.requestBuilder(input, context);
847
- const headers = {
848
- "content-type": "application/json",
849
- };
850
- b.bp("/updateNotificationConfiguration");
851
- let body;
852
- body = JSON.stringify(smithyClient.take(input, {
853
- NotificationConfiguration: (_) => smithyClient._json(_),
854
- StreamARN: [],
855
- StreamName: [],
856
- }));
857
- b.m("POST").h(headers).b(body);
858
- return b.build();
859
- };
860
- const se_UpdateSignalingChannelCommand = async (input, context) => {
861
- const b = core.requestBuilder(input, context);
862
- const headers = {
863
- "content-type": "application/json",
864
- };
865
- b.bp("/updateSignalingChannel");
866
- let body;
867
- body = JSON.stringify(smithyClient.take(input, {
868
- ChannelARN: [],
869
- CurrentVersion: [],
870
- SingleMasterConfiguration: (_) => smithyClient._json(_),
871
- }));
872
- b.m("POST").h(headers).b(body);
873
- return b.build();
874
- };
875
- const se_UpdateStreamCommand = async (input, context) => {
876
- const b = core.requestBuilder(input, context);
877
- const headers = {
878
- "content-type": "application/json",
879
- };
880
- b.bp("/updateStream");
881
- let body;
882
- body = JSON.stringify(smithyClient.take(input, {
883
- CurrentVersion: [],
884
- DeviceName: [],
885
- MediaType: [],
886
- StreamARN: [],
887
- StreamName: [],
888
- }));
889
- b.m("POST").h(headers).b(body);
890
- return b.build();
891
- };
892
- const de_CreateSignalingChannelCommand = async (output, context) => {
893
- if (output.statusCode !== 200 && output.statusCode >= 300) {
894
- return de_CommandError(output, context);
895
- }
896
- const contents = smithyClient.map({
897
- $metadata: deserializeMetadata(output),
898
- });
899
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
900
- const doc = smithyClient.take(data, {
901
- ChannelARN: smithyClient.expectString,
902
- });
903
- Object.assign(contents, doc);
904
- return contents;
905
- };
906
- const de_CreateStreamCommand = async (output, context) => {
907
- if (output.statusCode !== 200 && output.statusCode >= 300) {
908
- return de_CommandError(output, context);
909
- }
910
- const contents = smithyClient.map({
911
- $metadata: deserializeMetadata(output),
912
- });
913
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
914
- const doc = smithyClient.take(data, {
915
- StreamARN: smithyClient.expectString,
916
- });
917
- Object.assign(contents, doc);
918
- return contents;
919
- };
920
- const de_DeleteEdgeConfigurationCommand = async (output, context) => {
921
- if (output.statusCode !== 200 && output.statusCode >= 300) {
922
- return de_CommandError(output, context);
923
- }
924
- const contents = smithyClient.map({
925
- $metadata: deserializeMetadata(output),
926
- });
927
- await smithyClient.collectBody(output.body, context);
928
- return contents;
929
- };
930
- const de_DeleteSignalingChannelCommand = async (output, context) => {
931
- if (output.statusCode !== 200 && output.statusCode >= 300) {
932
- return de_CommandError(output, context);
933
- }
934
- const contents = smithyClient.map({
935
- $metadata: deserializeMetadata(output),
936
- });
937
- await smithyClient.collectBody(output.body, context);
938
- return contents;
939
- };
940
- const de_DeleteStreamCommand = async (output, context) => {
941
- if (output.statusCode !== 200 && output.statusCode >= 300) {
942
- return de_CommandError(output, context);
943
- }
944
- const contents = smithyClient.map({
945
- $metadata: deserializeMetadata(output),
946
- });
947
- await smithyClient.collectBody(output.body, context);
948
- return contents;
949
- };
950
- const de_DescribeEdgeConfigurationCommand = async (output, context) => {
951
- if (output.statusCode !== 200 && output.statusCode >= 300) {
952
- return de_CommandError(output, context);
953
- }
954
- const contents = smithyClient.map({
955
- $metadata: deserializeMetadata(output),
956
- });
957
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
958
- const doc = smithyClient.take(data, {
959
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
960
- EdgeAgentStatus: (_) => de_EdgeAgentStatus(_),
961
- EdgeConfig: smithyClient._json,
962
- FailedStatusDetails: smithyClient.expectString,
963
- LastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
964
- StreamARN: smithyClient.expectString,
965
- StreamName: smithyClient.expectString,
966
- SyncStatus: smithyClient.expectString,
967
- });
968
- Object.assign(contents, doc);
969
- return contents;
970
- };
971
- const de_DescribeImageGenerationConfigurationCommand = async (output, context) => {
972
- if (output.statusCode !== 200 && output.statusCode >= 300) {
973
- return de_CommandError(output, context);
974
- }
975
- const contents = smithyClient.map({
976
- $metadata: deserializeMetadata(output),
977
- });
978
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
979
- const doc = smithyClient.take(data, {
980
- ImageGenerationConfiguration: smithyClient._json,
981
- });
982
- Object.assign(contents, doc);
983
- return contents;
984
- };
985
- const de_DescribeMappedResourceConfigurationCommand = async (output, context) => {
986
- if (output.statusCode !== 200 && output.statusCode >= 300) {
987
- return de_CommandError(output, context);
988
- }
989
- const contents = smithyClient.map({
990
- $metadata: deserializeMetadata(output),
991
- });
992
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
993
- const doc = smithyClient.take(data, {
994
- MappedResourceConfigurationList: smithyClient._json,
995
- NextToken: smithyClient.expectString,
996
- });
997
- Object.assign(contents, doc);
998
- return contents;
999
- };
1000
- const de_DescribeMediaStorageConfigurationCommand = async (output, context) => {
1001
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1002
- return de_CommandError(output, context);
1003
- }
1004
- const contents = smithyClient.map({
1005
- $metadata: deserializeMetadata(output),
1006
- });
1007
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1008
- const doc = smithyClient.take(data, {
1009
- MediaStorageConfiguration: smithyClient._json,
1010
- });
1011
- Object.assign(contents, doc);
1012
- return contents;
1013
- };
1014
- const de_DescribeNotificationConfigurationCommand = async (output, context) => {
1015
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1016
- return de_CommandError(output, context);
1017
- }
1018
- const contents = smithyClient.map({
1019
- $metadata: deserializeMetadata(output),
1020
- });
1021
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1022
- const doc = smithyClient.take(data, {
1023
- NotificationConfiguration: smithyClient._json,
1024
- });
1025
- Object.assign(contents, doc);
1026
- return contents;
1027
- };
1028
- const de_DescribeSignalingChannelCommand = async (output, context) => {
1029
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1030
- return de_CommandError(output, context);
1031
- }
1032
- const contents = smithyClient.map({
1033
- $metadata: deserializeMetadata(output),
1034
- });
1035
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1036
- const doc = smithyClient.take(data, {
1037
- ChannelInfo: (_) => de_ChannelInfo(_),
1038
- });
1039
- Object.assign(contents, doc);
1040
- return contents;
1041
- };
1042
- const de_DescribeStreamCommand = async (output, context) => {
1043
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1044
- return de_CommandError(output, context);
1045
- }
1046
- const contents = smithyClient.map({
1047
- $metadata: deserializeMetadata(output),
1048
- });
1049
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1050
- const doc = smithyClient.take(data, {
1051
- StreamInfo: (_) => de_StreamInfo(_),
1052
- });
1053
- Object.assign(contents, doc);
1054
- return contents;
1055
- };
1056
- const de_GetDataEndpointCommand = async (output, context) => {
1057
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1058
- return de_CommandError(output, context);
1059
- }
1060
- const contents = smithyClient.map({
1061
- $metadata: deserializeMetadata(output),
1062
- });
1063
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1064
- const doc = smithyClient.take(data, {
1065
- DataEndpoint: smithyClient.expectString,
1066
- });
1067
- Object.assign(contents, doc);
1068
- return contents;
1069
- };
1070
- const de_GetSignalingChannelEndpointCommand = async (output, context) => {
1071
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1072
- return de_CommandError(output, context);
1073
- }
1074
- const contents = smithyClient.map({
1075
- $metadata: deserializeMetadata(output),
1076
- });
1077
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1078
- const doc = smithyClient.take(data, {
1079
- ResourceEndpointList: smithyClient._json,
1080
- });
1081
- Object.assign(contents, doc);
1082
- return contents;
1083
- };
1084
- const de_ListEdgeAgentConfigurationsCommand = async (output, context) => {
1085
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1086
- return de_CommandError(output, context);
1087
- }
1088
- const contents = smithyClient.map({
1089
- $metadata: deserializeMetadata(output),
1090
- });
1091
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1092
- const doc = smithyClient.take(data, {
1093
- EdgeConfigs: (_) => de_ListEdgeAgentConfigurationsEdgeConfigList(_),
1094
- NextToken: smithyClient.expectString,
1095
- });
1096
- Object.assign(contents, doc);
1097
- return contents;
1098
- };
1099
- const de_ListSignalingChannelsCommand = async (output, context) => {
1100
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1101
- return de_CommandError(output, context);
1102
- }
1103
- const contents = smithyClient.map({
1104
- $metadata: deserializeMetadata(output),
1105
- });
1106
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1107
- const doc = smithyClient.take(data, {
1108
- ChannelInfoList: (_) => de_ChannelInfoList(_),
1109
- NextToken: smithyClient.expectString,
1110
- });
1111
- Object.assign(contents, doc);
1112
- return contents;
1113
- };
1114
- const de_ListStreamsCommand = async (output, context) => {
1115
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1116
- return de_CommandError(output, context);
1117
- }
1118
- const contents = smithyClient.map({
1119
- $metadata: deserializeMetadata(output),
1120
- });
1121
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1122
- const doc = smithyClient.take(data, {
1123
- NextToken: smithyClient.expectString,
1124
- StreamInfoList: (_) => de_StreamInfoList(_),
1125
- });
1126
- Object.assign(contents, doc);
1127
- return contents;
1128
- };
1129
- const de_ListTagsForResourceCommand = async (output, context) => {
1130
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1131
- return de_CommandError(output, context);
1132
- }
1133
- const contents = smithyClient.map({
1134
- $metadata: deserializeMetadata(output),
1135
- });
1136
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1137
- const doc = smithyClient.take(data, {
1138
- NextToken: smithyClient.expectString,
1139
- Tags: smithyClient._json,
1140
- });
1141
- Object.assign(contents, doc);
1142
- return contents;
1143
- };
1144
- const de_ListTagsForStreamCommand = async (output, context) => {
1145
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1146
- return de_CommandError(output, context);
1147
- }
1148
- const contents = smithyClient.map({
1149
- $metadata: deserializeMetadata(output),
1150
- });
1151
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1152
- const doc = smithyClient.take(data, {
1153
- NextToken: smithyClient.expectString,
1154
- Tags: smithyClient._json,
1155
- });
1156
- Object.assign(contents, doc);
1157
- return contents;
1158
- };
1159
- const de_StartEdgeConfigurationUpdateCommand = async (output, context) => {
1160
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1161
- return de_CommandError(output, context);
1162
- }
1163
- const contents = smithyClient.map({
1164
- $metadata: deserializeMetadata(output),
1165
- });
1166
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1167
- const doc = smithyClient.take(data, {
1168
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1169
- EdgeConfig: smithyClient._json,
1170
- FailedStatusDetails: smithyClient.expectString,
1171
- LastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1172
- StreamARN: smithyClient.expectString,
1173
- StreamName: smithyClient.expectString,
1174
- SyncStatus: smithyClient.expectString,
1175
- });
1176
- Object.assign(contents, doc);
1177
- return contents;
1178
- };
1179
- const de_TagResourceCommand = async (output, context) => {
1180
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1181
- return de_CommandError(output, context);
1182
- }
1183
- const contents = smithyClient.map({
1184
- $metadata: deserializeMetadata(output),
1185
- });
1186
- await smithyClient.collectBody(output.body, context);
1187
- return contents;
1188
- };
1189
- const de_TagStreamCommand = async (output, context) => {
1190
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1191
- return de_CommandError(output, context);
1192
- }
1193
- const contents = smithyClient.map({
1194
- $metadata: deserializeMetadata(output),
1195
- });
1196
- await smithyClient.collectBody(output.body, context);
1197
- return contents;
1198
- };
1199
- const de_UntagResourceCommand = async (output, context) => {
1200
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1201
- return de_CommandError(output, context);
1202
- }
1203
- const contents = smithyClient.map({
1204
- $metadata: deserializeMetadata(output),
1205
- });
1206
- await smithyClient.collectBody(output.body, context);
1207
- return contents;
1208
- };
1209
- const de_UntagStreamCommand = async (output, context) => {
1210
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1211
- return de_CommandError(output, context);
1212
- }
1213
- const contents = smithyClient.map({
1214
- $metadata: deserializeMetadata(output),
1215
- });
1216
- await smithyClient.collectBody(output.body, context);
1217
- return contents;
1218
- };
1219
- const de_UpdateDataRetentionCommand = async (output, context) => {
1220
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1221
- return de_CommandError(output, context);
1222
- }
1223
- const contents = smithyClient.map({
1224
- $metadata: deserializeMetadata(output),
1225
- });
1226
- await smithyClient.collectBody(output.body, context);
1227
- return contents;
1228
- };
1229
- const de_UpdateImageGenerationConfigurationCommand = async (output, context) => {
1230
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1231
- return de_CommandError(output, context);
1232
- }
1233
- const contents = smithyClient.map({
1234
- $metadata: deserializeMetadata(output),
1235
- });
1236
- await smithyClient.collectBody(output.body, context);
1237
- return contents;
1238
- };
1239
- const de_UpdateMediaStorageConfigurationCommand = async (output, context) => {
1240
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1241
- return de_CommandError(output, context);
1242
- }
1243
- const contents = smithyClient.map({
1244
- $metadata: deserializeMetadata(output),
1245
- });
1246
- await smithyClient.collectBody(output.body, context);
1247
- return contents;
1248
- };
1249
- const de_UpdateNotificationConfigurationCommand = 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
- await smithyClient.collectBody(output.body, context);
1257
- return contents;
1258
- };
1259
- const de_UpdateSignalingChannelCommand = async (output, context) => {
1260
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1261
- return de_CommandError(output, context);
1262
- }
1263
- const contents = smithyClient.map({
1264
- $metadata: deserializeMetadata(output),
1265
- });
1266
- await smithyClient.collectBody(output.body, context);
1267
- return contents;
1268
- };
1269
- const de_UpdateStreamCommand = async (output, context) => {
1270
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1271
- return de_CommandError(output, context);
1272
- }
1273
- const contents = smithyClient.map({
1274
- $metadata: deserializeMetadata(output),
1275
- });
1276
- await smithyClient.collectBody(output.body, context);
1277
- return contents;
1278
- };
1279
- const de_CommandError = async (output, context) => {
1280
- const parsedOutput = {
1281
- ...output,
1282
- body: await core$1.parseJsonErrorBody(output.body, context),
1283
- };
1284
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
1285
- switch (errorCode) {
1286
- case "AccessDeniedException":
1287
- case "com.amazonaws.kinesisvideo#AccessDeniedException":
1288
- throw await de_AccessDeniedExceptionRes(parsedOutput);
1289
- case "AccountChannelLimitExceededException":
1290
- case "com.amazonaws.kinesisvideo#AccountChannelLimitExceededException":
1291
- throw await de_AccountChannelLimitExceededExceptionRes(parsedOutput);
1292
- case "ClientLimitExceededException":
1293
- case "com.amazonaws.kinesisvideo#ClientLimitExceededException":
1294
- throw await de_ClientLimitExceededExceptionRes(parsedOutput);
1295
- case "InvalidArgumentException":
1296
- case "com.amazonaws.kinesisvideo#InvalidArgumentException":
1297
- throw await de_InvalidArgumentExceptionRes(parsedOutput);
1298
- case "ResourceInUseException":
1299
- case "com.amazonaws.kinesisvideo#ResourceInUseException":
1300
- throw await de_ResourceInUseExceptionRes(parsedOutput);
1301
- case "TagsPerResourceExceededLimitException":
1302
- case "com.amazonaws.kinesisvideo#TagsPerResourceExceededLimitException":
1303
- throw await de_TagsPerResourceExceededLimitExceptionRes(parsedOutput);
1304
- case "AccountStreamLimitExceededException":
1305
- case "com.amazonaws.kinesisvideo#AccountStreamLimitExceededException":
1306
- throw await de_AccountStreamLimitExceededExceptionRes(parsedOutput);
1307
- case "DeviceStreamLimitExceededException":
1308
- case "com.amazonaws.kinesisvideo#DeviceStreamLimitExceededException":
1309
- throw await de_DeviceStreamLimitExceededExceptionRes(parsedOutput);
1310
- case "InvalidDeviceException":
1311
- case "com.amazonaws.kinesisvideo#InvalidDeviceException":
1312
- throw await de_InvalidDeviceExceptionRes(parsedOutput);
1313
- case "ResourceNotFoundException":
1314
- case "com.amazonaws.kinesisvideo#ResourceNotFoundException":
1315
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
1316
- case "StreamEdgeConfigurationNotFoundException":
1317
- case "com.amazonaws.kinesisvideo#StreamEdgeConfigurationNotFoundException":
1318
- throw await de_StreamEdgeConfigurationNotFoundExceptionRes(parsedOutput);
1319
- case "VersionMismatchException":
1320
- case "com.amazonaws.kinesisvideo#VersionMismatchException":
1321
- throw await de_VersionMismatchExceptionRes(parsedOutput);
1322
- case "NotAuthorizedException":
1323
- case "com.amazonaws.kinesisvideo#NotAuthorizedException":
1324
- throw await de_NotAuthorizedExceptionRes(parsedOutput);
1325
- case "InvalidResourceFormatException":
1326
- case "com.amazonaws.kinesisvideo#InvalidResourceFormatException":
1327
- throw await de_InvalidResourceFormatExceptionRes(parsedOutput);
1328
- case "NoDataRetentionException":
1329
- case "com.amazonaws.kinesisvideo#NoDataRetentionException":
1330
- throw await de_NoDataRetentionExceptionRes(parsedOutput);
1331
- default:
1332
- const parsedBody = parsedOutput.body;
1333
- return throwDefaultError({
1334
- output,
1335
- parsedBody,
1336
- errorCode,
1337
- });
1338
- }
1339
- };
1340
- const throwDefaultError = smithyClient.withBaseException(KinesisVideoServiceException);
1341
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
1342
- const contents = smithyClient.map({});
1343
- const data = parsedOutput.body;
1344
- const doc = smithyClient.take(data, {
1345
- Message: smithyClient.expectString,
1346
- });
1347
- Object.assign(contents, doc);
1348
- const exception = new AccessDeniedException({
1349
- $metadata: deserializeMetadata(parsedOutput),
1350
- ...contents,
1351
- });
1352
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1353
- };
1354
- const de_AccountChannelLimitExceededExceptionRes = async (parsedOutput, context) => {
1355
- const contents = smithyClient.map({});
1356
- const data = parsedOutput.body;
1357
- const doc = smithyClient.take(data, {
1358
- Message: smithyClient.expectString,
1359
- });
1360
- Object.assign(contents, doc);
1361
- const exception = new AccountChannelLimitExceededException({
1362
- $metadata: deserializeMetadata(parsedOutput),
1363
- ...contents,
1364
- });
1365
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1366
- };
1367
- const de_AccountStreamLimitExceededExceptionRes = async (parsedOutput, context) => {
1368
- const contents = smithyClient.map({});
1369
- const data = parsedOutput.body;
1370
- const doc = smithyClient.take(data, {
1371
- Message: smithyClient.expectString,
1372
- });
1373
- Object.assign(contents, doc);
1374
- const exception = new AccountStreamLimitExceededException({
1375
- $metadata: deserializeMetadata(parsedOutput),
1376
- ...contents,
1377
- });
1378
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1379
- };
1380
- const de_ClientLimitExceededExceptionRes = async (parsedOutput, context) => {
1381
- const contents = smithyClient.map({});
1382
- const data = parsedOutput.body;
1383
- const doc = smithyClient.take(data, {
1384
- Message: smithyClient.expectString,
1385
- });
1386
- Object.assign(contents, doc);
1387
- const exception = new ClientLimitExceededException({
1388
- $metadata: deserializeMetadata(parsedOutput),
1389
- ...contents,
1390
- });
1391
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1392
- };
1393
- const de_DeviceStreamLimitExceededExceptionRes = async (parsedOutput, context) => {
1394
- const contents = smithyClient.map({});
1395
- const data = parsedOutput.body;
1396
- const doc = smithyClient.take(data, {
1397
- Message: smithyClient.expectString,
1398
- });
1399
- Object.assign(contents, doc);
1400
- const exception = new DeviceStreamLimitExceededException({
1401
- $metadata: deserializeMetadata(parsedOutput),
1402
- ...contents,
1403
- });
1404
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1405
- };
1406
- const de_InvalidArgumentExceptionRes = async (parsedOutput, context) => {
1407
- const contents = smithyClient.map({});
1408
- const data = parsedOutput.body;
1409
- const doc = smithyClient.take(data, {
1410
- Message: smithyClient.expectString,
1411
- });
1412
- Object.assign(contents, doc);
1413
- const exception = new InvalidArgumentException({
1414
- $metadata: deserializeMetadata(parsedOutput),
1415
- ...contents,
1416
- });
1417
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1418
- };
1419
- const de_InvalidDeviceExceptionRes = async (parsedOutput, context) => {
1420
- const contents = smithyClient.map({});
1421
- const data = parsedOutput.body;
1422
- const doc = smithyClient.take(data, {
1423
- Message: smithyClient.expectString,
1424
- });
1425
- Object.assign(contents, doc);
1426
- const exception = new InvalidDeviceException({
1427
- $metadata: deserializeMetadata(parsedOutput),
1428
- ...contents,
1429
- });
1430
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1431
- };
1432
- const de_InvalidResourceFormatExceptionRes = async (parsedOutput, context) => {
1433
- const contents = smithyClient.map({});
1434
- const data = parsedOutput.body;
1435
- const doc = smithyClient.take(data, {
1436
- Message: smithyClient.expectString,
1437
- });
1438
- Object.assign(contents, doc);
1439
- const exception = new InvalidResourceFormatException({
1440
- $metadata: deserializeMetadata(parsedOutput),
1441
- ...contents,
1442
- });
1443
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1444
- };
1445
- const de_NoDataRetentionExceptionRes = async (parsedOutput, context) => {
1446
- const contents = smithyClient.map({});
1447
- const data = parsedOutput.body;
1448
- const doc = smithyClient.take(data, {
1449
- Message: smithyClient.expectString,
1450
- });
1451
- Object.assign(contents, doc);
1452
- const exception = new NoDataRetentionException({
1453
- $metadata: deserializeMetadata(parsedOutput),
1454
- ...contents,
1455
- });
1456
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1457
- };
1458
- const de_NotAuthorizedExceptionRes = async (parsedOutput, context) => {
1459
- const contents = smithyClient.map({});
1460
- const data = parsedOutput.body;
1461
- const doc = smithyClient.take(data, {
1462
- Message: smithyClient.expectString,
1463
- });
1464
- Object.assign(contents, doc);
1465
- const exception = new NotAuthorizedException({
1466
- $metadata: deserializeMetadata(parsedOutput),
1467
- ...contents,
1468
- });
1469
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1470
- };
1471
- const de_ResourceInUseExceptionRes = async (parsedOutput, context) => {
1472
- const contents = smithyClient.map({});
1473
- const data = parsedOutput.body;
1474
- const doc = smithyClient.take(data, {
1475
- Message: smithyClient.expectString,
1476
- });
1477
- Object.assign(contents, doc);
1478
- const exception = new ResourceInUseException({
1479
- $metadata: deserializeMetadata(parsedOutput),
1480
- ...contents,
1481
- });
1482
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1483
- };
1484
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1485
- const contents = smithyClient.map({});
1486
- const data = parsedOutput.body;
1487
- const doc = smithyClient.take(data, {
1488
- Message: smithyClient.expectString,
1489
- });
1490
- Object.assign(contents, doc);
1491
- const exception = new ResourceNotFoundException({
1492
- $metadata: deserializeMetadata(parsedOutput),
1493
- ...contents,
1494
- });
1495
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1496
- };
1497
- const de_StreamEdgeConfigurationNotFoundExceptionRes = async (parsedOutput, context) => {
1498
- const contents = smithyClient.map({});
1499
- const data = parsedOutput.body;
1500
- const doc = smithyClient.take(data, {
1501
- Message: smithyClient.expectString,
1502
- });
1503
- Object.assign(contents, doc);
1504
- const exception = new StreamEdgeConfigurationNotFoundException({
1505
- $metadata: deserializeMetadata(parsedOutput),
1506
- ...contents,
1507
- });
1508
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1509
- };
1510
- const de_TagsPerResourceExceededLimitExceptionRes = async (parsedOutput, context) => {
1511
- const contents = smithyClient.map({});
1512
- const data = parsedOutput.body;
1513
- const doc = smithyClient.take(data, {
1514
- Message: smithyClient.expectString,
1515
- });
1516
- Object.assign(contents, doc);
1517
- const exception = new TagsPerResourceExceededLimitException({
1518
- $metadata: deserializeMetadata(parsedOutput),
1519
- ...contents,
1520
- });
1521
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1522
- };
1523
- const de_VersionMismatchExceptionRes = async (parsedOutput, context) => {
1524
- const contents = smithyClient.map({});
1525
- const data = parsedOutput.body;
1526
- const doc = smithyClient.take(data, {
1527
- Message: smithyClient.expectString,
1528
- });
1529
- Object.assign(contents, doc);
1530
- const exception = new VersionMismatchException({
1531
- $metadata: deserializeMetadata(parsedOutput),
1532
- ...contents,
1533
- });
1534
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1535
- };
1536
- const de_ChannelInfo = (output, context) => {
1537
- return smithyClient.take(output, {
1538
- ChannelARN: smithyClient.expectString,
1539
- ChannelName: smithyClient.expectString,
1540
- ChannelStatus: smithyClient.expectString,
1541
- ChannelType: smithyClient.expectString,
1542
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1543
- SingleMasterConfiguration: smithyClient._json,
1544
- Version: smithyClient.expectString,
1545
- });
1546
- };
1547
- const de_ChannelInfoList = (output, context) => {
1548
- const retVal = (output || [])
1549
- .filter((e) => e != null)
1550
- .map((entry) => {
1551
- return de_ChannelInfo(entry);
1552
- });
1553
- return retVal;
1554
- };
1555
- const de_EdgeAgentStatus = (output, context) => {
1556
- return smithyClient.take(output, {
1557
- LastRecorderStatus: (_) => de_LastRecorderStatus(_),
1558
- LastUploaderStatus: (_) => de_LastUploaderStatus(_),
1559
- });
1560
- };
1561
- const de_LastRecorderStatus = (output, context) => {
1562
- return smithyClient.take(output, {
1563
- JobStatusDetails: smithyClient.expectString,
1564
- LastCollectedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1565
- LastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1566
- RecorderStatus: smithyClient.expectString,
1567
- });
1568
- };
1569
- const de_LastUploaderStatus = (output, context) => {
1570
- return smithyClient.take(output, {
1571
- JobStatusDetails: smithyClient.expectString,
1572
- LastCollectedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1573
- LastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1574
- UploaderStatus: smithyClient.expectString,
1575
- });
1576
- };
1577
- const de_ListEdgeAgentConfigurationsEdgeConfig = (output, context) => {
1578
- return smithyClient.take(output, {
1579
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1580
- EdgeConfig: smithyClient._json,
1581
- FailedStatusDetails: smithyClient.expectString,
1582
- LastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1583
- StreamARN: smithyClient.expectString,
1584
- StreamName: smithyClient.expectString,
1585
- SyncStatus: smithyClient.expectString,
1586
- });
1587
- };
1588
- const de_ListEdgeAgentConfigurationsEdgeConfigList = (output, context) => {
1589
- const retVal = (output || [])
1590
- .filter((e) => e != null)
1591
- .map((entry) => {
1592
- return de_ListEdgeAgentConfigurationsEdgeConfig(entry);
1593
- });
1594
- return retVal;
1595
- };
1596
- const de_StreamInfo = (output, context) => {
1597
- return smithyClient.take(output, {
1598
- CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1599
- DataRetentionInHours: smithyClient.expectInt32,
1600
- DeviceName: smithyClient.expectString,
1601
- KmsKeyId: smithyClient.expectString,
1602
- MediaType: smithyClient.expectString,
1603
- Status: smithyClient.expectString,
1604
- StreamARN: smithyClient.expectString,
1605
- StreamName: smithyClient.expectString,
1606
- Version: smithyClient.expectString,
1607
- });
1608
- };
1609
- const de_StreamInfoList = (output, context) => {
1610
- const retVal = (output || [])
1611
- .filter((e) => e != null)
1612
- .map((entry) => {
1613
- return de_StreamInfo(entry);
1614
- });
1615
- return retVal;
1616
- };
1617
- const deserializeMetadata = (output) => ({
1618
- httpStatusCode: output.statusCode,
1619
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1620
- extendedRequestId: output.headers["x-amz-id-2"],
1621
- cfId: output.headers["x-amz-cf-id"],
1622
- });
413
+ const _ACLEE = "AccountChannelLimitExceededException";
414
+ const _ADE = "AccessDeniedException";
415
+ const _APIN = "APIName";
416
+ const _ARN = "ARN";
417
+ const _ASLEE = "AccountStreamLimitExceededException";
418
+ const _CARN = "ChannelARN";
419
+ const _CI = "ChannelInfo";
420
+ const _CIL = "ChannelInfoList";
421
+ const _CLEE = "ClientLimitExceededException";
422
+ const _CN = "ChannelName";
423
+ const _CNC = "ChannelNameCondition";
424
+ const _CO = "ComparisonOperator";
425
+ const _CS = "ChannelStatus";
426
+ const _CSC = "CreateSignalingChannel";
427
+ const _CSCI = "CreateSignalingChannelInput";
428
+ const _CSCO = "CreateSignalingChannelOutput";
429
+ const _CSI = "CreateStreamInput";
430
+ const _CSO = "CreateStreamOutput";
431
+ const _CSr = "CreateStream";
432
+ const _CT = "ChannelType";
433
+ const _CTr = "CreationTime";
434
+ const _CV = "ComparisonValue";
435
+ const _CVu = "CurrentVersion";
436
+ const _DAU = "DeleteAfterUpload";
437
+ const _DC = "DeletionConfig";
438
+ const _DCe = "DestinationConfig";
439
+ const _DE = "DataEndpoint";
440
+ const _DEC = "DeleteEdgeConfiguration";
441
+ const _DECI = "DeleteEdgeConfigurationInput";
442
+ const _DECIe = "DescribeEdgeConfigurationInput";
443
+ const _DECO = "DeleteEdgeConfigurationOutput";
444
+ const _DECOe = "DescribeEdgeConfigurationOutput";
445
+ const _DECe = "DescribeEdgeConfiguration";
446
+ const _DIGC = "DescribeImageGenerationConfiguration";
447
+ const _DIGCI = "DescribeImageGenerationConfigurationInput";
448
+ const _DIGCO = "DescribeImageGenerationConfigurationOutput";
449
+ const _DIS = "DurationInSeconds";
450
+ const _DMRC = "DescribeMappedResourceConfiguration";
451
+ const _DMRCI = "DescribeMappedResourceConfigurationInput";
452
+ const _DMRCO = "DescribeMappedResourceConfigurationOutput";
453
+ const _DMSC = "DescribeMediaStorageConfiguration";
454
+ const _DMSCI = "DescribeMediaStorageConfigurationInput";
455
+ const _DMSCO = "DescribeMediaStorageConfigurationOutput";
456
+ const _DN = "DeviceName";
457
+ const _DNC = "DescribeNotificationConfiguration";
458
+ const _DNCI = "DescribeNotificationConfigurationInput";
459
+ const _DNCO = "DescribeNotificationConfigurationOutput";
460
+ const _DR = "DestinationRegion";
461
+ const _DRCIH = "DataRetentionChangeInHours";
462
+ const _DRIH = "DataRetentionInHours";
463
+ const _DS = "DeleteStream";
464
+ const _DSC = "DeleteSignalingChannel";
465
+ const _DSCI = "DeleteSignalingChannelInput";
466
+ const _DSCIe = "DescribeSignalingChannelInput";
467
+ const _DSCO = "DeleteSignalingChannelOutput";
468
+ const _DSCOe = "DescribeSignalingChannelOutput";
469
+ const _DSCe = "DescribeSignalingChannel";
470
+ const _DSI = "DeleteStreamInput";
471
+ const _DSIe = "DescribeStreamInput";
472
+ const _DSLEE = "DeviceStreamLimitExceededException";
473
+ const _DSO = "DeleteStreamOutput";
474
+ const _DSOe = "DescribeStreamOutput";
475
+ const _DSe = "DescribeStream";
476
+ const _EAS = "EdgeAgentStatus";
477
+ const _EC = "EdgeConfig";
478
+ const _ECd = "EdgeConfigs";
479
+ const _ERIH = "EdgeRetentionInHours";
480
+ const _F = "Format";
481
+ const _FC = "FormatConfig";
482
+ const _FSD = "FailedStatusDetails";
483
+ const _GDE = "GetDataEndpoint";
484
+ const _GDEI = "GetDataEndpointInput";
485
+ const _GDEO = "GetDataEndpointOutput";
486
+ const _GSCE = "GetSignalingChannelEndpoint";
487
+ const _GSCEI = "GetSignalingChannelEndpointInput";
488
+ const _GSCEO = "GetSignalingChannelEndpointOutput";
489
+ const _HDA = "HubDeviceArn";
490
+ const _HP = "HeightPixels";
491
+ const _IAE = "InvalidArgumentException";
492
+ const _IDE = "InvalidDeviceException";
493
+ const _IGC = "ImageGenerationConfiguration";
494
+ const _IGDC = "ImageGenerationDestinationConfig";
495
+ const _IRFE = "InvalidResourceFormatException";
496
+ const _IST = "ImageSelectorType";
497
+ const _JSD = "JobStatusDetails";
498
+ const _K = "Key";
499
+ const _KKI = "KmsKeyId";
500
+ const _LCT = "LastCollectedTime";
501
+ const _LEAC = "ListEdgeAgentConfigurations";
502
+ const _LEACEC = "ListEdgeAgentConfigurationsEdgeConfig";
503
+ const _LEACECL = "ListEdgeAgentConfigurationsEdgeConfigList";
504
+ const _LEACI = "ListEdgeAgentConfigurationsInput";
505
+ const _LEACO = "ListEdgeAgentConfigurationsOutput";
506
+ const _LRS = "LastRecorderStatus";
507
+ const _LS = "ListStreams";
508
+ const _LSC = "LocalSizeConfig";
509
+ const _LSCI = "ListSignalingChannelsInput";
510
+ const _LSCO = "ListSignalingChannelsOutput";
511
+ const _LSCi = "ListSignalingChannels";
512
+ const _LSI = "ListStreamsInput";
513
+ const _LSO = "ListStreamsOutput";
514
+ const _LTFR = "ListTagsForResource";
515
+ const _LTFRI = "ListTagsForResourceInput";
516
+ const _LTFRO = "ListTagsForResourceOutput";
517
+ const _LTFS = "ListTagsForStream";
518
+ const _LTFSI = "ListTagsForStreamInput";
519
+ const _LTFSO = "ListTagsForStreamOutput";
520
+ const _LUS = "LastUploaderStatus";
521
+ const _LUT = "LastUpdatedTime";
522
+ const _M = "Message";
523
+ const _MLMSIMB = "MaxLocalMediaSizeInMB";
524
+ const _MR = "MaxResults";
525
+ const _MRCL = "MappedResourceConfigurationList";
526
+ const _MRCLI = "MappedResourceConfigurationListItem";
527
+ const _MSC = "MediaStorageConfiguration";
528
+ const _MSCe = "MediaSourceConfig";
529
+ const _MT = "MediaType";
530
+ const _MTS = "MessageTtlSeconds";
531
+ const _MUSA = "MediaUriSecretArn";
532
+ const _MUT = "MediaUriType";
533
+ const _NAE = "NotAuthorizedException";
534
+ const _NC = "NotificationConfiguration";
535
+ const _NDC = "NotificationDestinationConfig";
536
+ const _NDRE = "NoDataRetentionException";
537
+ const _NT = "NextToken";
538
+ const _O = "Operation";
539
+ const _P = "Protocol";
540
+ const _Pr = "Protocols";
541
+ const _R = "Role";
542
+ const _RARN = "ResourceARN";
543
+ const _RC = "RecorderConfig";
544
+ const _RE = "ResourceEndpoint";
545
+ const _REL = "ResourceEndpointList";
546
+ const _RELI = "ResourceEndpointListItem";
547
+ const _RIUE = "ResourceInUseException";
548
+ const _RNFE = "ResourceNotFoundException";
549
+ const _RS = "RecorderStatus";
550
+ const _S = "Status";
551
+ const _SARN = "StreamARN";
552
+ const _SC = "ScheduleConfig";
553
+ const _SE = "ScheduleExpression";
554
+ const _SECNFE = "StreamEdgeConfigurationNotFoundException";
555
+ const _SECU = "StartEdgeConfigurationUpdate";
556
+ const _SECUI = "StartEdgeConfigurationUpdateInput";
557
+ const _SECUO = "StartEdgeConfigurationUpdateOutput";
558
+ const _SI = "StreamInfo";
559
+ const _SIL = "StreamInfoList";
560
+ const _SIa = "SamplingInterval";
561
+ const _SMC = "SingleMasterConfiguration";
562
+ const _SMCEC = "SingleMasterChannelEndpointConfiguration";
563
+ const _SN = "StreamName";
564
+ const _SNC = "StreamNameCondition";
565
+ const _SOFS = "StrategyOnFullSize";
566
+ const _SS = "SyncStatus";
567
+ const _T = "Tags";
568
+ const _TKL = "TagKeyList";
569
+ const _TL = "TagList";
570
+ const _TOCL = "TagOnCreateList";
571
+ const _TPRELE = "TagsPerResourceExceededLimitException";
572
+ const _TR = "TagResource";
573
+ const _TRI = "TagResourceInput";
574
+ const _TRO = "TagResourceOutput";
575
+ const _TS = "TagStream";
576
+ const _TSI = "TagStreamInput";
577
+ const _TSO = "TagStreamOutput";
578
+ const _Ta = "Tag";
579
+ const _Ty = "Type";
580
+ const _U = "Uri";
581
+ const _UC = "UploaderConfig";
582
+ const _UDR = "UpdateDataRetention";
583
+ const _UDRI = "UpdateDataRetentionInput";
584
+ const _UDRO = "UpdateDataRetentionOutput";
585
+ const _UIGC = "UpdateImageGenerationConfiguration";
586
+ const _UIGCI = "UpdateImageGenerationConfigurationInput";
587
+ const _UIGCO = "UpdateImageGenerationConfigurationOutput";
588
+ const _UMSC = "UpdateMediaStorageConfiguration";
589
+ const _UMSCI = "UpdateMediaStorageConfigurationInput";
590
+ const _UMSCO = "UpdateMediaStorageConfigurationOutput";
591
+ const _UNC = "UpdateNotificationConfiguration";
592
+ const _UNCI = "UpdateNotificationConfigurationInput";
593
+ const _UNCO = "UpdateNotificationConfigurationOutput";
594
+ const _UR = "UntagResource";
595
+ const _URI = "UntagResourceInput";
596
+ const _URO = "UntagResourceOutput";
597
+ const _US = "UploaderStatus";
598
+ const _USC = "UpdateSignalingChannel";
599
+ const _USCI = "UpdateSignalingChannelInput";
600
+ const _USCO = "UpdateSignalingChannelOutput";
601
+ const _USI = "UntagStreamInput";
602
+ const _USIp = "UpdateStreamInput";
603
+ const _USO = "UntagStreamOutput";
604
+ const _USOp = "UpdateStreamOutput";
605
+ const _USn = "UntagStream";
606
+ const _USp = "UpdateStream";
607
+ const _V = "Version";
608
+ const _VME = "VersionMismatchException";
609
+ const _Va = "Value";
610
+ const _WP = "WidthPixels";
611
+ const _c = "client";
612
+ const _e = "error";
613
+ const _h = "http";
614
+ const _hE = "httpError";
615
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.kinesisvideo";
616
+ const n0 = "com.amazonaws.kinesisvideo";
617
+ var MediaUriSecretArn = [0, n0, _MUSA, 8, 0];
618
+ var AccessDeniedException = [
619
+ -3,
620
+ n0,
621
+ _ADE,
622
+ {
623
+ [_e]: _c,
624
+ [_hE]: 401,
625
+ },
626
+ [_M],
627
+ [0],
628
+ ];
629
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
630
+ var AccountChannelLimitExceededException = [
631
+ -3,
632
+ n0,
633
+ _ACLEE,
634
+ {
635
+ [_e]: _c,
636
+ [_hE]: 400,
637
+ },
638
+ [_M],
639
+ [0],
640
+ ];
641
+ schema.TypeRegistry.for(n0).registerError(AccountChannelLimitExceededException, AccountChannelLimitExceededException$1);
642
+ var AccountStreamLimitExceededException = [
643
+ -3,
644
+ n0,
645
+ _ASLEE,
646
+ {
647
+ [_e]: _c,
648
+ [_hE]: 400,
649
+ },
650
+ [_M],
651
+ [0],
652
+ ];
653
+ schema.TypeRegistry.for(n0).registerError(AccountStreamLimitExceededException, AccountStreamLimitExceededException$1);
654
+ var ChannelInfo = [
655
+ 3,
656
+ n0,
657
+ _CI,
658
+ 0,
659
+ [_CN, _CARN, _CT, _CS, _CTr, _SMC, _V],
660
+ [0, 0, 0, 0, 4, () => SingleMasterConfiguration, 0],
661
+ ];
662
+ var ChannelNameCondition = [3, n0, _CNC, 0, [_CO, _CV], [0, 0]];
663
+ var ClientLimitExceededException = [
664
+ -3,
665
+ n0,
666
+ _CLEE,
667
+ {
668
+ [_e]: _c,
669
+ [_hE]: 400,
670
+ },
671
+ [_M],
672
+ [0],
673
+ ];
674
+ schema.TypeRegistry.for(n0).registerError(ClientLimitExceededException, ClientLimitExceededException$1);
675
+ var CreateSignalingChannelInput = [
676
+ 3,
677
+ n0,
678
+ _CSCI,
679
+ 0,
680
+ [_CN, _CT, _SMC, _T],
681
+ [0, 0, () => SingleMasterConfiguration, () => TagOnCreateList],
682
+ ];
683
+ var CreateSignalingChannelOutput = [3, n0, _CSCO, 0, [_CARN], [0]];
684
+ var CreateStreamInput = [
685
+ 3,
686
+ n0,
687
+ _CSI,
688
+ 0,
689
+ [_DN, _SN, _MT, _KKI, _DRIH, _T],
690
+ [0, 0, 0, 0, 1, 128 | 0],
691
+ ];
692
+ var CreateStreamOutput = [3, n0, _CSO, 0, [_SARN], [0]];
693
+ var DeleteEdgeConfigurationInput = [3, n0, _DECI, 0, [_SN, _SARN], [0, 0]];
694
+ var DeleteEdgeConfigurationOutput = [3, n0, _DECO, 0, [], []];
695
+ var DeleteSignalingChannelInput = [3, n0, _DSCI, 0, [_CARN, _CVu], [0, 0]];
696
+ var DeleteSignalingChannelOutput = [3, n0, _DSCO, 0, [], []];
697
+ var DeleteStreamInput = [3, n0, _DSI, 0, [_SARN, _CVu], [0, 0]];
698
+ var DeleteStreamOutput = [3, n0, _DSO, 0, [], []];
699
+ var DeletionConfig = [3, n0, _DC, 0, [_ERIH, _LSC, _DAU], [1, () => LocalSizeConfig, 2]];
700
+ var DescribeEdgeConfigurationInput = [3, n0, _DECIe, 0, [_SN, _SARN], [0, 0]];
701
+ var DescribeEdgeConfigurationOutput = [
702
+ 3,
703
+ n0,
704
+ _DECOe,
705
+ 0,
706
+ [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC, _EAS],
707
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig, 0], () => EdgeAgentStatus],
708
+ ];
709
+ var DescribeImageGenerationConfigurationInput = [3, n0, _DIGCI, 0, [_SN, _SARN], [0, 0]];
710
+ var DescribeImageGenerationConfigurationOutput = [
711
+ 3,
712
+ n0,
713
+ _DIGCO,
714
+ 0,
715
+ [_IGC],
716
+ [() => ImageGenerationConfiguration],
717
+ ];
718
+ var DescribeMappedResourceConfigurationInput = [
719
+ 3,
720
+ n0,
721
+ _DMRCI,
722
+ 0,
723
+ [_SN, _SARN, _MR, _NT],
724
+ [0, 0, 1, 0],
725
+ ];
726
+ var DescribeMappedResourceConfigurationOutput = [
727
+ 3,
728
+ n0,
729
+ _DMRCO,
730
+ 0,
731
+ [_MRCL, _NT],
732
+ [() => MappedResourceConfigurationList, 0],
733
+ ];
734
+ var DescribeMediaStorageConfigurationInput = [3, n0, _DMSCI, 0, [_CN, _CARN], [0, 0]];
735
+ var DescribeMediaStorageConfigurationOutput = [
736
+ 3,
737
+ n0,
738
+ _DMSCO,
739
+ 0,
740
+ [_MSC],
741
+ [() => MediaStorageConfiguration],
742
+ ];
743
+ var DescribeNotificationConfigurationInput = [3, n0, _DNCI, 0, [_SN, _SARN], [0, 0]];
744
+ var DescribeNotificationConfigurationOutput = [
745
+ 3,
746
+ n0,
747
+ _DNCO,
748
+ 0,
749
+ [_NC],
750
+ [() => NotificationConfiguration],
751
+ ];
752
+ var DescribeSignalingChannelInput = [3, n0, _DSCIe, 0, [_CN, _CARN], [0, 0]];
753
+ var DescribeSignalingChannelOutput = [3, n0, _DSCOe, 0, [_CI], [() => ChannelInfo]];
754
+ var DescribeStreamInput = [3, n0, _DSIe, 0, [_SN, _SARN], [0, 0]];
755
+ var DescribeStreamOutput = [3, n0, _DSOe, 0, [_SI], [() => StreamInfo]];
756
+ var DeviceStreamLimitExceededException = [
757
+ -3,
758
+ n0,
759
+ _DSLEE,
760
+ {
761
+ [_e]: _c,
762
+ [_hE]: 400,
763
+ },
764
+ [_M],
765
+ [0],
766
+ ];
767
+ schema.TypeRegistry.for(n0).registerError(DeviceStreamLimitExceededException, DeviceStreamLimitExceededException$1);
768
+ var EdgeAgentStatus = [
769
+ 3,
770
+ n0,
771
+ _EAS,
772
+ 0,
773
+ [_LRS, _LUS],
774
+ [() => LastRecorderStatus, () => LastUploaderStatus],
775
+ ];
776
+ var EdgeConfig = [
777
+ 3,
778
+ n0,
779
+ _EC,
780
+ 0,
781
+ [_HDA, _RC, _UC, _DC],
782
+ [0, [() => RecorderConfig, 0], () => UploaderConfig, () => DeletionConfig],
783
+ ];
784
+ var GetDataEndpointInput = [3, n0, _GDEI, 0, [_SN, _SARN, _APIN], [0, 0, 0]];
785
+ var GetDataEndpointOutput = [3, n0, _GDEO, 0, [_DE], [0]];
786
+ var GetSignalingChannelEndpointInput = [
787
+ 3,
788
+ n0,
789
+ _GSCEI,
790
+ 0,
791
+ [_CARN, _SMCEC],
792
+ [0, () => SingleMasterChannelEndpointConfiguration],
793
+ ];
794
+ var GetSignalingChannelEndpointOutput = [
795
+ 3,
796
+ n0,
797
+ _GSCEO,
798
+ 0,
799
+ [_REL],
800
+ [() => ResourceEndpointList],
801
+ ];
802
+ var ImageGenerationConfiguration = [
803
+ 3,
804
+ n0,
805
+ _IGC,
806
+ 0,
807
+ [_S, _IST, _DCe, _SIa, _F, _FC, _WP, _HP],
808
+ [0, 0, () => ImageGenerationDestinationConfig, 1, 0, 128 | 0, 1, 1],
809
+ ];
810
+ var ImageGenerationDestinationConfig = [3, n0, _IGDC, 0, [_U, _DR], [0, 0]];
811
+ var InvalidArgumentException = [
812
+ -3,
813
+ n0,
814
+ _IAE,
815
+ {
816
+ [_e]: _c,
817
+ [_hE]: 400,
818
+ },
819
+ [_M],
820
+ [0],
821
+ ];
822
+ schema.TypeRegistry.for(n0).registerError(InvalidArgumentException, InvalidArgumentException$1);
823
+ var InvalidDeviceException = [
824
+ -3,
825
+ n0,
826
+ _IDE,
827
+ {
828
+ [_e]: _c,
829
+ [_hE]: 400,
830
+ },
831
+ [_M],
832
+ [0],
833
+ ];
834
+ schema.TypeRegistry.for(n0).registerError(InvalidDeviceException, InvalidDeviceException$1);
835
+ var InvalidResourceFormatException = [
836
+ -3,
837
+ n0,
838
+ _IRFE,
839
+ {
840
+ [_e]: _c,
841
+ [_hE]: 400,
842
+ },
843
+ [_M],
844
+ [0],
845
+ ];
846
+ schema.TypeRegistry.for(n0).registerError(InvalidResourceFormatException, InvalidResourceFormatException$1);
847
+ var LastRecorderStatus = [3, n0, _LRS, 0, [_JSD, _LCT, _LUT, _RS], [0, 4, 4, 0]];
848
+ var LastUploaderStatus = [3, n0, _LUS, 0, [_JSD, _LCT, _LUT, _US], [0, 4, 4, 0]];
849
+ var ListEdgeAgentConfigurationsEdgeConfig = [
850
+ 3,
851
+ n0,
852
+ _LEACEC,
853
+ 0,
854
+ [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC],
855
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig, 0]],
856
+ ];
857
+ var ListEdgeAgentConfigurationsInput = [3, n0, _LEACI, 0, [_HDA, _MR, _NT], [0, 1, 0]];
858
+ var ListEdgeAgentConfigurationsOutput = [
859
+ 3,
860
+ n0,
861
+ _LEACO,
862
+ 0,
863
+ [_ECd, _NT],
864
+ [[() => ListEdgeAgentConfigurationsEdgeConfigList, 0], 0],
865
+ ];
866
+ var ListSignalingChannelsInput = [
867
+ 3,
868
+ n0,
869
+ _LSCI,
870
+ 0,
871
+ [_MR, _NT, _CNC],
872
+ [1, 0, () => ChannelNameCondition],
873
+ ];
874
+ var ListSignalingChannelsOutput = [
875
+ 3,
876
+ n0,
877
+ _LSCO,
878
+ 0,
879
+ [_CIL, _NT],
880
+ [() => ChannelInfoList, 0],
881
+ ];
882
+ var ListStreamsInput = [
883
+ 3,
884
+ n0,
885
+ _LSI,
886
+ 0,
887
+ [_MR, _NT, _SNC],
888
+ [1, 0, () => StreamNameCondition],
889
+ ];
890
+ var ListStreamsOutput = [3, n0, _LSO, 0, [_SIL, _NT], [() => StreamInfoList, 0]];
891
+ var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_NT, _RARN], [0, 0]];
892
+ var ListTagsForResourceOutput = [3, n0, _LTFRO, 0, [_NT, _T], [0, 128 | 0]];
893
+ var ListTagsForStreamInput = [3, n0, _LTFSI, 0, [_NT, _SARN, _SN], [0, 0, 0]];
894
+ var ListTagsForStreamOutput = [3, n0, _LTFSO, 0, [_NT, _T], [0, 128 | 0]];
895
+ var LocalSizeConfig = [3, n0, _LSC, 0, [_MLMSIMB, _SOFS], [1, 0]];
896
+ var MappedResourceConfigurationListItem = [3, n0, _MRCLI, 0, [_Ty, _ARN], [0, 0]];
897
+ var MediaSourceConfig = [
898
+ 3,
899
+ n0,
900
+ _MSCe,
901
+ 0,
902
+ [_MUSA, _MUT],
903
+ [[() => MediaUriSecretArn, 0], 0],
904
+ ];
905
+ var MediaStorageConfiguration = [3, n0, _MSC, 0, [_SARN, _S], [0, 0]];
906
+ var NoDataRetentionException = [
907
+ -3,
908
+ n0,
909
+ _NDRE,
910
+ {
911
+ [_e]: _c,
912
+ [_hE]: 400,
913
+ },
914
+ [_M],
915
+ [0],
916
+ ];
917
+ schema.TypeRegistry.for(n0).registerError(NoDataRetentionException, NoDataRetentionException$1);
918
+ var NotAuthorizedException = [
919
+ -3,
920
+ n0,
921
+ _NAE,
922
+ {
923
+ [_e]: _c,
924
+ [_hE]: 401,
925
+ },
926
+ [_M],
927
+ [0],
928
+ ];
929
+ schema.TypeRegistry.for(n0).registerError(NotAuthorizedException, NotAuthorizedException$1);
930
+ var NotificationConfiguration = [
931
+ 3,
932
+ n0,
933
+ _NC,
934
+ 0,
935
+ [_S, _DCe],
936
+ [0, () => NotificationDestinationConfig],
937
+ ];
938
+ var NotificationDestinationConfig = [3, n0, _NDC, 0, [_U], [0]];
939
+ var RecorderConfig = [
940
+ 3,
941
+ n0,
942
+ _RC,
943
+ 0,
944
+ [_MSCe, _SC],
945
+ [[() => MediaSourceConfig, 0], () => ScheduleConfig],
946
+ ];
947
+ var ResourceEndpointListItem = [3, n0, _RELI, 0, [_P, _RE], [0, 0]];
948
+ var ResourceInUseException = [
949
+ -3,
950
+ n0,
951
+ _RIUE,
952
+ {
953
+ [_e]: _c,
954
+ [_hE]: 400,
955
+ },
956
+ [_M],
957
+ [0],
958
+ ];
959
+ schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
960
+ var ResourceNotFoundException = [
961
+ -3,
962
+ n0,
963
+ _RNFE,
964
+ {
965
+ [_e]: _c,
966
+ [_hE]: 404,
967
+ },
968
+ [_M],
969
+ [0],
970
+ ];
971
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
972
+ var ScheduleConfig = [3, n0, _SC, 0, [_SE, _DIS], [0, 1]];
973
+ var SingleMasterChannelEndpointConfiguration = [3, n0, _SMCEC, 0, [_Pr, _R], [64 | 0, 0]];
974
+ var SingleMasterConfiguration = [3, n0, _SMC, 0, [_MTS], [1]];
975
+ var StartEdgeConfigurationUpdateInput = [
976
+ 3,
977
+ n0,
978
+ _SECUI,
979
+ 0,
980
+ [_SN, _SARN, _EC],
981
+ [0, 0, [() => EdgeConfig, 0]],
982
+ ];
983
+ var StartEdgeConfigurationUpdateOutput = [
984
+ 3,
985
+ n0,
986
+ _SECUO,
987
+ 0,
988
+ [_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC],
989
+ [0, 0, 4, 4, 0, 0, [() => EdgeConfig, 0]],
990
+ ];
991
+ var StreamEdgeConfigurationNotFoundException = [
992
+ -3,
993
+ n0,
994
+ _SECNFE,
995
+ {
996
+ [_e]: _c,
997
+ [_hE]: 404,
998
+ },
999
+ [_M],
1000
+ [0],
1001
+ ];
1002
+ schema.TypeRegistry.for(n0).registerError(StreamEdgeConfigurationNotFoundException, StreamEdgeConfigurationNotFoundException$1);
1003
+ var StreamInfo = [
1004
+ 3,
1005
+ n0,
1006
+ _SI,
1007
+ 0,
1008
+ [_DN, _SN, _SARN, _MT, _KKI, _V, _S, _CTr, _DRIH],
1009
+ [0, 0, 0, 0, 0, 0, 0, 4, 1],
1010
+ ];
1011
+ var StreamNameCondition = [3, n0, _SNC, 0, [_CO, _CV], [0, 0]];
1012
+ var Tag = [3, n0, _Ta, 0, [_K, _Va], [0, 0]];
1013
+ var TagResourceInput = [3, n0, _TRI, 0, [_RARN, _T], [0, () => TagList]];
1014
+ var TagResourceOutput = [3, n0, _TRO, 0, [], []];
1015
+ var TagsPerResourceExceededLimitException = [
1016
+ -3,
1017
+ n0,
1018
+ _TPRELE,
1019
+ {
1020
+ [_e]: _c,
1021
+ [_hE]: 400,
1022
+ },
1023
+ [_M],
1024
+ [0],
1025
+ ];
1026
+ schema.TypeRegistry.for(n0).registerError(TagsPerResourceExceededLimitException, TagsPerResourceExceededLimitException$1);
1027
+ var TagStreamInput = [3, n0, _TSI, 0, [_SARN, _SN, _T], [0, 0, 128 | 0]];
1028
+ var TagStreamOutput = [3, n0, _TSO, 0, [], []];
1029
+ var UntagResourceInput = [3, n0, _URI, 0, [_RARN, _TKL], [0, 64 | 0]];
1030
+ var UntagResourceOutput = [3, n0, _URO, 0, [], []];
1031
+ var UntagStreamInput = [3, n0, _USI, 0, [_SARN, _SN, _TKL], [0, 0, 64 | 0]];
1032
+ var UntagStreamOutput = [3, n0, _USO, 0, [], []];
1033
+ var UpdateDataRetentionInput = [
1034
+ 3,
1035
+ n0,
1036
+ _UDRI,
1037
+ 0,
1038
+ [_SN, _SARN, _CVu, _O, _DRCIH],
1039
+ [0, 0, 0, 0, 1],
1040
+ ];
1041
+ var UpdateDataRetentionOutput = [3, n0, _UDRO, 0, [], []];
1042
+ var UpdateImageGenerationConfigurationInput = [
1043
+ 3,
1044
+ n0,
1045
+ _UIGCI,
1046
+ 0,
1047
+ [_SN, _SARN, _IGC],
1048
+ [0, 0, () => ImageGenerationConfiguration],
1049
+ ];
1050
+ var UpdateImageGenerationConfigurationOutput = [3, n0, _UIGCO, 0, [], []];
1051
+ var UpdateMediaStorageConfigurationInput = [
1052
+ 3,
1053
+ n0,
1054
+ _UMSCI,
1055
+ 0,
1056
+ [_CARN, _MSC],
1057
+ [0, () => MediaStorageConfiguration],
1058
+ ];
1059
+ var UpdateMediaStorageConfigurationOutput = [3, n0, _UMSCO, 0, [], []];
1060
+ var UpdateNotificationConfigurationInput = [
1061
+ 3,
1062
+ n0,
1063
+ _UNCI,
1064
+ 0,
1065
+ [_SN, _SARN, _NC],
1066
+ [0, 0, () => NotificationConfiguration],
1067
+ ];
1068
+ var UpdateNotificationConfigurationOutput = [3, n0, _UNCO, 0, [], []];
1069
+ var UpdateSignalingChannelInput = [
1070
+ 3,
1071
+ n0,
1072
+ _USCI,
1073
+ 0,
1074
+ [_CARN, _CVu, _SMC],
1075
+ [0, 0, () => SingleMasterConfiguration],
1076
+ ];
1077
+ var UpdateSignalingChannelOutput = [3, n0, _USCO, 0, [], []];
1078
+ var UpdateStreamInput = [3, n0, _USIp, 0, [_SN, _SARN, _CVu, _DN, _MT], [0, 0, 0, 0, 0]];
1079
+ var UpdateStreamOutput = [3, n0, _USOp, 0, [], []];
1080
+ var UploaderConfig = [3, n0, _UC, 0, [_SC], [() => ScheduleConfig]];
1081
+ var VersionMismatchException = [
1082
+ -3,
1083
+ n0,
1084
+ _VME,
1085
+ {
1086
+ [_e]: _c,
1087
+ [_hE]: 400,
1088
+ },
1089
+ [_M],
1090
+ [0],
1091
+ ];
1092
+ schema.TypeRegistry.for(n0).registerError(VersionMismatchException, VersionMismatchException$1);
1093
+ var KinesisVideoServiceException = [-3, _s, "KinesisVideoServiceException", 0, [], []];
1094
+ schema.TypeRegistry.for(_s).registerError(KinesisVideoServiceException, KinesisVideoServiceException$1);
1095
+ var ChannelInfoList = [1, n0, _CIL, 0, () => ChannelInfo];
1096
+ var ListEdgeAgentConfigurationsEdgeConfigList = [
1097
+ 1,
1098
+ n0,
1099
+ _LEACECL,
1100
+ 0,
1101
+ [() => ListEdgeAgentConfigurationsEdgeConfig, 0],
1102
+ ];
1103
+ var MappedResourceConfigurationList = [
1104
+ 1,
1105
+ n0,
1106
+ _MRCL,
1107
+ 0,
1108
+ () => MappedResourceConfigurationListItem,
1109
+ ];
1110
+ var ResourceEndpointList = [1, n0, _REL, 0, () => ResourceEndpointListItem];
1111
+ var StreamInfoList = [1, n0, _SIL, 0, () => StreamInfo];
1112
+ var TagList = [1, n0, _TL, 0, () => Tag];
1113
+ var TagOnCreateList = [1, n0, _TOCL, 0, () => Tag];
1114
+ var CreateSignalingChannel = [
1115
+ 9,
1116
+ n0,
1117
+ _CSC,
1118
+ {
1119
+ [_h]: ["POST", "/createSignalingChannel", 200],
1120
+ },
1121
+ () => CreateSignalingChannelInput,
1122
+ () => CreateSignalingChannelOutput,
1123
+ ];
1124
+ var CreateStream = [
1125
+ 9,
1126
+ n0,
1127
+ _CSr,
1128
+ {
1129
+ [_h]: ["POST", "/createStream", 200],
1130
+ },
1131
+ () => CreateStreamInput,
1132
+ () => CreateStreamOutput,
1133
+ ];
1134
+ var DeleteEdgeConfiguration = [
1135
+ 9,
1136
+ n0,
1137
+ _DEC,
1138
+ {
1139
+ [_h]: ["POST", "/deleteEdgeConfiguration", 200],
1140
+ },
1141
+ () => DeleteEdgeConfigurationInput,
1142
+ () => DeleteEdgeConfigurationOutput,
1143
+ ];
1144
+ var DeleteSignalingChannel = [
1145
+ 9,
1146
+ n0,
1147
+ _DSC,
1148
+ {
1149
+ [_h]: ["POST", "/deleteSignalingChannel", 200],
1150
+ },
1151
+ () => DeleteSignalingChannelInput,
1152
+ () => DeleteSignalingChannelOutput,
1153
+ ];
1154
+ var DeleteStream = [
1155
+ 9,
1156
+ n0,
1157
+ _DS,
1158
+ {
1159
+ [_h]: ["POST", "/deleteStream", 200],
1160
+ },
1161
+ () => DeleteStreamInput,
1162
+ () => DeleteStreamOutput,
1163
+ ];
1164
+ var DescribeEdgeConfiguration = [
1165
+ 9,
1166
+ n0,
1167
+ _DECe,
1168
+ {
1169
+ [_h]: ["POST", "/describeEdgeConfiguration", 200],
1170
+ },
1171
+ () => DescribeEdgeConfigurationInput,
1172
+ () => DescribeEdgeConfigurationOutput,
1173
+ ];
1174
+ var DescribeImageGenerationConfiguration = [
1175
+ 9,
1176
+ n0,
1177
+ _DIGC,
1178
+ {
1179
+ [_h]: ["POST", "/describeImageGenerationConfiguration", 200],
1180
+ },
1181
+ () => DescribeImageGenerationConfigurationInput,
1182
+ () => DescribeImageGenerationConfigurationOutput,
1183
+ ];
1184
+ var DescribeMappedResourceConfiguration = [
1185
+ 9,
1186
+ n0,
1187
+ _DMRC,
1188
+ {
1189
+ [_h]: ["POST", "/describeMappedResourceConfiguration", 200],
1190
+ },
1191
+ () => DescribeMappedResourceConfigurationInput,
1192
+ () => DescribeMappedResourceConfigurationOutput,
1193
+ ];
1194
+ var DescribeMediaStorageConfiguration = [
1195
+ 9,
1196
+ n0,
1197
+ _DMSC,
1198
+ {
1199
+ [_h]: ["POST", "/describeMediaStorageConfiguration", 200],
1200
+ },
1201
+ () => DescribeMediaStorageConfigurationInput,
1202
+ () => DescribeMediaStorageConfigurationOutput,
1203
+ ];
1204
+ var DescribeNotificationConfiguration = [
1205
+ 9,
1206
+ n0,
1207
+ _DNC,
1208
+ {
1209
+ [_h]: ["POST", "/describeNotificationConfiguration", 200],
1210
+ },
1211
+ () => DescribeNotificationConfigurationInput,
1212
+ () => DescribeNotificationConfigurationOutput,
1213
+ ];
1214
+ var DescribeSignalingChannel = [
1215
+ 9,
1216
+ n0,
1217
+ _DSCe,
1218
+ {
1219
+ [_h]: ["POST", "/describeSignalingChannel", 200],
1220
+ },
1221
+ () => DescribeSignalingChannelInput,
1222
+ () => DescribeSignalingChannelOutput,
1223
+ ];
1224
+ var DescribeStream = [
1225
+ 9,
1226
+ n0,
1227
+ _DSe,
1228
+ {
1229
+ [_h]: ["POST", "/describeStream", 200],
1230
+ },
1231
+ () => DescribeStreamInput,
1232
+ () => DescribeStreamOutput,
1233
+ ];
1234
+ var GetDataEndpoint = [
1235
+ 9,
1236
+ n0,
1237
+ _GDE,
1238
+ {
1239
+ [_h]: ["POST", "/getDataEndpoint", 200],
1240
+ },
1241
+ () => GetDataEndpointInput,
1242
+ () => GetDataEndpointOutput,
1243
+ ];
1244
+ var GetSignalingChannelEndpoint = [
1245
+ 9,
1246
+ n0,
1247
+ _GSCE,
1248
+ {
1249
+ [_h]: ["POST", "/getSignalingChannelEndpoint", 200],
1250
+ },
1251
+ () => GetSignalingChannelEndpointInput,
1252
+ () => GetSignalingChannelEndpointOutput,
1253
+ ];
1254
+ var ListEdgeAgentConfigurations = [
1255
+ 9,
1256
+ n0,
1257
+ _LEAC,
1258
+ {
1259
+ [_h]: ["POST", "/listEdgeAgentConfigurations", 200],
1260
+ },
1261
+ () => ListEdgeAgentConfigurationsInput,
1262
+ () => ListEdgeAgentConfigurationsOutput,
1263
+ ];
1264
+ var ListSignalingChannels = [
1265
+ 9,
1266
+ n0,
1267
+ _LSCi,
1268
+ {
1269
+ [_h]: ["POST", "/listSignalingChannels", 200],
1270
+ },
1271
+ () => ListSignalingChannelsInput,
1272
+ () => ListSignalingChannelsOutput,
1273
+ ];
1274
+ var ListStreams = [
1275
+ 9,
1276
+ n0,
1277
+ _LS,
1278
+ {
1279
+ [_h]: ["POST", "/listStreams", 200],
1280
+ },
1281
+ () => ListStreamsInput,
1282
+ () => ListStreamsOutput,
1283
+ ];
1284
+ var ListTagsForResource = [
1285
+ 9,
1286
+ n0,
1287
+ _LTFR,
1288
+ {
1289
+ [_h]: ["POST", "/ListTagsForResource", 200],
1290
+ },
1291
+ () => ListTagsForResourceInput,
1292
+ () => ListTagsForResourceOutput,
1293
+ ];
1294
+ var ListTagsForStream = [
1295
+ 9,
1296
+ n0,
1297
+ _LTFS,
1298
+ {
1299
+ [_h]: ["POST", "/listTagsForStream", 200],
1300
+ },
1301
+ () => ListTagsForStreamInput,
1302
+ () => ListTagsForStreamOutput,
1303
+ ];
1304
+ var StartEdgeConfigurationUpdate = [
1305
+ 9,
1306
+ n0,
1307
+ _SECU,
1308
+ {
1309
+ [_h]: ["POST", "/startEdgeConfigurationUpdate", 200],
1310
+ },
1311
+ () => StartEdgeConfigurationUpdateInput,
1312
+ () => StartEdgeConfigurationUpdateOutput,
1313
+ ];
1314
+ var TagResource = [
1315
+ 9,
1316
+ n0,
1317
+ _TR,
1318
+ {
1319
+ [_h]: ["POST", "/TagResource", 200],
1320
+ },
1321
+ () => TagResourceInput,
1322
+ () => TagResourceOutput,
1323
+ ];
1324
+ var TagStream = [
1325
+ 9,
1326
+ n0,
1327
+ _TS,
1328
+ {
1329
+ [_h]: ["POST", "/tagStream", 200],
1330
+ },
1331
+ () => TagStreamInput,
1332
+ () => TagStreamOutput,
1333
+ ];
1334
+ var UntagResource = [
1335
+ 9,
1336
+ n0,
1337
+ _UR,
1338
+ {
1339
+ [_h]: ["POST", "/UntagResource", 200],
1340
+ },
1341
+ () => UntagResourceInput,
1342
+ () => UntagResourceOutput,
1343
+ ];
1344
+ var UntagStream = [
1345
+ 9,
1346
+ n0,
1347
+ _USn,
1348
+ {
1349
+ [_h]: ["POST", "/untagStream", 200],
1350
+ },
1351
+ () => UntagStreamInput,
1352
+ () => UntagStreamOutput,
1353
+ ];
1354
+ var UpdateDataRetention = [
1355
+ 9,
1356
+ n0,
1357
+ _UDR,
1358
+ {
1359
+ [_h]: ["POST", "/updateDataRetention", 200],
1360
+ },
1361
+ () => UpdateDataRetentionInput,
1362
+ () => UpdateDataRetentionOutput,
1363
+ ];
1364
+ var UpdateImageGenerationConfiguration = [
1365
+ 9,
1366
+ n0,
1367
+ _UIGC,
1368
+ {
1369
+ [_h]: ["POST", "/updateImageGenerationConfiguration", 200],
1370
+ },
1371
+ () => UpdateImageGenerationConfigurationInput,
1372
+ () => UpdateImageGenerationConfigurationOutput,
1373
+ ];
1374
+ var UpdateMediaStorageConfiguration = [
1375
+ 9,
1376
+ n0,
1377
+ _UMSC,
1378
+ {
1379
+ [_h]: ["POST", "/updateMediaStorageConfiguration", 200],
1380
+ },
1381
+ () => UpdateMediaStorageConfigurationInput,
1382
+ () => UpdateMediaStorageConfigurationOutput,
1383
+ ];
1384
+ var UpdateNotificationConfiguration = [
1385
+ 9,
1386
+ n0,
1387
+ _UNC,
1388
+ {
1389
+ [_h]: ["POST", "/updateNotificationConfiguration", 200],
1390
+ },
1391
+ () => UpdateNotificationConfigurationInput,
1392
+ () => UpdateNotificationConfigurationOutput,
1393
+ ];
1394
+ var UpdateSignalingChannel = [
1395
+ 9,
1396
+ n0,
1397
+ _USC,
1398
+ {
1399
+ [_h]: ["POST", "/updateSignalingChannel", 200],
1400
+ },
1401
+ () => UpdateSignalingChannelInput,
1402
+ () => UpdateSignalingChannelOutput,
1403
+ ];
1404
+ var UpdateStream = [
1405
+ 9,
1406
+ n0,
1407
+ _USp,
1408
+ {
1409
+ [_h]: ["POST", "/updateStream", 200],
1410
+ },
1411
+ () => UpdateStreamInput,
1412
+ () => UpdateStreamOutput,
1413
+ ];
1623
1414
 
1624
1415
  class CreateSignalingChannelCommand extends smithyClient.Command
1625
1416
  .classBuilder()
1626
1417
  .ep(commonParams)
1627
1418
  .m(function (Command, cs, config, o) {
1628
- return [
1629
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1630
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1631
- ];
1419
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1632
1420
  })
1633
1421
  .s("KinesisVideo_20170930", "CreateSignalingChannel", {})
1634
1422
  .n("KinesisVideoClient", "CreateSignalingChannelCommand")
1635
- .f(void 0, void 0)
1636
- .ser(se_CreateSignalingChannelCommand)
1637
- .de(de_CreateSignalingChannelCommand)
1423
+ .sc(CreateSignalingChannel)
1638
1424
  .build() {
1639
1425
  }
1640
1426
 
@@ -1642,16 +1428,11 @@ class CreateStreamCommand extends smithyClient.Command
1642
1428
  .classBuilder()
1643
1429
  .ep(commonParams)
1644
1430
  .m(function (Command, cs, config, o) {
1645
- return [
1646
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1647
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1648
- ];
1431
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1649
1432
  })
1650
1433
  .s("KinesisVideo_20170930", "CreateStream", {})
1651
1434
  .n("KinesisVideoClient", "CreateStreamCommand")
1652
- .f(void 0, void 0)
1653
- .ser(se_CreateStreamCommand)
1654
- .de(de_CreateStreamCommand)
1435
+ .sc(CreateStream)
1655
1436
  .build() {
1656
1437
  }
1657
1438
 
@@ -1659,16 +1440,11 @@ class DeleteEdgeConfigurationCommand extends smithyClient.Command
1659
1440
  .classBuilder()
1660
1441
  .ep(commonParams)
1661
1442
  .m(function (Command, cs, config, o) {
1662
- return [
1663
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1664
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1665
- ];
1443
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1666
1444
  })
1667
1445
  .s("KinesisVideo_20170930", "DeleteEdgeConfiguration", {})
1668
1446
  .n("KinesisVideoClient", "DeleteEdgeConfigurationCommand")
1669
- .f(void 0, void 0)
1670
- .ser(se_DeleteEdgeConfigurationCommand)
1671
- .de(de_DeleteEdgeConfigurationCommand)
1447
+ .sc(DeleteEdgeConfiguration)
1672
1448
  .build() {
1673
1449
  }
1674
1450
 
@@ -1676,16 +1452,11 @@ class DeleteSignalingChannelCommand extends smithyClient.Command
1676
1452
  .classBuilder()
1677
1453
  .ep(commonParams)
1678
1454
  .m(function (Command, cs, config, o) {
1679
- return [
1680
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1681
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1682
- ];
1455
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1683
1456
  })
1684
1457
  .s("KinesisVideo_20170930", "DeleteSignalingChannel", {})
1685
1458
  .n("KinesisVideoClient", "DeleteSignalingChannelCommand")
1686
- .f(void 0, void 0)
1687
- .ser(se_DeleteSignalingChannelCommand)
1688
- .de(de_DeleteSignalingChannelCommand)
1459
+ .sc(DeleteSignalingChannel)
1689
1460
  .build() {
1690
1461
  }
1691
1462
 
@@ -1693,16 +1464,11 @@ class DeleteStreamCommand extends smithyClient.Command
1693
1464
  .classBuilder()
1694
1465
  .ep(commonParams)
1695
1466
  .m(function (Command, cs, config, o) {
1696
- return [
1697
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1698
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1699
- ];
1467
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1700
1468
  })
1701
1469
  .s("KinesisVideo_20170930", "DeleteStream", {})
1702
1470
  .n("KinesisVideoClient", "DeleteStreamCommand")
1703
- .f(void 0, void 0)
1704
- .ser(se_DeleteStreamCommand)
1705
- .de(de_DeleteStreamCommand)
1471
+ .sc(DeleteStream)
1706
1472
  .build() {
1707
1473
  }
1708
1474
 
@@ -1710,16 +1476,11 @@ class DescribeEdgeConfigurationCommand extends smithyClient.Command
1710
1476
  .classBuilder()
1711
1477
  .ep(commonParams)
1712
1478
  .m(function (Command, cs, config, o) {
1713
- return [
1714
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1715
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1716
- ];
1479
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1717
1480
  })
1718
1481
  .s("KinesisVideo_20170930", "DescribeEdgeConfiguration", {})
1719
1482
  .n("KinesisVideoClient", "DescribeEdgeConfigurationCommand")
1720
- .f(void 0, DescribeEdgeConfigurationOutputFilterSensitiveLog)
1721
- .ser(se_DescribeEdgeConfigurationCommand)
1722
- .de(de_DescribeEdgeConfigurationCommand)
1483
+ .sc(DescribeEdgeConfiguration)
1723
1484
  .build() {
1724
1485
  }
1725
1486
 
@@ -1727,16 +1488,11 @@ class DescribeImageGenerationConfigurationCommand extends smithyClient.Command
1727
1488
  .classBuilder()
1728
1489
  .ep(commonParams)
1729
1490
  .m(function (Command, cs, config, o) {
1730
- return [
1731
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1732
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1733
- ];
1491
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1734
1492
  })
1735
1493
  .s("KinesisVideo_20170930", "DescribeImageGenerationConfiguration", {})
1736
1494
  .n("KinesisVideoClient", "DescribeImageGenerationConfigurationCommand")
1737
- .f(void 0, void 0)
1738
- .ser(se_DescribeImageGenerationConfigurationCommand)
1739
- .de(de_DescribeImageGenerationConfigurationCommand)
1495
+ .sc(DescribeImageGenerationConfiguration)
1740
1496
  .build() {
1741
1497
  }
1742
1498
 
@@ -1744,16 +1500,11 @@ class DescribeMappedResourceConfigurationCommand extends smithyClient.Command
1744
1500
  .classBuilder()
1745
1501
  .ep(commonParams)
1746
1502
  .m(function (Command, cs, config, o) {
1747
- return [
1748
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1749
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1750
- ];
1503
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1751
1504
  })
1752
1505
  .s("KinesisVideo_20170930", "DescribeMappedResourceConfiguration", {})
1753
1506
  .n("KinesisVideoClient", "DescribeMappedResourceConfigurationCommand")
1754
- .f(void 0, void 0)
1755
- .ser(se_DescribeMappedResourceConfigurationCommand)
1756
- .de(de_DescribeMappedResourceConfigurationCommand)
1507
+ .sc(DescribeMappedResourceConfiguration)
1757
1508
  .build() {
1758
1509
  }
1759
1510
 
@@ -1761,16 +1512,11 @@ class DescribeMediaStorageConfigurationCommand extends smithyClient.Command
1761
1512
  .classBuilder()
1762
1513
  .ep(commonParams)
1763
1514
  .m(function (Command, cs, config, o) {
1764
- return [
1765
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1766
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1767
- ];
1515
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1768
1516
  })
1769
1517
  .s("KinesisVideo_20170930", "DescribeMediaStorageConfiguration", {})
1770
1518
  .n("KinesisVideoClient", "DescribeMediaStorageConfigurationCommand")
1771
- .f(void 0, void 0)
1772
- .ser(se_DescribeMediaStorageConfigurationCommand)
1773
- .de(de_DescribeMediaStorageConfigurationCommand)
1519
+ .sc(DescribeMediaStorageConfiguration)
1774
1520
  .build() {
1775
1521
  }
1776
1522
 
@@ -1778,16 +1524,11 @@ class DescribeNotificationConfigurationCommand extends smithyClient.Command
1778
1524
  .classBuilder()
1779
1525
  .ep(commonParams)
1780
1526
  .m(function (Command, cs, config, o) {
1781
- return [
1782
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1783
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1784
- ];
1527
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1785
1528
  })
1786
1529
  .s("KinesisVideo_20170930", "DescribeNotificationConfiguration", {})
1787
1530
  .n("KinesisVideoClient", "DescribeNotificationConfigurationCommand")
1788
- .f(void 0, void 0)
1789
- .ser(se_DescribeNotificationConfigurationCommand)
1790
- .de(de_DescribeNotificationConfigurationCommand)
1531
+ .sc(DescribeNotificationConfiguration)
1791
1532
  .build() {
1792
1533
  }
1793
1534
 
@@ -1795,16 +1536,11 @@ class DescribeSignalingChannelCommand extends smithyClient.Command
1795
1536
  .classBuilder()
1796
1537
  .ep(commonParams)
1797
1538
  .m(function (Command, cs, config, o) {
1798
- return [
1799
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1800
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1801
- ];
1539
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1802
1540
  })
1803
1541
  .s("KinesisVideo_20170930", "DescribeSignalingChannel", {})
1804
1542
  .n("KinesisVideoClient", "DescribeSignalingChannelCommand")
1805
- .f(void 0, void 0)
1806
- .ser(se_DescribeSignalingChannelCommand)
1807
- .de(de_DescribeSignalingChannelCommand)
1543
+ .sc(DescribeSignalingChannel)
1808
1544
  .build() {
1809
1545
  }
1810
1546
 
@@ -1812,16 +1548,11 @@ class DescribeStreamCommand extends smithyClient.Command
1812
1548
  .classBuilder()
1813
1549
  .ep(commonParams)
1814
1550
  .m(function (Command, cs, config, o) {
1815
- return [
1816
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1817
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1818
- ];
1551
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1819
1552
  })
1820
1553
  .s("KinesisVideo_20170930", "DescribeStream", {})
1821
1554
  .n("KinesisVideoClient", "DescribeStreamCommand")
1822
- .f(void 0, void 0)
1823
- .ser(se_DescribeStreamCommand)
1824
- .de(de_DescribeStreamCommand)
1555
+ .sc(DescribeStream)
1825
1556
  .build() {
1826
1557
  }
1827
1558
 
@@ -1829,16 +1560,11 @@ class GetDataEndpointCommand extends smithyClient.Command
1829
1560
  .classBuilder()
1830
1561
  .ep(commonParams)
1831
1562
  .m(function (Command, cs, config, o) {
1832
- return [
1833
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1834
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1835
- ];
1563
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1836
1564
  })
1837
1565
  .s("KinesisVideo_20170930", "GetDataEndpoint", {})
1838
1566
  .n("KinesisVideoClient", "GetDataEndpointCommand")
1839
- .f(void 0, void 0)
1840
- .ser(se_GetDataEndpointCommand)
1841
- .de(de_GetDataEndpointCommand)
1567
+ .sc(GetDataEndpoint)
1842
1568
  .build() {
1843
1569
  }
1844
1570
 
@@ -1846,16 +1572,11 @@ class GetSignalingChannelEndpointCommand extends smithyClient.Command
1846
1572
  .classBuilder()
1847
1573
  .ep(commonParams)
1848
1574
  .m(function (Command, cs, config, o) {
1849
- return [
1850
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1851
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1852
- ];
1575
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1853
1576
  })
1854
1577
  .s("KinesisVideo_20170930", "GetSignalingChannelEndpoint", {})
1855
1578
  .n("KinesisVideoClient", "GetSignalingChannelEndpointCommand")
1856
- .f(void 0, void 0)
1857
- .ser(se_GetSignalingChannelEndpointCommand)
1858
- .de(de_GetSignalingChannelEndpointCommand)
1579
+ .sc(GetSignalingChannelEndpoint)
1859
1580
  .build() {
1860
1581
  }
1861
1582
 
@@ -1863,16 +1584,11 @@ class ListEdgeAgentConfigurationsCommand extends smithyClient.Command
1863
1584
  .classBuilder()
1864
1585
  .ep(commonParams)
1865
1586
  .m(function (Command, cs, config, o) {
1866
- return [
1867
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1868
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1869
- ];
1587
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1870
1588
  })
1871
1589
  .s("KinesisVideo_20170930", "ListEdgeAgentConfigurations", {})
1872
1590
  .n("KinesisVideoClient", "ListEdgeAgentConfigurationsCommand")
1873
- .f(void 0, ListEdgeAgentConfigurationsOutputFilterSensitiveLog)
1874
- .ser(se_ListEdgeAgentConfigurationsCommand)
1875
- .de(de_ListEdgeAgentConfigurationsCommand)
1591
+ .sc(ListEdgeAgentConfigurations)
1876
1592
  .build() {
1877
1593
  }
1878
1594
 
@@ -1880,16 +1596,11 @@ class ListSignalingChannelsCommand extends smithyClient.Command
1880
1596
  .classBuilder()
1881
1597
  .ep(commonParams)
1882
1598
  .m(function (Command, cs, config, o) {
1883
- return [
1884
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1885
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1886
- ];
1599
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1887
1600
  })
1888
1601
  .s("KinesisVideo_20170930", "ListSignalingChannels", {})
1889
1602
  .n("KinesisVideoClient", "ListSignalingChannelsCommand")
1890
- .f(void 0, void 0)
1891
- .ser(se_ListSignalingChannelsCommand)
1892
- .de(de_ListSignalingChannelsCommand)
1603
+ .sc(ListSignalingChannels)
1893
1604
  .build() {
1894
1605
  }
1895
1606
 
@@ -1897,16 +1608,11 @@ class ListStreamsCommand extends smithyClient.Command
1897
1608
  .classBuilder()
1898
1609
  .ep(commonParams)
1899
1610
  .m(function (Command, cs, config, o) {
1900
- return [
1901
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1902
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1903
- ];
1611
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1904
1612
  })
1905
1613
  .s("KinesisVideo_20170930", "ListStreams", {})
1906
1614
  .n("KinesisVideoClient", "ListStreamsCommand")
1907
- .f(void 0, void 0)
1908
- .ser(se_ListStreamsCommand)
1909
- .de(de_ListStreamsCommand)
1615
+ .sc(ListStreams)
1910
1616
  .build() {
1911
1617
  }
1912
1618
 
@@ -1914,16 +1620,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1914
1620
  .classBuilder()
1915
1621
  .ep(commonParams)
1916
1622
  .m(function (Command, cs, config, o) {
1917
- return [
1918
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1919
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1920
- ];
1623
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1921
1624
  })
1922
1625
  .s("KinesisVideo_20170930", "ListTagsForResource", {})
1923
1626
  .n("KinesisVideoClient", "ListTagsForResourceCommand")
1924
- .f(void 0, void 0)
1925
- .ser(se_ListTagsForResourceCommand)
1926
- .de(de_ListTagsForResourceCommand)
1627
+ .sc(ListTagsForResource)
1927
1628
  .build() {
1928
1629
  }
1929
1630
 
@@ -1931,16 +1632,11 @@ class ListTagsForStreamCommand extends smithyClient.Command
1931
1632
  .classBuilder()
1932
1633
  .ep(commonParams)
1933
1634
  .m(function (Command, cs, config, o) {
1934
- return [
1935
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1936
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1937
- ];
1635
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1938
1636
  })
1939
1637
  .s("KinesisVideo_20170930", "ListTagsForStream", {})
1940
1638
  .n("KinesisVideoClient", "ListTagsForStreamCommand")
1941
- .f(void 0, void 0)
1942
- .ser(se_ListTagsForStreamCommand)
1943
- .de(de_ListTagsForStreamCommand)
1639
+ .sc(ListTagsForStream)
1944
1640
  .build() {
1945
1641
  }
1946
1642
 
@@ -1948,16 +1644,11 @@ class StartEdgeConfigurationUpdateCommand extends smithyClient.Command
1948
1644
  .classBuilder()
1949
1645
  .ep(commonParams)
1950
1646
  .m(function (Command, cs, config, o) {
1951
- return [
1952
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1953
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1954
- ];
1647
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1955
1648
  })
1956
1649
  .s("KinesisVideo_20170930", "StartEdgeConfigurationUpdate", {})
1957
1650
  .n("KinesisVideoClient", "StartEdgeConfigurationUpdateCommand")
1958
- .f(StartEdgeConfigurationUpdateInputFilterSensitiveLog, StartEdgeConfigurationUpdateOutputFilterSensitiveLog)
1959
- .ser(se_StartEdgeConfigurationUpdateCommand)
1960
- .de(de_StartEdgeConfigurationUpdateCommand)
1651
+ .sc(StartEdgeConfigurationUpdate)
1961
1652
  .build() {
1962
1653
  }
1963
1654
 
@@ -1965,16 +1656,11 @@ class TagResourceCommand extends smithyClient.Command
1965
1656
  .classBuilder()
1966
1657
  .ep(commonParams)
1967
1658
  .m(function (Command, cs, config, o) {
1968
- return [
1969
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1970
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1971
- ];
1659
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1972
1660
  })
1973
1661
  .s("KinesisVideo_20170930", "TagResource", {})
1974
1662
  .n("KinesisVideoClient", "TagResourceCommand")
1975
- .f(void 0, void 0)
1976
- .ser(se_TagResourceCommand)
1977
- .de(de_TagResourceCommand)
1663
+ .sc(TagResource)
1978
1664
  .build() {
1979
1665
  }
1980
1666
 
@@ -1982,16 +1668,11 @@ class TagStreamCommand extends smithyClient.Command
1982
1668
  .classBuilder()
1983
1669
  .ep(commonParams)
1984
1670
  .m(function (Command, cs, config, o) {
1985
- return [
1986
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1987
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1988
- ];
1671
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1989
1672
  })
1990
1673
  .s("KinesisVideo_20170930", "TagStream", {})
1991
1674
  .n("KinesisVideoClient", "TagStreamCommand")
1992
- .f(void 0, void 0)
1993
- .ser(se_TagStreamCommand)
1994
- .de(de_TagStreamCommand)
1675
+ .sc(TagStream)
1995
1676
  .build() {
1996
1677
  }
1997
1678
 
@@ -1999,16 +1680,11 @@ class UntagResourceCommand extends smithyClient.Command
1999
1680
  .classBuilder()
2000
1681
  .ep(commonParams)
2001
1682
  .m(function (Command, cs, config, o) {
2002
- return [
2003
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2004
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2005
- ];
1683
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2006
1684
  })
2007
1685
  .s("KinesisVideo_20170930", "UntagResource", {})
2008
1686
  .n("KinesisVideoClient", "UntagResourceCommand")
2009
- .f(void 0, void 0)
2010
- .ser(se_UntagResourceCommand)
2011
- .de(de_UntagResourceCommand)
1687
+ .sc(UntagResource)
2012
1688
  .build() {
2013
1689
  }
2014
1690
 
@@ -2016,16 +1692,11 @@ class UntagStreamCommand extends smithyClient.Command
2016
1692
  .classBuilder()
2017
1693
  .ep(commonParams)
2018
1694
  .m(function (Command, cs, config, o) {
2019
- return [
2020
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2021
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2022
- ];
1695
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2023
1696
  })
2024
1697
  .s("KinesisVideo_20170930", "UntagStream", {})
2025
1698
  .n("KinesisVideoClient", "UntagStreamCommand")
2026
- .f(void 0, void 0)
2027
- .ser(se_UntagStreamCommand)
2028
- .de(de_UntagStreamCommand)
1699
+ .sc(UntagStream)
2029
1700
  .build() {
2030
1701
  }
2031
1702
 
@@ -2033,16 +1704,11 @@ class UpdateDataRetentionCommand extends smithyClient.Command
2033
1704
  .classBuilder()
2034
1705
  .ep(commonParams)
2035
1706
  .m(function (Command, cs, config, o) {
2036
- return [
2037
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2038
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2039
- ];
1707
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2040
1708
  })
2041
1709
  .s("KinesisVideo_20170930", "UpdateDataRetention", {})
2042
1710
  .n("KinesisVideoClient", "UpdateDataRetentionCommand")
2043
- .f(void 0, void 0)
2044
- .ser(se_UpdateDataRetentionCommand)
2045
- .de(de_UpdateDataRetentionCommand)
1711
+ .sc(UpdateDataRetention)
2046
1712
  .build() {
2047
1713
  }
2048
1714
 
@@ -2050,16 +1716,11 @@ class UpdateImageGenerationConfigurationCommand extends smithyClient.Command
2050
1716
  .classBuilder()
2051
1717
  .ep(commonParams)
2052
1718
  .m(function (Command, cs, config, o) {
2053
- return [
2054
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2055
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2056
- ];
1719
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2057
1720
  })
2058
1721
  .s("KinesisVideo_20170930", "UpdateImageGenerationConfiguration", {})
2059
1722
  .n("KinesisVideoClient", "UpdateImageGenerationConfigurationCommand")
2060
- .f(void 0, void 0)
2061
- .ser(se_UpdateImageGenerationConfigurationCommand)
2062
- .de(de_UpdateImageGenerationConfigurationCommand)
1723
+ .sc(UpdateImageGenerationConfiguration)
2063
1724
  .build() {
2064
1725
  }
2065
1726
 
@@ -2067,16 +1728,11 @@ class UpdateMediaStorageConfigurationCommand extends smithyClient.Command
2067
1728
  .classBuilder()
2068
1729
  .ep(commonParams)
2069
1730
  .m(function (Command, cs, config, o) {
2070
- return [
2071
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2072
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2073
- ];
1731
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2074
1732
  })
2075
1733
  .s("KinesisVideo_20170930", "UpdateMediaStorageConfiguration", {})
2076
1734
  .n("KinesisVideoClient", "UpdateMediaStorageConfigurationCommand")
2077
- .f(void 0, void 0)
2078
- .ser(se_UpdateMediaStorageConfigurationCommand)
2079
- .de(de_UpdateMediaStorageConfigurationCommand)
1735
+ .sc(UpdateMediaStorageConfiguration)
2080
1736
  .build() {
2081
1737
  }
2082
1738
 
@@ -2084,16 +1740,11 @@ class UpdateNotificationConfigurationCommand extends smithyClient.Command
2084
1740
  .classBuilder()
2085
1741
  .ep(commonParams)
2086
1742
  .m(function (Command, cs, config, o) {
2087
- return [
2088
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2089
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2090
- ];
1743
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2091
1744
  })
2092
1745
  .s("KinesisVideo_20170930", "UpdateNotificationConfiguration", {})
2093
1746
  .n("KinesisVideoClient", "UpdateNotificationConfigurationCommand")
2094
- .f(void 0, void 0)
2095
- .ser(se_UpdateNotificationConfigurationCommand)
2096
- .de(de_UpdateNotificationConfigurationCommand)
1747
+ .sc(UpdateNotificationConfiguration)
2097
1748
  .build() {
2098
1749
  }
2099
1750
 
@@ -2101,16 +1752,11 @@ class UpdateSignalingChannelCommand extends smithyClient.Command
2101
1752
  .classBuilder()
2102
1753
  .ep(commonParams)
2103
1754
  .m(function (Command, cs, config, o) {
2104
- return [
2105
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2106
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2107
- ];
1755
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2108
1756
  })
2109
1757
  .s("KinesisVideo_20170930", "UpdateSignalingChannel", {})
2110
1758
  .n("KinesisVideoClient", "UpdateSignalingChannelCommand")
2111
- .f(void 0, void 0)
2112
- .ser(se_UpdateSignalingChannelCommand)
2113
- .de(de_UpdateSignalingChannelCommand)
1759
+ .sc(UpdateSignalingChannel)
2114
1760
  .build() {
2115
1761
  }
2116
1762
 
@@ -2118,16 +1764,11 @@ class UpdateStreamCommand extends smithyClient.Command
2118
1764
  .classBuilder()
2119
1765
  .ep(commonParams)
2120
1766
  .m(function (Command, cs, config, o) {
2121
- return [
2122
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2123
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2124
- ];
1767
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2125
1768
  })
2126
1769
  .s("KinesisVideo_20170930", "UpdateStream", {})
2127
1770
  .n("KinesisVideoClient", "UpdateStreamCommand")
2128
- .f(void 0, void 0)
2129
- .ser(se_UpdateStreamCommand)
2130
- .de(de_UpdateStreamCommand)
1771
+ .sc(UpdateStream)
2131
1772
  .build() {
2132
1773
  }
2133
1774
 
@@ -2184,13 +1825,13 @@ Object.defineProperty(exports, "__Client", {
2184
1825
  get: function () { return smithyClient.Client; }
2185
1826
  });
2186
1827
  exports.APIName = APIName;
2187
- exports.AccessDeniedException = AccessDeniedException;
2188
- exports.AccountChannelLimitExceededException = AccountChannelLimitExceededException;
2189
- exports.AccountStreamLimitExceededException = AccountStreamLimitExceededException;
1828
+ exports.AccessDeniedException = AccessDeniedException$1;
1829
+ exports.AccountChannelLimitExceededException = AccountChannelLimitExceededException$1;
1830
+ exports.AccountStreamLimitExceededException = AccountStreamLimitExceededException$1;
2190
1831
  exports.ChannelProtocol = ChannelProtocol;
2191
1832
  exports.ChannelRole = ChannelRole;
2192
1833
  exports.ChannelType = ChannelType;
2193
- exports.ClientLimitExceededException = ClientLimitExceededException;
1834
+ exports.ClientLimitExceededException = ClientLimitExceededException$1;
2194
1835
  exports.ComparisonOperator = ComparisonOperator;
2195
1836
  exports.ConfigurationStatus = ConfigurationStatus;
2196
1837
  exports.CreateSignalingChannelCommand = CreateSignalingChannelCommand;
@@ -2199,52 +1840,44 @@ exports.DeleteEdgeConfigurationCommand = DeleteEdgeConfigurationCommand;
2199
1840
  exports.DeleteSignalingChannelCommand = DeleteSignalingChannelCommand;
2200
1841
  exports.DeleteStreamCommand = DeleteStreamCommand;
2201
1842
  exports.DescribeEdgeConfigurationCommand = DescribeEdgeConfigurationCommand;
2202
- exports.DescribeEdgeConfigurationOutputFilterSensitiveLog = DescribeEdgeConfigurationOutputFilterSensitiveLog;
2203
1843
  exports.DescribeImageGenerationConfigurationCommand = DescribeImageGenerationConfigurationCommand;
2204
1844
  exports.DescribeMappedResourceConfigurationCommand = DescribeMappedResourceConfigurationCommand;
2205
1845
  exports.DescribeMediaStorageConfigurationCommand = DescribeMediaStorageConfigurationCommand;
2206
1846
  exports.DescribeNotificationConfigurationCommand = DescribeNotificationConfigurationCommand;
2207
1847
  exports.DescribeSignalingChannelCommand = DescribeSignalingChannelCommand;
2208
1848
  exports.DescribeStreamCommand = DescribeStreamCommand;
2209
- exports.DeviceStreamLimitExceededException = DeviceStreamLimitExceededException;
2210
- exports.EdgeConfigFilterSensitiveLog = EdgeConfigFilterSensitiveLog;
1849
+ exports.DeviceStreamLimitExceededException = DeviceStreamLimitExceededException$1;
2211
1850
  exports.Format = Format;
2212
1851
  exports.FormatConfigKey = FormatConfigKey;
2213
1852
  exports.GetDataEndpointCommand = GetDataEndpointCommand;
2214
1853
  exports.GetSignalingChannelEndpointCommand = GetSignalingChannelEndpointCommand;
2215
1854
  exports.ImageSelectorType = ImageSelectorType;
2216
- exports.InvalidArgumentException = InvalidArgumentException;
2217
- exports.InvalidDeviceException = InvalidDeviceException;
2218
- exports.InvalidResourceFormatException = InvalidResourceFormatException;
1855
+ exports.InvalidArgumentException = InvalidArgumentException$1;
1856
+ exports.InvalidDeviceException = InvalidDeviceException$1;
1857
+ exports.InvalidResourceFormatException = InvalidResourceFormatException$1;
2219
1858
  exports.KinesisVideo = KinesisVideo;
2220
1859
  exports.KinesisVideoClient = KinesisVideoClient;
2221
- exports.KinesisVideoServiceException = KinesisVideoServiceException;
1860
+ exports.KinesisVideoServiceException = KinesisVideoServiceException$1;
2222
1861
  exports.ListEdgeAgentConfigurationsCommand = ListEdgeAgentConfigurationsCommand;
2223
- exports.ListEdgeAgentConfigurationsEdgeConfigFilterSensitiveLog = ListEdgeAgentConfigurationsEdgeConfigFilterSensitiveLog;
2224
- exports.ListEdgeAgentConfigurationsOutputFilterSensitiveLog = ListEdgeAgentConfigurationsOutputFilterSensitiveLog;
2225
1862
  exports.ListSignalingChannelsCommand = ListSignalingChannelsCommand;
2226
1863
  exports.ListStreamsCommand = ListStreamsCommand;
2227
1864
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2228
1865
  exports.ListTagsForStreamCommand = ListTagsForStreamCommand;
2229
- exports.MediaSourceConfigFilterSensitiveLog = MediaSourceConfigFilterSensitiveLog;
2230
1866
  exports.MediaStorageConfigurationStatus = MediaStorageConfigurationStatus;
2231
1867
  exports.MediaUriType = MediaUriType;
2232
- exports.NoDataRetentionException = NoDataRetentionException;
2233
- exports.NotAuthorizedException = NotAuthorizedException;
2234
- exports.RecorderConfigFilterSensitiveLog = RecorderConfigFilterSensitiveLog;
1868
+ exports.NoDataRetentionException = NoDataRetentionException$1;
1869
+ exports.NotAuthorizedException = NotAuthorizedException$1;
2235
1870
  exports.RecorderStatus = RecorderStatus;
2236
- exports.ResourceInUseException = ResourceInUseException;
2237
- exports.ResourceNotFoundException = ResourceNotFoundException;
1871
+ exports.ResourceInUseException = ResourceInUseException$1;
1872
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
2238
1873
  exports.StartEdgeConfigurationUpdateCommand = StartEdgeConfigurationUpdateCommand;
2239
- exports.StartEdgeConfigurationUpdateInputFilterSensitiveLog = StartEdgeConfigurationUpdateInputFilterSensitiveLog;
2240
- exports.StartEdgeConfigurationUpdateOutputFilterSensitiveLog = StartEdgeConfigurationUpdateOutputFilterSensitiveLog;
2241
1874
  exports.Status = Status;
2242
1875
  exports.StrategyOnFullSize = StrategyOnFullSize;
2243
- exports.StreamEdgeConfigurationNotFoundException = StreamEdgeConfigurationNotFoundException;
1876
+ exports.StreamEdgeConfigurationNotFoundException = StreamEdgeConfigurationNotFoundException$1;
2244
1877
  exports.SyncStatus = SyncStatus;
2245
1878
  exports.TagResourceCommand = TagResourceCommand;
2246
1879
  exports.TagStreamCommand = TagStreamCommand;
2247
- exports.TagsPerResourceExceededLimitException = TagsPerResourceExceededLimitException;
1880
+ exports.TagsPerResourceExceededLimitException = TagsPerResourceExceededLimitException$1;
2248
1881
  exports.UntagResourceCommand = UntagResourceCommand;
2249
1882
  exports.UntagStreamCommand = UntagStreamCommand;
2250
1883
  exports.UpdateDataRetentionCommand = UpdateDataRetentionCommand;
@@ -2255,7 +1888,7 @@ exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfiguration
2255
1888
  exports.UpdateSignalingChannelCommand = UpdateSignalingChannelCommand;
2256
1889
  exports.UpdateStreamCommand = UpdateStreamCommand;
2257
1890
  exports.UploaderStatus = UploaderStatus;
2258
- exports.VersionMismatchException = VersionMismatchException;
1891
+ exports.VersionMismatchException = VersionMismatchException$1;
2259
1892
  exports.paginateDescribeMappedResourceConfiguration = paginateDescribeMappedResourceConfiguration;
2260
1893
  exports.paginateListEdgeAgentConfigurations = paginateListEdgeAgentConfigurations;
2261
1894
  exports.paginateListSignalingChannels = paginateListSignalingChannels;