@aws-sdk/client-kinesis-video 3.721.0 → 3.726.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +242 -175
- package/dist-es/KinesisVideoClient.js +1 -0
- package/dist-es/models/models_0.js +45 -30
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -198,7 +198,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
198
198
|
}, "resolveRuntimeExtensions");
|
|
199
199
|
|
|
200
200
|
// src/KinesisVideoClient.ts
|
|
201
|
-
var
|
|
201
|
+
var KinesisVideoClient = class extends import_smithy_client.Client {
|
|
202
|
+
static {
|
|
203
|
+
__name(this, "KinesisVideoClient");
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* The resolved configuration of KinesisVideoClient class. This is resolved and normalized from the {@link KinesisVideoClientConfig | constructor configuration interface}.
|
|
207
|
+
*/
|
|
208
|
+
config;
|
|
202
209
|
constructor(...[configuration]) {
|
|
203
210
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
204
211
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -208,7 +215,7 @@ var _KinesisVideoClient = class _KinesisVideoClient extends import_smithy_client
|
|
|
208
215
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
209
216
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
210
217
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
211
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
218
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
212
219
|
super(_config_8);
|
|
213
220
|
this.config = _config_8;
|
|
214
221
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -236,8 +243,6 @@ var _KinesisVideoClient = class _KinesisVideoClient extends import_smithy_client
|
|
|
236
243
|
super.destroy();
|
|
237
244
|
}
|
|
238
245
|
};
|
|
239
|
-
__name(_KinesisVideoClient, "KinesisVideoClient");
|
|
240
|
-
var KinesisVideoClient = _KinesisVideoClient;
|
|
241
246
|
|
|
242
247
|
// src/KinesisVideo.ts
|
|
243
248
|
|
|
@@ -254,7 +259,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
254
259
|
|
|
255
260
|
// src/models/KinesisVideoServiceException.ts
|
|
256
261
|
|
|
257
|
-
var
|
|
262
|
+
var KinesisVideoServiceException = class _KinesisVideoServiceException extends import_smithy_client.ServiceException {
|
|
263
|
+
static {
|
|
264
|
+
__name(this, "KinesisVideoServiceException");
|
|
265
|
+
}
|
|
258
266
|
/**
|
|
259
267
|
* @internal
|
|
260
268
|
*/
|
|
@@ -263,12 +271,16 @@ var _KinesisVideoServiceException = class _KinesisVideoServiceException extends
|
|
|
263
271
|
Object.setPrototypeOf(this, _KinesisVideoServiceException.prototype);
|
|
264
272
|
}
|
|
265
273
|
};
|
|
266
|
-
__name(_KinesisVideoServiceException, "KinesisVideoServiceException");
|
|
267
|
-
var KinesisVideoServiceException = _KinesisVideoServiceException;
|
|
268
274
|
|
|
269
275
|
// src/models/models_0.ts
|
|
270
276
|
|
|
271
|
-
var
|
|
277
|
+
var AccessDeniedException = class _AccessDeniedException extends KinesisVideoServiceException {
|
|
278
|
+
static {
|
|
279
|
+
__name(this, "AccessDeniedException");
|
|
280
|
+
}
|
|
281
|
+
name = "AccessDeniedException";
|
|
282
|
+
$fault = "client";
|
|
283
|
+
Message;
|
|
272
284
|
/**
|
|
273
285
|
* @internal
|
|
274
286
|
*/
|
|
@@ -278,15 +290,17 @@ var _AccessDeniedException = class _AccessDeniedException extends KinesisVideoSe
|
|
|
278
290
|
$fault: "client",
|
|
279
291
|
...opts
|
|
280
292
|
});
|
|
281
|
-
this.name = "AccessDeniedException";
|
|
282
|
-
this.$fault = "client";
|
|
283
293
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
284
294
|
this.Message = opts.Message;
|
|
285
295
|
}
|
|
286
296
|
};
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
297
|
+
var AccountChannelLimitExceededException = class _AccountChannelLimitExceededException extends KinesisVideoServiceException {
|
|
298
|
+
static {
|
|
299
|
+
__name(this, "AccountChannelLimitExceededException");
|
|
300
|
+
}
|
|
301
|
+
name = "AccountChannelLimitExceededException";
|
|
302
|
+
$fault = "client";
|
|
303
|
+
Message;
|
|
290
304
|
/**
|
|
291
305
|
* @internal
|
|
292
306
|
*/
|
|
@@ -296,15 +310,17 @@ var _AccountChannelLimitExceededException = class _AccountChannelLimitExceededEx
|
|
|
296
310
|
$fault: "client",
|
|
297
311
|
...opts
|
|
298
312
|
});
|
|
299
|
-
this.name = "AccountChannelLimitExceededException";
|
|
300
|
-
this.$fault = "client";
|
|
301
313
|
Object.setPrototypeOf(this, _AccountChannelLimitExceededException.prototype);
|
|
302
314
|
this.Message = opts.Message;
|
|
303
315
|
}
|
|
304
316
|
};
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
317
|
+
var AccountStreamLimitExceededException = class _AccountStreamLimitExceededException extends KinesisVideoServiceException {
|
|
318
|
+
static {
|
|
319
|
+
__name(this, "AccountStreamLimitExceededException");
|
|
320
|
+
}
|
|
321
|
+
name = "AccountStreamLimitExceededException";
|
|
322
|
+
$fault = "client";
|
|
323
|
+
Message;
|
|
308
324
|
/**
|
|
309
325
|
* @internal
|
|
310
326
|
*/
|
|
@@ -314,14 +330,10 @@ var _AccountStreamLimitExceededException = class _AccountStreamLimitExceededExce
|
|
|
314
330
|
$fault: "client",
|
|
315
331
|
...opts
|
|
316
332
|
});
|
|
317
|
-
this.name = "AccountStreamLimitExceededException";
|
|
318
|
-
this.$fault = "client";
|
|
319
333
|
Object.setPrototypeOf(this, _AccountStreamLimitExceededException.prototype);
|
|
320
334
|
this.Message = opts.Message;
|
|
321
335
|
}
|
|
322
336
|
};
|
|
323
|
-
__name(_AccountStreamLimitExceededException, "AccountStreamLimitExceededException");
|
|
324
|
-
var AccountStreamLimitExceededException = _AccountStreamLimitExceededException;
|
|
325
337
|
var APIName = {
|
|
326
338
|
GET_CLIP: "GET_CLIP",
|
|
327
339
|
GET_DASH_STREAMING_SESSION_URL: "GET_DASH_STREAMING_SESSION_URL",
|
|
@@ -354,7 +366,13 @@ var ChannelRole = {
|
|
|
354
366
|
MASTER: "MASTER",
|
|
355
367
|
VIEWER: "VIEWER"
|
|
356
368
|
};
|
|
357
|
-
var
|
|
369
|
+
var ClientLimitExceededException = class _ClientLimitExceededException extends KinesisVideoServiceException {
|
|
370
|
+
static {
|
|
371
|
+
__name(this, "ClientLimitExceededException");
|
|
372
|
+
}
|
|
373
|
+
name = "ClientLimitExceededException";
|
|
374
|
+
$fault = "client";
|
|
375
|
+
Message;
|
|
358
376
|
/**
|
|
359
377
|
* @internal
|
|
360
378
|
*/
|
|
@@ -364,19 +382,21 @@ var _ClientLimitExceededException = class _ClientLimitExceededException extends
|
|
|
364
382
|
$fault: "client",
|
|
365
383
|
...opts
|
|
366
384
|
});
|
|
367
|
-
this.name = "ClientLimitExceededException";
|
|
368
|
-
this.$fault = "client";
|
|
369
385
|
Object.setPrototypeOf(this, _ClientLimitExceededException.prototype);
|
|
370
386
|
this.Message = opts.Message;
|
|
371
387
|
}
|
|
372
388
|
};
|
|
373
|
-
__name(_ClientLimitExceededException, "ClientLimitExceededException");
|
|
374
|
-
var ClientLimitExceededException = _ClientLimitExceededException;
|
|
375
389
|
var ConfigurationStatus = {
|
|
376
390
|
DISABLED: "DISABLED",
|
|
377
391
|
ENABLED: "ENABLED"
|
|
378
392
|
};
|
|
379
|
-
var
|
|
393
|
+
var InvalidArgumentException = class _InvalidArgumentException extends KinesisVideoServiceException {
|
|
394
|
+
static {
|
|
395
|
+
__name(this, "InvalidArgumentException");
|
|
396
|
+
}
|
|
397
|
+
name = "InvalidArgumentException";
|
|
398
|
+
$fault = "client";
|
|
399
|
+
Message;
|
|
380
400
|
/**
|
|
381
401
|
* @internal
|
|
382
402
|
*/
|
|
@@ -386,15 +406,17 @@ var _InvalidArgumentException = class _InvalidArgumentException extends KinesisV
|
|
|
386
406
|
$fault: "client",
|
|
387
407
|
...opts
|
|
388
408
|
});
|
|
389
|
-
this.name = "InvalidArgumentException";
|
|
390
|
-
this.$fault = "client";
|
|
391
409
|
Object.setPrototypeOf(this, _InvalidArgumentException.prototype);
|
|
392
410
|
this.Message = opts.Message;
|
|
393
411
|
}
|
|
394
412
|
};
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
413
|
+
var ResourceInUseException = class _ResourceInUseException extends KinesisVideoServiceException {
|
|
414
|
+
static {
|
|
415
|
+
__name(this, "ResourceInUseException");
|
|
416
|
+
}
|
|
417
|
+
name = "ResourceInUseException";
|
|
418
|
+
$fault = "client";
|
|
419
|
+
Message;
|
|
398
420
|
/**
|
|
399
421
|
* @internal
|
|
400
422
|
*/
|
|
@@ -404,15 +426,17 @@ var _ResourceInUseException = class _ResourceInUseException extends KinesisVideo
|
|
|
404
426
|
$fault: "client",
|
|
405
427
|
...opts
|
|
406
428
|
});
|
|
407
|
-
this.name = "ResourceInUseException";
|
|
408
|
-
this.$fault = "client";
|
|
409
429
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
410
430
|
this.Message = opts.Message;
|
|
411
431
|
}
|
|
412
432
|
};
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
433
|
+
var TagsPerResourceExceededLimitException = class _TagsPerResourceExceededLimitException extends KinesisVideoServiceException {
|
|
434
|
+
static {
|
|
435
|
+
__name(this, "TagsPerResourceExceededLimitException");
|
|
436
|
+
}
|
|
437
|
+
name = "TagsPerResourceExceededLimitException";
|
|
438
|
+
$fault = "client";
|
|
439
|
+
Message;
|
|
416
440
|
/**
|
|
417
441
|
* @internal
|
|
418
442
|
*/
|
|
@@ -422,15 +446,17 @@ var _TagsPerResourceExceededLimitException = class _TagsPerResourceExceededLimit
|
|
|
422
446
|
$fault: "client",
|
|
423
447
|
...opts
|
|
424
448
|
});
|
|
425
|
-
this.name = "TagsPerResourceExceededLimitException";
|
|
426
|
-
this.$fault = "client";
|
|
427
449
|
Object.setPrototypeOf(this, _TagsPerResourceExceededLimitException.prototype);
|
|
428
450
|
this.Message = opts.Message;
|
|
429
451
|
}
|
|
430
452
|
};
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
453
|
+
var DeviceStreamLimitExceededException = class _DeviceStreamLimitExceededException extends KinesisVideoServiceException {
|
|
454
|
+
static {
|
|
455
|
+
__name(this, "DeviceStreamLimitExceededException");
|
|
456
|
+
}
|
|
457
|
+
name = "DeviceStreamLimitExceededException";
|
|
458
|
+
$fault = "client";
|
|
459
|
+
Message;
|
|
434
460
|
/**
|
|
435
461
|
* @internal
|
|
436
462
|
*/
|
|
@@ -440,15 +466,17 @@ var _DeviceStreamLimitExceededException = class _DeviceStreamLimitExceededExcept
|
|
|
440
466
|
$fault: "client",
|
|
441
467
|
...opts
|
|
442
468
|
});
|
|
443
|
-
this.name = "DeviceStreamLimitExceededException";
|
|
444
|
-
this.$fault = "client";
|
|
445
469
|
Object.setPrototypeOf(this, _DeviceStreamLimitExceededException.prototype);
|
|
446
470
|
this.Message = opts.Message;
|
|
447
471
|
}
|
|
448
472
|
};
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
473
|
+
var InvalidDeviceException = class _InvalidDeviceException extends KinesisVideoServiceException {
|
|
474
|
+
static {
|
|
475
|
+
__name(this, "InvalidDeviceException");
|
|
476
|
+
}
|
|
477
|
+
name = "InvalidDeviceException";
|
|
478
|
+
$fault = "client";
|
|
479
|
+
Message;
|
|
452
480
|
/**
|
|
453
481
|
* @internal
|
|
454
482
|
*/
|
|
@@ -458,15 +486,17 @@ var _InvalidDeviceException = class _InvalidDeviceException extends KinesisVideo
|
|
|
458
486
|
$fault: "client",
|
|
459
487
|
...opts
|
|
460
488
|
});
|
|
461
|
-
this.name = "InvalidDeviceException";
|
|
462
|
-
this.$fault = "client";
|
|
463
489
|
Object.setPrototypeOf(this, _InvalidDeviceException.prototype);
|
|
464
490
|
this.Message = opts.Message;
|
|
465
491
|
}
|
|
466
492
|
};
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
493
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends KinesisVideoServiceException {
|
|
494
|
+
static {
|
|
495
|
+
__name(this, "ResourceNotFoundException");
|
|
496
|
+
}
|
|
497
|
+
name = "ResourceNotFoundException";
|
|
498
|
+
$fault = "client";
|
|
499
|
+
Message;
|
|
470
500
|
/**
|
|
471
501
|
* @internal
|
|
472
502
|
*/
|
|
@@ -476,15 +506,17 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Kinesi
|
|
|
476
506
|
$fault: "client",
|
|
477
507
|
...opts
|
|
478
508
|
});
|
|
479
|
-
this.name = "ResourceNotFoundException";
|
|
480
|
-
this.$fault = "client";
|
|
481
509
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
482
510
|
this.Message = opts.Message;
|
|
483
511
|
}
|
|
484
512
|
};
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
513
|
+
var StreamEdgeConfigurationNotFoundException = class _StreamEdgeConfigurationNotFoundException extends KinesisVideoServiceException {
|
|
514
|
+
static {
|
|
515
|
+
__name(this, "StreamEdgeConfigurationNotFoundException");
|
|
516
|
+
}
|
|
517
|
+
name = "StreamEdgeConfigurationNotFoundException";
|
|
518
|
+
$fault = "client";
|
|
519
|
+
Message;
|
|
488
520
|
/**
|
|
489
521
|
* @internal
|
|
490
522
|
*/
|
|
@@ -494,15 +526,17 @@ var _StreamEdgeConfigurationNotFoundException = class _StreamEdgeConfigurationNo
|
|
|
494
526
|
$fault: "client",
|
|
495
527
|
...opts
|
|
496
528
|
});
|
|
497
|
-
this.name = "StreamEdgeConfigurationNotFoundException";
|
|
498
|
-
this.$fault = "client";
|
|
499
529
|
Object.setPrototypeOf(this, _StreamEdgeConfigurationNotFoundException.prototype);
|
|
500
530
|
this.Message = opts.Message;
|
|
501
531
|
}
|
|
502
532
|
};
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
533
|
+
var VersionMismatchException = class _VersionMismatchException extends KinesisVideoServiceException {
|
|
534
|
+
static {
|
|
535
|
+
__name(this, "VersionMismatchException");
|
|
536
|
+
}
|
|
537
|
+
name = "VersionMismatchException";
|
|
538
|
+
$fault = "client";
|
|
539
|
+
Message;
|
|
506
540
|
/**
|
|
507
541
|
* @internal
|
|
508
542
|
*/
|
|
@@ -512,15 +546,17 @@ var _VersionMismatchException = class _VersionMismatchException extends KinesisV
|
|
|
512
546
|
$fault: "client",
|
|
513
547
|
...opts
|
|
514
548
|
});
|
|
515
|
-
this.name = "VersionMismatchException";
|
|
516
|
-
this.$fault = "client";
|
|
517
549
|
Object.setPrototypeOf(this, _VersionMismatchException.prototype);
|
|
518
550
|
this.Message = opts.Message;
|
|
519
551
|
}
|
|
520
552
|
};
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
553
|
+
var NotAuthorizedException = class _NotAuthorizedException extends KinesisVideoServiceException {
|
|
554
|
+
static {
|
|
555
|
+
__name(this, "NotAuthorizedException");
|
|
556
|
+
}
|
|
557
|
+
name = "NotAuthorizedException";
|
|
558
|
+
$fault = "client";
|
|
559
|
+
Message;
|
|
524
560
|
/**
|
|
525
561
|
* @internal
|
|
526
562
|
*/
|
|
@@ -530,14 +566,10 @@ var _NotAuthorizedException = class _NotAuthorizedException extends KinesisVideo
|
|
|
530
566
|
$fault: "client",
|
|
531
567
|
...opts
|
|
532
568
|
});
|
|
533
|
-
this.name = "NotAuthorizedException";
|
|
534
|
-
this.$fault = "client";
|
|
535
569
|
Object.setPrototypeOf(this, _NotAuthorizedException.prototype);
|
|
536
570
|
this.Message = opts.Message;
|
|
537
571
|
}
|
|
538
572
|
};
|
|
539
|
-
__name(_NotAuthorizedException, "NotAuthorizedException");
|
|
540
|
-
var NotAuthorizedException = _NotAuthorizedException;
|
|
541
573
|
var StrategyOnFullSize = {
|
|
542
574
|
DELETE_OLDEST_MEDIA: "DELETE_OLDEST_MEDIA",
|
|
543
575
|
DENY_NEW_MEDIA: "DENY_NEW_MEDIA"
|
|
@@ -580,7 +612,13 @@ var MediaStorageConfigurationStatus = {
|
|
|
580
612
|
DISABLED: "DISABLED",
|
|
581
613
|
ENABLED: "ENABLED"
|
|
582
614
|
};
|
|
583
|
-
var
|
|
615
|
+
var InvalidResourceFormatException = class _InvalidResourceFormatException extends KinesisVideoServiceException {
|
|
616
|
+
static {
|
|
617
|
+
__name(this, "InvalidResourceFormatException");
|
|
618
|
+
}
|
|
619
|
+
name = "InvalidResourceFormatException";
|
|
620
|
+
$fault = "client";
|
|
621
|
+
Message;
|
|
584
622
|
/**
|
|
585
623
|
* @internal
|
|
586
624
|
*/
|
|
@@ -590,15 +628,17 @@ var _InvalidResourceFormatException = class _InvalidResourceFormatException exte
|
|
|
590
628
|
$fault: "client",
|
|
591
629
|
...opts
|
|
592
630
|
});
|
|
593
|
-
this.name = "InvalidResourceFormatException";
|
|
594
|
-
this.$fault = "client";
|
|
595
631
|
Object.setPrototypeOf(this, _InvalidResourceFormatException.prototype);
|
|
596
632
|
this.Message = opts.Message;
|
|
597
633
|
}
|
|
598
634
|
};
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
635
|
+
var NoDataRetentionException = class _NoDataRetentionException extends KinesisVideoServiceException {
|
|
636
|
+
static {
|
|
637
|
+
__name(this, "NoDataRetentionException");
|
|
638
|
+
}
|
|
639
|
+
name = "NoDataRetentionException";
|
|
640
|
+
$fault = "client";
|
|
641
|
+
Message;
|
|
602
642
|
/**
|
|
603
643
|
* @internal
|
|
604
644
|
*/
|
|
@@ -608,14 +648,10 @@ var _NoDataRetentionException = class _NoDataRetentionException extends KinesisV
|
|
|
608
648
|
$fault: "client",
|
|
609
649
|
...opts
|
|
610
650
|
});
|
|
611
|
-
this.name = "NoDataRetentionException";
|
|
612
|
-
this.$fault = "client";
|
|
613
651
|
Object.setPrototypeOf(this, _NoDataRetentionException.prototype);
|
|
614
652
|
this.Message = opts.Message;
|
|
615
653
|
}
|
|
616
654
|
};
|
|
617
|
-
__name(_NoDataRetentionException, "NoDataRetentionException");
|
|
618
|
-
var NoDataRetentionException = _NoDataRetentionException;
|
|
619
655
|
var UpdateDataRetentionOperation = {
|
|
620
656
|
DECREASE_DATA_RETENTION: "DECREASE_DATA_RETENTION",
|
|
621
657
|
INCREASE_DATA_RETENTION: "INCREASE_DATA_RETENTION"
|
|
@@ -1888,421 +1924,451 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
|
1888
1924
|
}), "deserializeMetadata");
|
|
1889
1925
|
|
|
1890
1926
|
// src/commands/CreateSignalingChannelCommand.ts
|
|
1891
|
-
var
|
|
1927
|
+
var CreateSignalingChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1892
1928
|
return [
|
|
1893
1929
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1894
1930
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1895
1931
|
];
|
|
1896
1932
|
}).s("KinesisVideo_20170930", "CreateSignalingChannel", {}).n("KinesisVideoClient", "CreateSignalingChannelCommand").f(void 0, void 0).ser(se_CreateSignalingChannelCommand).de(de_CreateSignalingChannelCommand).build() {
|
|
1933
|
+
static {
|
|
1934
|
+
__name(this, "CreateSignalingChannelCommand");
|
|
1935
|
+
}
|
|
1897
1936
|
};
|
|
1898
|
-
__name(_CreateSignalingChannelCommand, "CreateSignalingChannelCommand");
|
|
1899
|
-
var CreateSignalingChannelCommand = _CreateSignalingChannelCommand;
|
|
1900
1937
|
|
|
1901
1938
|
// src/commands/CreateStreamCommand.ts
|
|
1902
1939
|
|
|
1903
1940
|
|
|
1904
1941
|
|
|
1905
|
-
var
|
|
1942
|
+
var CreateStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1906
1943
|
return [
|
|
1907
1944
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1908
1945
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1909
1946
|
];
|
|
1910
1947
|
}).s("KinesisVideo_20170930", "CreateStream", {}).n("KinesisVideoClient", "CreateStreamCommand").f(void 0, void 0).ser(se_CreateStreamCommand).de(de_CreateStreamCommand).build() {
|
|
1948
|
+
static {
|
|
1949
|
+
__name(this, "CreateStreamCommand");
|
|
1950
|
+
}
|
|
1911
1951
|
};
|
|
1912
|
-
__name(_CreateStreamCommand, "CreateStreamCommand");
|
|
1913
|
-
var CreateStreamCommand = _CreateStreamCommand;
|
|
1914
1952
|
|
|
1915
1953
|
// src/commands/DeleteEdgeConfigurationCommand.ts
|
|
1916
1954
|
|
|
1917
1955
|
|
|
1918
1956
|
|
|
1919
|
-
var
|
|
1957
|
+
var DeleteEdgeConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1920
1958
|
return [
|
|
1921
1959
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1922
1960
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1923
1961
|
];
|
|
1924
1962
|
}).s("KinesisVideo_20170930", "DeleteEdgeConfiguration", {}).n("KinesisVideoClient", "DeleteEdgeConfigurationCommand").f(void 0, void 0).ser(se_DeleteEdgeConfigurationCommand).de(de_DeleteEdgeConfigurationCommand).build() {
|
|
1963
|
+
static {
|
|
1964
|
+
__name(this, "DeleteEdgeConfigurationCommand");
|
|
1965
|
+
}
|
|
1925
1966
|
};
|
|
1926
|
-
__name(_DeleteEdgeConfigurationCommand, "DeleteEdgeConfigurationCommand");
|
|
1927
|
-
var DeleteEdgeConfigurationCommand = _DeleteEdgeConfigurationCommand;
|
|
1928
1967
|
|
|
1929
1968
|
// src/commands/DeleteSignalingChannelCommand.ts
|
|
1930
1969
|
|
|
1931
1970
|
|
|
1932
1971
|
|
|
1933
|
-
var
|
|
1972
|
+
var DeleteSignalingChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1934
1973
|
return [
|
|
1935
1974
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1936
1975
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1937
1976
|
];
|
|
1938
1977
|
}).s("KinesisVideo_20170930", "DeleteSignalingChannel", {}).n("KinesisVideoClient", "DeleteSignalingChannelCommand").f(void 0, void 0).ser(se_DeleteSignalingChannelCommand).de(de_DeleteSignalingChannelCommand).build() {
|
|
1978
|
+
static {
|
|
1979
|
+
__name(this, "DeleteSignalingChannelCommand");
|
|
1980
|
+
}
|
|
1939
1981
|
};
|
|
1940
|
-
__name(_DeleteSignalingChannelCommand, "DeleteSignalingChannelCommand");
|
|
1941
|
-
var DeleteSignalingChannelCommand = _DeleteSignalingChannelCommand;
|
|
1942
1982
|
|
|
1943
1983
|
// src/commands/DeleteStreamCommand.ts
|
|
1944
1984
|
|
|
1945
1985
|
|
|
1946
1986
|
|
|
1947
|
-
var
|
|
1987
|
+
var DeleteStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1948
1988
|
return [
|
|
1949
1989
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1950
1990
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1951
1991
|
];
|
|
1952
1992
|
}).s("KinesisVideo_20170930", "DeleteStream", {}).n("KinesisVideoClient", "DeleteStreamCommand").f(void 0, void 0).ser(se_DeleteStreamCommand).de(de_DeleteStreamCommand).build() {
|
|
1993
|
+
static {
|
|
1994
|
+
__name(this, "DeleteStreamCommand");
|
|
1995
|
+
}
|
|
1953
1996
|
};
|
|
1954
|
-
__name(_DeleteStreamCommand, "DeleteStreamCommand");
|
|
1955
|
-
var DeleteStreamCommand = _DeleteStreamCommand;
|
|
1956
1997
|
|
|
1957
1998
|
// src/commands/DescribeEdgeConfigurationCommand.ts
|
|
1958
1999
|
|
|
1959
2000
|
|
|
1960
2001
|
|
|
1961
|
-
var
|
|
2002
|
+
var DescribeEdgeConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1962
2003
|
return [
|
|
1963
2004
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1964
2005
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1965
2006
|
];
|
|
1966
2007
|
}).s("KinesisVideo_20170930", "DescribeEdgeConfiguration", {}).n("KinesisVideoClient", "DescribeEdgeConfigurationCommand").f(void 0, DescribeEdgeConfigurationOutputFilterSensitiveLog).ser(se_DescribeEdgeConfigurationCommand).de(de_DescribeEdgeConfigurationCommand).build() {
|
|
2008
|
+
static {
|
|
2009
|
+
__name(this, "DescribeEdgeConfigurationCommand");
|
|
2010
|
+
}
|
|
1967
2011
|
};
|
|
1968
|
-
__name(_DescribeEdgeConfigurationCommand, "DescribeEdgeConfigurationCommand");
|
|
1969
|
-
var DescribeEdgeConfigurationCommand = _DescribeEdgeConfigurationCommand;
|
|
1970
2012
|
|
|
1971
2013
|
// src/commands/DescribeImageGenerationConfigurationCommand.ts
|
|
1972
2014
|
|
|
1973
2015
|
|
|
1974
2016
|
|
|
1975
|
-
var
|
|
2017
|
+
var DescribeImageGenerationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1976
2018
|
return [
|
|
1977
2019
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1978
2020
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1979
2021
|
];
|
|
1980
2022
|
}).s("KinesisVideo_20170930", "DescribeImageGenerationConfiguration", {}).n("KinesisVideoClient", "DescribeImageGenerationConfigurationCommand").f(void 0, void 0).ser(se_DescribeImageGenerationConfigurationCommand).de(de_DescribeImageGenerationConfigurationCommand).build() {
|
|
2023
|
+
static {
|
|
2024
|
+
__name(this, "DescribeImageGenerationConfigurationCommand");
|
|
2025
|
+
}
|
|
1981
2026
|
};
|
|
1982
|
-
__name(_DescribeImageGenerationConfigurationCommand, "DescribeImageGenerationConfigurationCommand");
|
|
1983
|
-
var DescribeImageGenerationConfigurationCommand = _DescribeImageGenerationConfigurationCommand;
|
|
1984
2027
|
|
|
1985
2028
|
// src/commands/DescribeMappedResourceConfigurationCommand.ts
|
|
1986
2029
|
|
|
1987
2030
|
|
|
1988
2031
|
|
|
1989
|
-
var
|
|
2032
|
+
var DescribeMappedResourceConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1990
2033
|
return [
|
|
1991
2034
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1992
2035
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1993
2036
|
];
|
|
1994
2037
|
}).s("KinesisVideo_20170930", "DescribeMappedResourceConfiguration", {}).n("KinesisVideoClient", "DescribeMappedResourceConfigurationCommand").f(void 0, void 0).ser(se_DescribeMappedResourceConfigurationCommand).de(de_DescribeMappedResourceConfigurationCommand).build() {
|
|
2038
|
+
static {
|
|
2039
|
+
__name(this, "DescribeMappedResourceConfigurationCommand");
|
|
2040
|
+
}
|
|
1995
2041
|
};
|
|
1996
|
-
__name(_DescribeMappedResourceConfigurationCommand, "DescribeMappedResourceConfigurationCommand");
|
|
1997
|
-
var DescribeMappedResourceConfigurationCommand = _DescribeMappedResourceConfigurationCommand;
|
|
1998
2042
|
|
|
1999
2043
|
// src/commands/DescribeMediaStorageConfigurationCommand.ts
|
|
2000
2044
|
|
|
2001
2045
|
|
|
2002
2046
|
|
|
2003
|
-
var
|
|
2047
|
+
var DescribeMediaStorageConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2004
2048
|
return [
|
|
2005
2049
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2006
2050
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2007
2051
|
];
|
|
2008
2052
|
}).s("KinesisVideo_20170930", "DescribeMediaStorageConfiguration", {}).n("KinesisVideoClient", "DescribeMediaStorageConfigurationCommand").f(void 0, void 0).ser(se_DescribeMediaStorageConfigurationCommand).de(de_DescribeMediaStorageConfigurationCommand).build() {
|
|
2053
|
+
static {
|
|
2054
|
+
__name(this, "DescribeMediaStorageConfigurationCommand");
|
|
2055
|
+
}
|
|
2009
2056
|
};
|
|
2010
|
-
__name(_DescribeMediaStorageConfigurationCommand, "DescribeMediaStorageConfigurationCommand");
|
|
2011
|
-
var DescribeMediaStorageConfigurationCommand = _DescribeMediaStorageConfigurationCommand;
|
|
2012
2057
|
|
|
2013
2058
|
// src/commands/DescribeNotificationConfigurationCommand.ts
|
|
2014
2059
|
|
|
2015
2060
|
|
|
2016
2061
|
|
|
2017
|
-
var
|
|
2062
|
+
var DescribeNotificationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2018
2063
|
return [
|
|
2019
2064
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2020
2065
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2021
2066
|
];
|
|
2022
2067
|
}).s("KinesisVideo_20170930", "DescribeNotificationConfiguration", {}).n("KinesisVideoClient", "DescribeNotificationConfigurationCommand").f(void 0, void 0).ser(se_DescribeNotificationConfigurationCommand).de(de_DescribeNotificationConfigurationCommand).build() {
|
|
2068
|
+
static {
|
|
2069
|
+
__name(this, "DescribeNotificationConfigurationCommand");
|
|
2070
|
+
}
|
|
2023
2071
|
};
|
|
2024
|
-
__name(_DescribeNotificationConfigurationCommand, "DescribeNotificationConfigurationCommand");
|
|
2025
|
-
var DescribeNotificationConfigurationCommand = _DescribeNotificationConfigurationCommand;
|
|
2026
2072
|
|
|
2027
2073
|
// src/commands/DescribeSignalingChannelCommand.ts
|
|
2028
2074
|
|
|
2029
2075
|
|
|
2030
2076
|
|
|
2031
|
-
var
|
|
2077
|
+
var DescribeSignalingChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2032
2078
|
return [
|
|
2033
2079
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2034
2080
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2035
2081
|
];
|
|
2036
2082
|
}).s("KinesisVideo_20170930", "DescribeSignalingChannel", {}).n("KinesisVideoClient", "DescribeSignalingChannelCommand").f(void 0, void 0).ser(se_DescribeSignalingChannelCommand).de(de_DescribeSignalingChannelCommand).build() {
|
|
2083
|
+
static {
|
|
2084
|
+
__name(this, "DescribeSignalingChannelCommand");
|
|
2085
|
+
}
|
|
2037
2086
|
};
|
|
2038
|
-
__name(_DescribeSignalingChannelCommand, "DescribeSignalingChannelCommand");
|
|
2039
|
-
var DescribeSignalingChannelCommand = _DescribeSignalingChannelCommand;
|
|
2040
2087
|
|
|
2041
2088
|
// src/commands/DescribeStreamCommand.ts
|
|
2042
2089
|
|
|
2043
2090
|
|
|
2044
2091
|
|
|
2045
|
-
var
|
|
2092
|
+
var DescribeStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2046
2093
|
return [
|
|
2047
2094
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2048
2095
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2049
2096
|
];
|
|
2050
2097
|
}).s("KinesisVideo_20170930", "DescribeStream", {}).n("KinesisVideoClient", "DescribeStreamCommand").f(void 0, void 0).ser(se_DescribeStreamCommand).de(de_DescribeStreamCommand).build() {
|
|
2098
|
+
static {
|
|
2099
|
+
__name(this, "DescribeStreamCommand");
|
|
2100
|
+
}
|
|
2051
2101
|
};
|
|
2052
|
-
__name(_DescribeStreamCommand, "DescribeStreamCommand");
|
|
2053
|
-
var DescribeStreamCommand = _DescribeStreamCommand;
|
|
2054
2102
|
|
|
2055
2103
|
// src/commands/GetDataEndpointCommand.ts
|
|
2056
2104
|
|
|
2057
2105
|
|
|
2058
2106
|
|
|
2059
|
-
var
|
|
2107
|
+
var GetDataEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2060
2108
|
return [
|
|
2061
2109
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2062
2110
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2063
2111
|
];
|
|
2064
2112
|
}).s("KinesisVideo_20170930", "GetDataEndpoint", {}).n("KinesisVideoClient", "GetDataEndpointCommand").f(void 0, void 0).ser(se_GetDataEndpointCommand).de(de_GetDataEndpointCommand).build() {
|
|
2113
|
+
static {
|
|
2114
|
+
__name(this, "GetDataEndpointCommand");
|
|
2115
|
+
}
|
|
2065
2116
|
};
|
|
2066
|
-
__name(_GetDataEndpointCommand, "GetDataEndpointCommand");
|
|
2067
|
-
var GetDataEndpointCommand = _GetDataEndpointCommand;
|
|
2068
2117
|
|
|
2069
2118
|
// src/commands/GetSignalingChannelEndpointCommand.ts
|
|
2070
2119
|
|
|
2071
2120
|
|
|
2072
2121
|
|
|
2073
|
-
var
|
|
2122
|
+
var GetSignalingChannelEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2074
2123
|
return [
|
|
2075
2124
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2076
2125
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2077
2126
|
];
|
|
2078
2127
|
}).s("KinesisVideo_20170930", "GetSignalingChannelEndpoint", {}).n("KinesisVideoClient", "GetSignalingChannelEndpointCommand").f(void 0, void 0).ser(se_GetSignalingChannelEndpointCommand).de(de_GetSignalingChannelEndpointCommand).build() {
|
|
2128
|
+
static {
|
|
2129
|
+
__name(this, "GetSignalingChannelEndpointCommand");
|
|
2130
|
+
}
|
|
2079
2131
|
};
|
|
2080
|
-
__name(_GetSignalingChannelEndpointCommand, "GetSignalingChannelEndpointCommand");
|
|
2081
|
-
var GetSignalingChannelEndpointCommand = _GetSignalingChannelEndpointCommand;
|
|
2082
2132
|
|
|
2083
2133
|
// src/commands/ListEdgeAgentConfigurationsCommand.ts
|
|
2084
2134
|
|
|
2085
2135
|
|
|
2086
2136
|
|
|
2087
|
-
var
|
|
2137
|
+
var ListEdgeAgentConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2088
2138
|
return [
|
|
2089
2139
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2090
2140
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2091
2141
|
];
|
|
2092
2142
|
}).s("KinesisVideo_20170930", "ListEdgeAgentConfigurations", {}).n("KinesisVideoClient", "ListEdgeAgentConfigurationsCommand").f(void 0, ListEdgeAgentConfigurationsOutputFilterSensitiveLog).ser(se_ListEdgeAgentConfigurationsCommand).de(de_ListEdgeAgentConfigurationsCommand).build() {
|
|
2143
|
+
static {
|
|
2144
|
+
__name(this, "ListEdgeAgentConfigurationsCommand");
|
|
2145
|
+
}
|
|
2093
2146
|
};
|
|
2094
|
-
__name(_ListEdgeAgentConfigurationsCommand, "ListEdgeAgentConfigurationsCommand");
|
|
2095
|
-
var ListEdgeAgentConfigurationsCommand = _ListEdgeAgentConfigurationsCommand;
|
|
2096
2147
|
|
|
2097
2148
|
// src/commands/ListSignalingChannelsCommand.ts
|
|
2098
2149
|
|
|
2099
2150
|
|
|
2100
2151
|
|
|
2101
|
-
var
|
|
2152
|
+
var ListSignalingChannelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2102
2153
|
return [
|
|
2103
2154
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2104
2155
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2105
2156
|
];
|
|
2106
2157
|
}).s("KinesisVideo_20170930", "ListSignalingChannels", {}).n("KinesisVideoClient", "ListSignalingChannelsCommand").f(void 0, void 0).ser(se_ListSignalingChannelsCommand).de(de_ListSignalingChannelsCommand).build() {
|
|
2158
|
+
static {
|
|
2159
|
+
__name(this, "ListSignalingChannelsCommand");
|
|
2160
|
+
}
|
|
2107
2161
|
};
|
|
2108
|
-
__name(_ListSignalingChannelsCommand, "ListSignalingChannelsCommand");
|
|
2109
|
-
var ListSignalingChannelsCommand = _ListSignalingChannelsCommand;
|
|
2110
2162
|
|
|
2111
2163
|
// src/commands/ListStreamsCommand.ts
|
|
2112
2164
|
|
|
2113
2165
|
|
|
2114
2166
|
|
|
2115
|
-
var
|
|
2167
|
+
var ListStreamsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2116
2168
|
return [
|
|
2117
2169
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2118
2170
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2119
2171
|
];
|
|
2120
2172
|
}).s("KinesisVideo_20170930", "ListStreams", {}).n("KinesisVideoClient", "ListStreamsCommand").f(void 0, void 0).ser(se_ListStreamsCommand).de(de_ListStreamsCommand).build() {
|
|
2173
|
+
static {
|
|
2174
|
+
__name(this, "ListStreamsCommand");
|
|
2175
|
+
}
|
|
2121
2176
|
};
|
|
2122
|
-
__name(_ListStreamsCommand, "ListStreamsCommand");
|
|
2123
|
-
var ListStreamsCommand = _ListStreamsCommand;
|
|
2124
2177
|
|
|
2125
2178
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2126
2179
|
|
|
2127
2180
|
|
|
2128
2181
|
|
|
2129
|
-
var
|
|
2182
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2130
2183
|
return [
|
|
2131
2184
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2132
2185
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2133
2186
|
];
|
|
2134
2187
|
}).s("KinesisVideo_20170930", "ListTagsForResource", {}).n("KinesisVideoClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2188
|
+
static {
|
|
2189
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2190
|
+
}
|
|
2135
2191
|
};
|
|
2136
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2137
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2138
2192
|
|
|
2139
2193
|
// src/commands/ListTagsForStreamCommand.ts
|
|
2140
2194
|
|
|
2141
2195
|
|
|
2142
2196
|
|
|
2143
|
-
var
|
|
2197
|
+
var ListTagsForStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2144
2198
|
return [
|
|
2145
2199
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2146
2200
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2147
2201
|
];
|
|
2148
2202
|
}).s("KinesisVideo_20170930", "ListTagsForStream", {}).n("KinesisVideoClient", "ListTagsForStreamCommand").f(void 0, void 0).ser(se_ListTagsForStreamCommand).de(de_ListTagsForStreamCommand).build() {
|
|
2203
|
+
static {
|
|
2204
|
+
__name(this, "ListTagsForStreamCommand");
|
|
2205
|
+
}
|
|
2149
2206
|
};
|
|
2150
|
-
__name(_ListTagsForStreamCommand, "ListTagsForStreamCommand");
|
|
2151
|
-
var ListTagsForStreamCommand = _ListTagsForStreamCommand;
|
|
2152
2207
|
|
|
2153
2208
|
// src/commands/StartEdgeConfigurationUpdateCommand.ts
|
|
2154
2209
|
|
|
2155
2210
|
|
|
2156
2211
|
|
|
2157
|
-
var
|
|
2212
|
+
var StartEdgeConfigurationUpdateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2158
2213
|
return [
|
|
2159
2214
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2160
2215
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2161
2216
|
];
|
|
2162
2217
|
}).s("KinesisVideo_20170930", "StartEdgeConfigurationUpdate", {}).n("KinesisVideoClient", "StartEdgeConfigurationUpdateCommand").f(StartEdgeConfigurationUpdateInputFilterSensitiveLog, StartEdgeConfigurationUpdateOutputFilterSensitiveLog).ser(se_StartEdgeConfigurationUpdateCommand).de(de_StartEdgeConfigurationUpdateCommand).build() {
|
|
2218
|
+
static {
|
|
2219
|
+
__name(this, "StartEdgeConfigurationUpdateCommand");
|
|
2220
|
+
}
|
|
2163
2221
|
};
|
|
2164
|
-
__name(_StartEdgeConfigurationUpdateCommand, "StartEdgeConfigurationUpdateCommand");
|
|
2165
|
-
var StartEdgeConfigurationUpdateCommand = _StartEdgeConfigurationUpdateCommand;
|
|
2166
2222
|
|
|
2167
2223
|
// src/commands/TagResourceCommand.ts
|
|
2168
2224
|
|
|
2169
2225
|
|
|
2170
2226
|
|
|
2171
|
-
var
|
|
2227
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2172
2228
|
return [
|
|
2173
2229
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2174
2230
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2175
2231
|
];
|
|
2176
2232
|
}).s("KinesisVideo_20170930", "TagResource", {}).n("KinesisVideoClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2233
|
+
static {
|
|
2234
|
+
__name(this, "TagResourceCommand");
|
|
2235
|
+
}
|
|
2177
2236
|
};
|
|
2178
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2179
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2180
2237
|
|
|
2181
2238
|
// src/commands/TagStreamCommand.ts
|
|
2182
2239
|
|
|
2183
2240
|
|
|
2184
2241
|
|
|
2185
|
-
var
|
|
2242
|
+
var TagStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2186
2243
|
return [
|
|
2187
2244
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2188
2245
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2189
2246
|
];
|
|
2190
2247
|
}).s("KinesisVideo_20170930", "TagStream", {}).n("KinesisVideoClient", "TagStreamCommand").f(void 0, void 0).ser(se_TagStreamCommand).de(de_TagStreamCommand).build() {
|
|
2248
|
+
static {
|
|
2249
|
+
__name(this, "TagStreamCommand");
|
|
2250
|
+
}
|
|
2191
2251
|
};
|
|
2192
|
-
__name(_TagStreamCommand, "TagStreamCommand");
|
|
2193
|
-
var TagStreamCommand = _TagStreamCommand;
|
|
2194
2252
|
|
|
2195
2253
|
// src/commands/UntagResourceCommand.ts
|
|
2196
2254
|
|
|
2197
2255
|
|
|
2198
2256
|
|
|
2199
|
-
var
|
|
2257
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2200
2258
|
return [
|
|
2201
2259
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2202
2260
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2203
2261
|
];
|
|
2204
2262
|
}).s("KinesisVideo_20170930", "UntagResource", {}).n("KinesisVideoClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2263
|
+
static {
|
|
2264
|
+
__name(this, "UntagResourceCommand");
|
|
2265
|
+
}
|
|
2205
2266
|
};
|
|
2206
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2207
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2208
2267
|
|
|
2209
2268
|
// src/commands/UntagStreamCommand.ts
|
|
2210
2269
|
|
|
2211
2270
|
|
|
2212
2271
|
|
|
2213
|
-
var
|
|
2272
|
+
var UntagStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2214
2273
|
return [
|
|
2215
2274
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2216
2275
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2217
2276
|
];
|
|
2218
2277
|
}).s("KinesisVideo_20170930", "UntagStream", {}).n("KinesisVideoClient", "UntagStreamCommand").f(void 0, void 0).ser(se_UntagStreamCommand).de(de_UntagStreamCommand).build() {
|
|
2278
|
+
static {
|
|
2279
|
+
__name(this, "UntagStreamCommand");
|
|
2280
|
+
}
|
|
2219
2281
|
};
|
|
2220
|
-
__name(_UntagStreamCommand, "UntagStreamCommand");
|
|
2221
|
-
var UntagStreamCommand = _UntagStreamCommand;
|
|
2222
2282
|
|
|
2223
2283
|
// src/commands/UpdateDataRetentionCommand.ts
|
|
2224
2284
|
|
|
2225
2285
|
|
|
2226
2286
|
|
|
2227
|
-
var
|
|
2287
|
+
var UpdateDataRetentionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2228
2288
|
return [
|
|
2229
2289
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2230
2290
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2231
2291
|
];
|
|
2232
2292
|
}).s("KinesisVideo_20170930", "UpdateDataRetention", {}).n("KinesisVideoClient", "UpdateDataRetentionCommand").f(void 0, void 0).ser(se_UpdateDataRetentionCommand).de(de_UpdateDataRetentionCommand).build() {
|
|
2293
|
+
static {
|
|
2294
|
+
__name(this, "UpdateDataRetentionCommand");
|
|
2295
|
+
}
|
|
2233
2296
|
};
|
|
2234
|
-
__name(_UpdateDataRetentionCommand, "UpdateDataRetentionCommand");
|
|
2235
|
-
var UpdateDataRetentionCommand = _UpdateDataRetentionCommand;
|
|
2236
2297
|
|
|
2237
2298
|
// src/commands/UpdateImageGenerationConfigurationCommand.ts
|
|
2238
2299
|
|
|
2239
2300
|
|
|
2240
2301
|
|
|
2241
|
-
var
|
|
2302
|
+
var UpdateImageGenerationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2242
2303
|
return [
|
|
2243
2304
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2244
2305
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2245
2306
|
];
|
|
2246
2307
|
}).s("KinesisVideo_20170930", "UpdateImageGenerationConfiguration", {}).n("KinesisVideoClient", "UpdateImageGenerationConfigurationCommand").f(void 0, void 0).ser(se_UpdateImageGenerationConfigurationCommand).de(de_UpdateImageGenerationConfigurationCommand).build() {
|
|
2308
|
+
static {
|
|
2309
|
+
__name(this, "UpdateImageGenerationConfigurationCommand");
|
|
2310
|
+
}
|
|
2247
2311
|
};
|
|
2248
|
-
__name(_UpdateImageGenerationConfigurationCommand, "UpdateImageGenerationConfigurationCommand");
|
|
2249
|
-
var UpdateImageGenerationConfigurationCommand = _UpdateImageGenerationConfigurationCommand;
|
|
2250
2312
|
|
|
2251
2313
|
// src/commands/UpdateMediaStorageConfigurationCommand.ts
|
|
2252
2314
|
|
|
2253
2315
|
|
|
2254
2316
|
|
|
2255
|
-
var
|
|
2317
|
+
var UpdateMediaStorageConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2256
2318
|
return [
|
|
2257
2319
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2258
2320
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2259
2321
|
];
|
|
2260
2322
|
}).s("KinesisVideo_20170930", "UpdateMediaStorageConfiguration", {}).n("KinesisVideoClient", "UpdateMediaStorageConfigurationCommand").f(void 0, void 0).ser(se_UpdateMediaStorageConfigurationCommand).de(de_UpdateMediaStorageConfigurationCommand).build() {
|
|
2323
|
+
static {
|
|
2324
|
+
__name(this, "UpdateMediaStorageConfigurationCommand");
|
|
2325
|
+
}
|
|
2261
2326
|
};
|
|
2262
|
-
__name(_UpdateMediaStorageConfigurationCommand, "UpdateMediaStorageConfigurationCommand");
|
|
2263
|
-
var UpdateMediaStorageConfigurationCommand = _UpdateMediaStorageConfigurationCommand;
|
|
2264
2327
|
|
|
2265
2328
|
// src/commands/UpdateNotificationConfigurationCommand.ts
|
|
2266
2329
|
|
|
2267
2330
|
|
|
2268
2331
|
|
|
2269
|
-
var
|
|
2332
|
+
var UpdateNotificationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2270
2333
|
return [
|
|
2271
2334
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2272
2335
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2273
2336
|
];
|
|
2274
2337
|
}).s("KinesisVideo_20170930", "UpdateNotificationConfiguration", {}).n("KinesisVideoClient", "UpdateNotificationConfigurationCommand").f(void 0, void 0).ser(se_UpdateNotificationConfigurationCommand).de(de_UpdateNotificationConfigurationCommand).build() {
|
|
2338
|
+
static {
|
|
2339
|
+
__name(this, "UpdateNotificationConfigurationCommand");
|
|
2340
|
+
}
|
|
2275
2341
|
};
|
|
2276
|
-
__name(_UpdateNotificationConfigurationCommand, "UpdateNotificationConfigurationCommand");
|
|
2277
|
-
var UpdateNotificationConfigurationCommand = _UpdateNotificationConfigurationCommand;
|
|
2278
2342
|
|
|
2279
2343
|
// src/commands/UpdateSignalingChannelCommand.ts
|
|
2280
2344
|
|
|
2281
2345
|
|
|
2282
2346
|
|
|
2283
|
-
var
|
|
2347
|
+
var UpdateSignalingChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2284
2348
|
return [
|
|
2285
2349
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2286
2350
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2287
2351
|
];
|
|
2288
2352
|
}).s("KinesisVideo_20170930", "UpdateSignalingChannel", {}).n("KinesisVideoClient", "UpdateSignalingChannelCommand").f(void 0, void 0).ser(se_UpdateSignalingChannelCommand).de(de_UpdateSignalingChannelCommand).build() {
|
|
2353
|
+
static {
|
|
2354
|
+
__name(this, "UpdateSignalingChannelCommand");
|
|
2355
|
+
}
|
|
2289
2356
|
};
|
|
2290
|
-
__name(_UpdateSignalingChannelCommand, "UpdateSignalingChannelCommand");
|
|
2291
|
-
var UpdateSignalingChannelCommand = _UpdateSignalingChannelCommand;
|
|
2292
2357
|
|
|
2293
2358
|
// src/commands/UpdateStreamCommand.ts
|
|
2294
2359
|
|
|
2295
2360
|
|
|
2296
2361
|
|
|
2297
|
-
var
|
|
2362
|
+
var UpdateStreamCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2298
2363
|
return [
|
|
2299
2364
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2300
2365
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2301
2366
|
];
|
|
2302
2367
|
}).s("KinesisVideo_20170930", "UpdateStream", {}).n("KinesisVideoClient", "UpdateStreamCommand").f(void 0, void 0).ser(se_UpdateStreamCommand).de(de_UpdateStreamCommand).build() {
|
|
2368
|
+
static {
|
|
2369
|
+
__name(this, "UpdateStreamCommand");
|
|
2370
|
+
}
|
|
2303
2371
|
};
|
|
2304
|
-
__name(_UpdateStreamCommand, "UpdateStreamCommand");
|
|
2305
|
-
var UpdateStreamCommand = _UpdateStreamCommand;
|
|
2306
2372
|
|
|
2307
2373
|
// src/KinesisVideo.ts
|
|
2308
2374
|
var commands = {
|
|
@@ -2337,10 +2403,11 @@ var commands = {
|
|
|
2337
2403
|
UpdateSignalingChannelCommand,
|
|
2338
2404
|
UpdateStreamCommand
|
|
2339
2405
|
};
|
|
2340
|
-
var
|
|
2406
|
+
var KinesisVideo = class extends KinesisVideoClient {
|
|
2407
|
+
static {
|
|
2408
|
+
__name(this, "KinesisVideo");
|
|
2409
|
+
}
|
|
2341
2410
|
};
|
|
2342
|
-
__name(_KinesisVideo, "KinesisVideo");
|
|
2343
|
-
var KinesisVideo = _KinesisVideo;
|
|
2344
2411
|
(0, import_smithy_client.createAggregatedClient)(commands, KinesisVideo);
|
|
2345
2412
|
|
|
2346
2413
|
// src/pagination/DescribeMappedResourceConfigurationPaginator.ts
|