@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.
- package/dist-cjs/index.js +1111 -1478
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/KinesisVideoClient.js +2 -0
- package/dist-es/commands/CreateSignalingChannelCommand.js +3 -9
- package/dist-es/commands/CreateStreamCommand.js +3 -9
- package/dist-es/commands/DeleteEdgeConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteSignalingChannelCommand.js +3 -9
- package/dist-es/commands/DeleteStreamCommand.js +3 -9
- package/dist-es/commands/DescribeEdgeConfigurationCommand.js +3 -10
- package/dist-es/commands/DescribeImageGenerationConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeMappedResourceConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeMediaStorageConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeNotificationConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeSignalingChannelCommand.js +3 -9
- package/dist-es/commands/DescribeStreamCommand.js +3 -9
- package/dist-es/commands/GetDataEndpointCommand.js +3 -9
- package/dist-es/commands/GetSignalingChannelEndpointCommand.js +3 -9
- package/dist-es/commands/ListEdgeAgentConfigurationsCommand.js +3 -10
- package/dist-es/commands/ListSignalingChannelsCommand.js +3 -9
- package/dist-es/commands/ListStreamsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListTagsForStreamCommand.js +3 -9
- package/dist-es/commands/StartEdgeConfigurationUpdateCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/TagStreamCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UntagStreamCommand.js +3 -9
- package/dist-es/commands/UpdateDataRetentionCommand.js +3 -9
- package/dist-es/commands/UpdateImageGenerationConfigurationCommand.js +3 -9
- package/dist-es/commands/UpdateMediaStorageConfigurationCommand.js +3 -9
- package/dist-es/commands/UpdateNotificationConfigurationCommand.js +3 -9
- package/dist-es/commands/UpdateSignalingChannelCommand.js +3 -9
- package/dist-es/commands/UpdateStreamCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -35
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1009 -0
- package/dist-types/KinesisVideoClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -32
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +145 -0
- package/dist-types/ts3.4/KinesisVideoClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +151 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -1182
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -272
- 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
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
const
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
const
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
const
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
const
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
const
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
const
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
const
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
const
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
const
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
const
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
const
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
const
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
const
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
}
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
}
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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
|
-
.
|
|
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;
|