@aws-sdk/client-kinesis-video 3.987.0 → 3.988.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 +51 -1278
- package/dist-cjs/models/KinesisVideoServiceException.js +12 -0
- package/dist-cjs/models/errors.js +229 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +891 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +84 -78
- package/dist-types/schemas/schemas_0.d.ts +20 -13
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -13
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultKinesisVideoHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2017-09-30",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.kinesisvideo",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
xmlNamespace: "https://kinesisvideo.amazonaws.com/doc/2017-09-30/",
|
|
30
32
|
version: "2017-09-30",
|
|
31
33
|
serviceTarget: "KinesisVideo_20170930",
|
|
@@ -213,25 +213,105 @@ const n0 = "com.amazonaws.kinesisvideo";
|
|
|
213
213
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
214
214
|
import { AccessDeniedException, AccountChannelLimitExceededException, AccountStreamLimitExceededException, ClientLimitExceededException, DeviceStreamLimitExceededException, InvalidArgumentException, InvalidDeviceException, InvalidResourceFormatException, NoDataRetentionException, NotAuthorizedException, ResourceInUseException, ResourceNotFoundException, StreamEdgeConfigurationNotFoundException, TagsPerResourceExceededLimitException, VersionMismatchException, } from "../models/errors";
|
|
215
215
|
import { KinesisVideoServiceException } from "../models/KinesisVideoServiceException";
|
|
216
|
-
|
|
216
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
217
|
+
export var KinesisVideoServiceException$ = [-3, _s, "KinesisVideoServiceException", 0, [], []];
|
|
218
|
+
_s_registry.registerError(KinesisVideoServiceException$, KinesisVideoServiceException);
|
|
219
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
217
220
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
218
221
|
{ [_e]: _c, [_hE]: 401 },
|
|
219
222
|
[_M],
|
|
220
223
|
[0]
|
|
221
224
|
];
|
|
222
|
-
|
|
225
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
223
226
|
export var AccountChannelLimitExceededException$ = [-3, n0, _ACLEE,
|
|
224
227
|
{ [_e]: _c, [_hE]: 400 },
|
|
225
228
|
[_M],
|
|
226
229
|
[0]
|
|
227
230
|
];
|
|
228
|
-
|
|
231
|
+
n0_registry.registerError(AccountChannelLimitExceededException$, AccountChannelLimitExceededException);
|
|
229
232
|
export var AccountStreamLimitExceededException$ = [-3, n0, _ASLEE,
|
|
230
233
|
{ [_e]: _c, [_hE]: 400 },
|
|
231
234
|
[_M],
|
|
232
235
|
[0]
|
|
233
236
|
];
|
|
234
|
-
|
|
237
|
+
n0_registry.registerError(AccountStreamLimitExceededException$, AccountStreamLimitExceededException);
|
|
238
|
+
export var ClientLimitExceededException$ = [-3, n0, _CLEE,
|
|
239
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
240
|
+
[_M],
|
|
241
|
+
[0]
|
|
242
|
+
];
|
|
243
|
+
n0_registry.registerError(ClientLimitExceededException$, ClientLimitExceededException);
|
|
244
|
+
export var DeviceStreamLimitExceededException$ = [-3, n0, _DSLEE,
|
|
245
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
246
|
+
[_M],
|
|
247
|
+
[0]
|
|
248
|
+
];
|
|
249
|
+
n0_registry.registerError(DeviceStreamLimitExceededException$, DeviceStreamLimitExceededException);
|
|
250
|
+
export var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
251
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
252
|
+
[_M],
|
|
253
|
+
[0]
|
|
254
|
+
];
|
|
255
|
+
n0_registry.registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
256
|
+
export var InvalidDeviceException$ = [-3, n0, _IDE,
|
|
257
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
258
|
+
[_M],
|
|
259
|
+
[0]
|
|
260
|
+
];
|
|
261
|
+
n0_registry.registerError(InvalidDeviceException$, InvalidDeviceException);
|
|
262
|
+
export var InvalidResourceFormatException$ = [-3, n0, _IRFE,
|
|
263
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
264
|
+
[_M],
|
|
265
|
+
[0]
|
|
266
|
+
];
|
|
267
|
+
n0_registry.registerError(InvalidResourceFormatException$, InvalidResourceFormatException);
|
|
268
|
+
export var NoDataRetentionException$ = [-3, n0, _NDRE,
|
|
269
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
270
|
+
[_M],
|
|
271
|
+
[0]
|
|
272
|
+
];
|
|
273
|
+
n0_registry.registerError(NoDataRetentionException$, NoDataRetentionException);
|
|
274
|
+
export var NotAuthorizedException$ = [-3, n0, _NAE,
|
|
275
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
276
|
+
[_M],
|
|
277
|
+
[0]
|
|
278
|
+
];
|
|
279
|
+
n0_registry.registerError(NotAuthorizedException$, NotAuthorizedException);
|
|
280
|
+
export var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
281
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
282
|
+
[_M],
|
|
283
|
+
[0]
|
|
284
|
+
];
|
|
285
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
286
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
287
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
288
|
+
[_M],
|
|
289
|
+
[0]
|
|
290
|
+
];
|
|
291
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
292
|
+
export var StreamEdgeConfigurationNotFoundException$ = [-3, n0, _SECNFE,
|
|
293
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
294
|
+
[_M],
|
|
295
|
+
[0]
|
|
296
|
+
];
|
|
297
|
+
n0_registry.registerError(StreamEdgeConfigurationNotFoundException$, StreamEdgeConfigurationNotFoundException);
|
|
298
|
+
export var TagsPerResourceExceededLimitException$ = [-3, n0, _TPRELE,
|
|
299
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
300
|
+
[_M],
|
|
301
|
+
[0]
|
|
302
|
+
];
|
|
303
|
+
n0_registry.registerError(TagsPerResourceExceededLimitException$, TagsPerResourceExceededLimitException);
|
|
304
|
+
export var VersionMismatchException$ = [-3, n0, _VME,
|
|
305
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
306
|
+
[_M],
|
|
307
|
+
[0]
|
|
308
|
+
];
|
|
309
|
+
n0_registry.registerError(VersionMismatchException$, VersionMismatchException);
|
|
310
|
+
export const errorTypeRegistries = [
|
|
311
|
+
_s_registry,
|
|
312
|
+
n0_registry,
|
|
313
|
+
];
|
|
314
|
+
var MediaUriSecretArn = [0, n0, _MUSA, 8, 0];
|
|
235
315
|
export var ChannelInfo$ = [3, n0, _CI,
|
|
236
316
|
0,
|
|
237
317
|
[_CN, _CARN, _CT, _CS, _CTr, _SMC, _V],
|
|
@@ -242,12 +322,6 @@ export var ChannelNameCondition$ = [3, n0, _CNC,
|
|
|
242
322
|
[_CO, _CV],
|
|
243
323
|
[0, 0]
|
|
244
324
|
];
|
|
245
|
-
export var ClientLimitExceededException$ = [-3, n0, _CLEE,
|
|
246
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
247
|
-
[_M],
|
|
248
|
-
[0]
|
|
249
|
-
];
|
|
250
|
-
TypeRegistry.for(n0).registerError(ClientLimitExceededException$, ClientLimitExceededException);
|
|
251
325
|
export var CreateSignalingChannelInput$ = [3, n0, _CSCI,
|
|
252
326
|
0,
|
|
253
327
|
[_CN, _CT, _SMC, _T],
|
|
@@ -383,12 +457,6 @@ export var DescribeStreamStorageConfigurationOutput$ = [3, n0, _DSSCO,
|
|
|
383
457
|
[_SN, _SARN, _SSC],
|
|
384
458
|
[0, 0, () => StreamStorageConfiguration$]
|
|
385
459
|
];
|
|
386
|
-
export var DeviceStreamLimitExceededException$ = [-3, n0, _DSLEE,
|
|
387
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
388
|
-
[_M],
|
|
389
|
-
[0]
|
|
390
|
-
];
|
|
391
|
-
TypeRegistry.for(n0).registerError(DeviceStreamLimitExceededException$, DeviceStreamLimitExceededException);
|
|
392
460
|
export var EdgeAgentStatus$ = [3, n0, _EAS,
|
|
393
461
|
0,
|
|
394
462
|
[_LRS, _LUS],
|
|
@@ -429,24 +497,6 @@ export var ImageGenerationDestinationConfig$ = [3, n0, _IGDC,
|
|
|
429
497
|
[_U, _DR],
|
|
430
498
|
[0, 0], 2
|
|
431
499
|
];
|
|
432
|
-
export var InvalidArgumentException$ = [-3, n0, _IAE,
|
|
433
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
434
|
-
[_M],
|
|
435
|
-
[0]
|
|
436
|
-
];
|
|
437
|
-
TypeRegistry.for(n0).registerError(InvalidArgumentException$, InvalidArgumentException);
|
|
438
|
-
export var InvalidDeviceException$ = [-3, n0, _IDE,
|
|
439
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
440
|
-
[_M],
|
|
441
|
-
[0]
|
|
442
|
-
];
|
|
443
|
-
TypeRegistry.for(n0).registerError(InvalidDeviceException$, InvalidDeviceException);
|
|
444
|
-
export var InvalidResourceFormatException$ = [-3, n0, _IRFE,
|
|
445
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
446
|
-
[_M],
|
|
447
|
-
[0]
|
|
448
|
-
];
|
|
449
|
-
TypeRegistry.for(n0).registerError(InvalidResourceFormatException$, InvalidResourceFormatException);
|
|
450
500
|
export var LastRecorderStatus$ = [3, n0, _LRS,
|
|
451
501
|
0,
|
|
452
502
|
[_JSD, _LCT, _LUT, _RS],
|
|
@@ -532,18 +582,6 @@ export var MediaStorageConfiguration$ = [3, n0, _MSC,
|
|
|
532
582
|
[_S, _SARN],
|
|
533
583
|
[0, 0], 1
|
|
534
584
|
];
|
|
535
|
-
export var NoDataRetentionException$ = [-3, n0, _NDRE,
|
|
536
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
537
|
-
[_M],
|
|
538
|
-
[0]
|
|
539
|
-
];
|
|
540
|
-
TypeRegistry.for(n0).registerError(NoDataRetentionException$, NoDataRetentionException);
|
|
541
|
-
export var NotAuthorizedException$ = [-3, n0, _NAE,
|
|
542
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
543
|
-
[_M],
|
|
544
|
-
[0]
|
|
545
|
-
];
|
|
546
|
-
TypeRegistry.for(n0).registerError(NotAuthorizedException$, NotAuthorizedException);
|
|
547
585
|
export var NotificationConfiguration$ = [3, n0, _NC,
|
|
548
586
|
0,
|
|
549
587
|
[_S, _DCe],
|
|
@@ -564,18 +602,6 @@ export var ResourceEndpointListItem$ = [3, n0, _RELI,
|
|
|
564
602
|
[_P, _RE],
|
|
565
603
|
[0, 0]
|
|
566
604
|
];
|
|
567
|
-
export var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
568
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
569
|
-
[_M],
|
|
570
|
-
[0]
|
|
571
|
-
];
|
|
572
|
-
TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
573
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
574
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
575
|
-
[_M],
|
|
576
|
-
[0]
|
|
577
|
-
];
|
|
578
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
579
605
|
export var ScheduleConfig$ = [3, n0, _SC,
|
|
580
606
|
0,
|
|
581
607
|
[_SE, _DIS],
|
|
@@ -601,12 +627,6 @@ export var StartEdgeConfigurationUpdateOutput$ = [3, n0, _SECUO,
|
|
|
601
627
|
[_SN, _SARN, _CTr, _LUT, _SS, _FSD, _EC],
|
|
602
628
|
[0, 0, 4, 4, 0, 0, [() => EdgeConfig$, 0]]
|
|
603
629
|
];
|
|
604
|
-
export var StreamEdgeConfigurationNotFoundException$ = [-3, n0, _SECNFE,
|
|
605
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
606
|
-
[_M],
|
|
607
|
-
[0]
|
|
608
|
-
];
|
|
609
|
-
TypeRegistry.for(n0).registerError(StreamEdgeConfigurationNotFoundException$, StreamEdgeConfigurationNotFoundException);
|
|
610
630
|
export var StreamInfo$ = [3, n0, _SI,
|
|
611
631
|
0,
|
|
612
632
|
[_DN, _SN, _SARN, _MT, _KKI, _V, _S, _CTr, _DRIH],
|
|
@@ -637,12 +657,6 @@ export var TagResourceOutput$ = [3, n0, _TRO,
|
|
|
637
657
|
[],
|
|
638
658
|
[]
|
|
639
659
|
];
|
|
640
|
-
export var TagsPerResourceExceededLimitException$ = [-3, n0, _TPRELE,
|
|
641
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
642
|
-
[_M],
|
|
643
|
-
[0]
|
|
644
|
-
];
|
|
645
|
-
TypeRegistry.for(n0).registerError(TagsPerResourceExceededLimitException$, TagsPerResourceExceededLimitException);
|
|
646
660
|
export var TagStreamInput$ = [3, n0, _TSI,
|
|
647
661
|
0,
|
|
648
662
|
[_T, _SARN, _SN],
|
|
@@ -748,14 +762,6 @@ export var UploaderConfig$ = [3, n0, _UC,
|
|
|
748
762
|
[_SC],
|
|
749
763
|
[() => ScheduleConfig$], 1
|
|
750
764
|
];
|
|
751
|
-
export var VersionMismatchException$ = [-3, n0, _VME,
|
|
752
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
753
|
-
[_M],
|
|
754
|
-
[0]
|
|
755
|
-
];
|
|
756
|
-
TypeRegistry.for(n0).registerError(VersionMismatchException$, VersionMismatchException);
|
|
757
|
-
export var KinesisVideoServiceException$ = [-3, _s, "KinesisVideoServiceException", 0, [], []];
|
|
758
|
-
TypeRegistry.for(_s).registerError(KinesisVideoServiceException$, KinesisVideoServiceException);
|
|
759
765
|
var ChannelInfoList = [1, n0, _CIL,
|
|
760
766
|
0, () => ChannelInfo$
|
|
761
767
|
];
|
|
@@ -1,10 +1,29 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var KinesisVideoServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
3
5
|
export declare var AccountChannelLimitExceededException$: StaticErrorSchema;
|
|
4
6
|
export declare var AccountStreamLimitExceededException$: StaticErrorSchema;
|
|
7
|
+
export declare var ClientLimitExceededException$: StaticErrorSchema;
|
|
8
|
+
export declare var DeviceStreamLimitExceededException$: StaticErrorSchema;
|
|
9
|
+
export declare var InvalidArgumentException$: StaticErrorSchema;
|
|
10
|
+
export declare var InvalidDeviceException$: StaticErrorSchema;
|
|
11
|
+
export declare var InvalidResourceFormatException$: StaticErrorSchema;
|
|
12
|
+
export declare var NoDataRetentionException$: StaticErrorSchema;
|
|
13
|
+
export declare var NotAuthorizedException$: StaticErrorSchema;
|
|
14
|
+
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
15
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
16
|
+
export declare var StreamEdgeConfigurationNotFoundException$: StaticErrorSchema;
|
|
17
|
+
export declare var TagsPerResourceExceededLimitException$: StaticErrorSchema;
|
|
18
|
+
export declare var VersionMismatchException$: StaticErrorSchema;
|
|
19
|
+
/**
|
|
20
|
+
* TypeRegistry instances containing modeled errors.
|
|
21
|
+
* @internal
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
5
25
|
export declare var ChannelInfo$: StaticStructureSchema;
|
|
6
26
|
export declare var ChannelNameCondition$: StaticStructureSchema;
|
|
7
|
-
export declare var ClientLimitExceededException$: StaticErrorSchema;
|
|
8
27
|
export declare var CreateSignalingChannelInput$: StaticStructureSchema;
|
|
9
28
|
export declare var CreateSignalingChannelOutput$: StaticStructureSchema;
|
|
10
29
|
export declare var CreateStreamInput$: StaticStructureSchema;
|
|
@@ -32,7 +51,6 @@ export declare var DescribeStreamInput$: StaticStructureSchema;
|
|
|
32
51
|
export declare var DescribeStreamOutput$: StaticStructureSchema;
|
|
33
52
|
export declare var DescribeStreamStorageConfigurationInput$: StaticStructureSchema;
|
|
34
53
|
export declare var DescribeStreamStorageConfigurationOutput$: StaticStructureSchema;
|
|
35
|
-
export declare var DeviceStreamLimitExceededException$: StaticErrorSchema;
|
|
36
54
|
export declare var EdgeAgentStatus$: StaticStructureSchema;
|
|
37
55
|
export declare var EdgeConfig$: StaticStructureSchema;
|
|
38
56
|
export declare var GetDataEndpointInput$: StaticStructureSchema;
|
|
@@ -41,9 +59,6 @@ export declare var GetSignalingChannelEndpointInput$: StaticStructureSchema;
|
|
|
41
59
|
export declare var GetSignalingChannelEndpointOutput$: StaticStructureSchema;
|
|
42
60
|
export declare var ImageGenerationConfiguration$: StaticStructureSchema;
|
|
43
61
|
export declare var ImageGenerationDestinationConfig$: StaticStructureSchema;
|
|
44
|
-
export declare var InvalidArgumentException$: StaticErrorSchema;
|
|
45
|
-
export declare var InvalidDeviceException$: StaticErrorSchema;
|
|
46
|
-
export declare var InvalidResourceFormatException$: StaticErrorSchema;
|
|
47
62
|
export declare var LastRecorderStatus$: StaticStructureSchema;
|
|
48
63
|
export declare var LastUploaderStatus$: StaticStructureSchema;
|
|
49
64
|
export declare var ListEdgeAgentConfigurationsEdgeConfig$: StaticStructureSchema;
|
|
@@ -61,27 +76,21 @@ export declare var LocalSizeConfig$: StaticStructureSchema;
|
|
|
61
76
|
export declare var MappedResourceConfigurationListItem$: StaticStructureSchema;
|
|
62
77
|
export declare var MediaSourceConfig$: StaticStructureSchema;
|
|
63
78
|
export declare var MediaStorageConfiguration$: StaticStructureSchema;
|
|
64
|
-
export declare var NoDataRetentionException$: StaticErrorSchema;
|
|
65
|
-
export declare var NotAuthorizedException$: StaticErrorSchema;
|
|
66
79
|
export declare var NotificationConfiguration$: StaticStructureSchema;
|
|
67
80
|
export declare var NotificationDestinationConfig$: StaticStructureSchema;
|
|
68
81
|
export declare var RecorderConfig$: StaticStructureSchema;
|
|
69
82
|
export declare var ResourceEndpointListItem$: StaticStructureSchema;
|
|
70
|
-
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
71
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
72
83
|
export declare var ScheduleConfig$: StaticStructureSchema;
|
|
73
84
|
export declare var SingleMasterChannelEndpointConfiguration$: StaticStructureSchema;
|
|
74
85
|
export declare var SingleMasterConfiguration$: StaticStructureSchema;
|
|
75
86
|
export declare var StartEdgeConfigurationUpdateInput$: StaticStructureSchema;
|
|
76
87
|
export declare var StartEdgeConfigurationUpdateOutput$: StaticStructureSchema;
|
|
77
|
-
export declare var StreamEdgeConfigurationNotFoundException$: StaticErrorSchema;
|
|
78
88
|
export declare var StreamInfo$: StaticStructureSchema;
|
|
79
89
|
export declare var StreamNameCondition$: StaticStructureSchema;
|
|
80
90
|
export declare var StreamStorageConfiguration$: StaticStructureSchema;
|
|
81
91
|
export declare var Tag$: StaticStructureSchema;
|
|
82
92
|
export declare var TagResourceInput$: StaticStructureSchema;
|
|
83
93
|
export declare var TagResourceOutput$: StaticStructureSchema;
|
|
84
|
-
export declare var TagsPerResourceExceededLimitException$: StaticErrorSchema;
|
|
85
94
|
export declare var TagStreamInput$: StaticStructureSchema;
|
|
86
95
|
export declare var TagStreamOutput$: StaticStructureSchema;
|
|
87
96
|
export declare var UntagResourceInput$: StaticStructureSchema;
|
|
@@ -103,8 +112,6 @@ export declare var UpdateStreamOutput$: StaticStructureSchema;
|
|
|
103
112
|
export declare var UpdateStreamStorageConfigurationInput$: StaticStructureSchema;
|
|
104
113
|
export declare var UpdateStreamStorageConfigurationOutput$: StaticStructureSchema;
|
|
105
114
|
export declare var UploaderConfig$: StaticStructureSchema;
|
|
106
|
-
export declare var VersionMismatchException$: StaticErrorSchema;
|
|
107
|
-
export declare var KinesisVideoServiceException$: StaticErrorSchema;
|
|
108
115
|
export declare var CreateSignalingChannel$: StaticOperationSchema;
|
|
109
116
|
export declare var CreateStream$: StaticOperationSchema;
|
|
110
117
|
export declare var DeleteEdgeConfiguration$: StaticOperationSchema;
|
|
@@ -1,14 +1,28 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var KinesisVideoServiceException$: StaticErrorSchema;
|
|
6
8
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccountChannelLimitExceededException$: StaticErrorSchema;
|
|
8
10
|
export declare var AccountStreamLimitExceededException$: StaticErrorSchema;
|
|
11
|
+
export declare var ClientLimitExceededException$: StaticErrorSchema;
|
|
12
|
+
export declare var DeviceStreamLimitExceededException$: StaticErrorSchema;
|
|
13
|
+
export declare var InvalidArgumentException$: StaticErrorSchema;
|
|
14
|
+
export declare var InvalidDeviceException$: StaticErrorSchema;
|
|
15
|
+
export declare var InvalidResourceFormatException$: StaticErrorSchema;
|
|
16
|
+
export declare var NoDataRetentionException$: StaticErrorSchema;
|
|
17
|
+
export declare var NotAuthorizedException$: StaticErrorSchema;
|
|
18
|
+
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
19
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
20
|
+
export declare var StreamEdgeConfigurationNotFoundException$: StaticErrorSchema;
|
|
21
|
+
export declare var TagsPerResourceExceededLimitException$: StaticErrorSchema;
|
|
22
|
+
export declare var VersionMismatchException$: StaticErrorSchema;
|
|
23
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
9
24
|
export declare var ChannelInfo$: StaticStructureSchema;
|
|
10
25
|
export declare var ChannelNameCondition$: StaticStructureSchema;
|
|
11
|
-
export declare var ClientLimitExceededException$: StaticErrorSchema;
|
|
12
26
|
export declare var CreateSignalingChannelInput$: StaticStructureSchema;
|
|
13
27
|
export declare var CreateSignalingChannelOutput$: StaticStructureSchema;
|
|
14
28
|
export declare var CreateStreamInput$: StaticStructureSchema;
|
|
@@ -36,7 +50,6 @@ export declare var DescribeStreamInput$: StaticStructureSchema;
|
|
|
36
50
|
export declare var DescribeStreamOutput$: StaticStructureSchema;
|
|
37
51
|
export declare var DescribeStreamStorageConfigurationInput$: StaticStructureSchema;
|
|
38
52
|
export declare var DescribeStreamStorageConfigurationOutput$: StaticStructureSchema;
|
|
39
|
-
export declare var DeviceStreamLimitExceededException$: StaticErrorSchema;
|
|
40
53
|
export declare var EdgeAgentStatus$: StaticStructureSchema;
|
|
41
54
|
export declare var EdgeConfig$: StaticStructureSchema;
|
|
42
55
|
export declare var GetDataEndpointInput$: StaticStructureSchema;
|
|
@@ -45,9 +58,6 @@ export declare var GetSignalingChannelEndpointInput$: StaticStructureSchema;
|
|
|
45
58
|
export declare var GetSignalingChannelEndpointOutput$: StaticStructureSchema;
|
|
46
59
|
export declare var ImageGenerationConfiguration$: StaticStructureSchema;
|
|
47
60
|
export declare var ImageGenerationDestinationConfig$: StaticStructureSchema;
|
|
48
|
-
export declare var InvalidArgumentException$: StaticErrorSchema;
|
|
49
|
-
export declare var InvalidDeviceException$: StaticErrorSchema;
|
|
50
|
-
export declare var InvalidResourceFormatException$: StaticErrorSchema;
|
|
51
61
|
export declare var LastRecorderStatus$: StaticStructureSchema;
|
|
52
62
|
export declare var LastUploaderStatus$: StaticStructureSchema;
|
|
53
63
|
export declare var ListEdgeAgentConfigurationsEdgeConfig$: StaticStructureSchema;
|
|
@@ -65,27 +75,21 @@ export declare var LocalSizeConfig$: StaticStructureSchema;
|
|
|
65
75
|
export declare var MappedResourceConfigurationListItem$: StaticStructureSchema;
|
|
66
76
|
export declare var MediaSourceConfig$: StaticStructureSchema;
|
|
67
77
|
export declare var MediaStorageConfiguration$: StaticStructureSchema;
|
|
68
|
-
export declare var NoDataRetentionException$: StaticErrorSchema;
|
|
69
|
-
export declare var NotAuthorizedException$: StaticErrorSchema;
|
|
70
78
|
export declare var NotificationConfiguration$: StaticStructureSchema;
|
|
71
79
|
export declare var NotificationDestinationConfig$: StaticStructureSchema;
|
|
72
80
|
export declare var RecorderConfig$: StaticStructureSchema;
|
|
73
81
|
export declare var ResourceEndpointListItem$: StaticStructureSchema;
|
|
74
|
-
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
75
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
76
82
|
export declare var ScheduleConfig$: StaticStructureSchema;
|
|
77
83
|
export declare var SingleMasterChannelEndpointConfiguration$: StaticStructureSchema;
|
|
78
84
|
export declare var SingleMasterConfiguration$: StaticStructureSchema;
|
|
79
85
|
export declare var StartEdgeConfigurationUpdateInput$: StaticStructureSchema;
|
|
80
86
|
export declare var StartEdgeConfigurationUpdateOutput$: StaticStructureSchema;
|
|
81
|
-
export declare var StreamEdgeConfigurationNotFoundException$: StaticErrorSchema;
|
|
82
87
|
export declare var StreamInfo$: StaticStructureSchema;
|
|
83
88
|
export declare var StreamNameCondition$: StaticStructureSchema;
|
|
84
89
|
export declare var StreamStorageConfiguration$: StaticStructureSchema;
|
|
85
90
|
export declare var Tag$: StaticStructureSchema;
|
|
86
91
|
export declare var TagResourceInput$: StaticStructureSchema;
|
|
87
92
|
export declare var TagResourceOutput$: StaticStructureSchema;
|
|
88
|
-
export declare var TagsPerResourceExceededLimitException$: StaticErrorSchema;
|
|
89
93
|
export declare var TagStreamInput$: StaticStructureSchema;
|
|
90
94
|
export declare var TagStreamOutput$: StaticStructureSchema;
|
|
91
95
|
export declare var UntagResourceInput$: StaticStructureSchema;
|
|
@@ -107,8 +111,6 @@ export declare var UpdateStreamOutput$: StaticStructureSchema;
|
|
|
107
111
|
export declare var UpdateStreamStorageConfigurationInput$: StaticStructureSchema;
|
|
108
112
|
export declare var UpdateStreamStorageConfigurationOutput$: StaticStructureSchema;
|
|
109
113
|
export declare var UploaderConfig$: StaticStructureSchema;
|
|
110
|
-
export declare var VersionMismatchException$: StaticErrorSchema;
|
|
111
|
-
export declare var KinesisVideoServiceException$: StaticErrorSchema;
|
|
112
114
|
export declare var CreateSignalingChannel$: StaticOperationSchema;
|
|
113
115
|
export declare var CreateStream$: StaticOperationSchema;
|
|
114
116
|
export declare var DeleteEdgeConfiguration$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-video",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Video Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-kinesis-video",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|