@aws-sdk/client-kinesis-video 3.80.0 → 3.83.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/CHANGELOG.md +27 -0
- package/dist-cjs/KinesisVideo.js +60 -0
- package/dist-cjs/commands/DescribeImageGenerationConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DescribeNotificationConfigurationCommand.js +36 -0
- package/dist-cjs/commands/UpdateImageGenerationConfigurationCommand.js +36 -0
- package/dist-cjs/commands/UpdateNotificationConfigurationCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +109 -2
- package/dist-cjs/protocols/Aws_restJson1.js +393 -1
- package/dist-es/KinesisVideo.js +60 -0
- package/dist-es/commands/DescribeImageGenerationConfigurationCommand.js +39 -0
- package/dist-es/commands/DescribeNotificationConfigurationCommand.js +39 -0
- package/dist-es/commands/UpdateImageGenerationConfigurationCommand.js +39 -0
- package/dist-es/commands/UpdateNotificationConfigurationCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +82 -0
- package/dist-es/protocols/Aws_restJson1.js +468 -1
- package/dist-types/KinesisVideo.d.ts +37 -9
- package/dist-types/KinesisVideoClient.d.ts +6 -2
- package/dist-types/commands/DescribeImageGenerationConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/DescribeNotificationConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/GetSignalingChannelEndpointCommand.d.ts +2 -2
- package/dist-types/commands/ListSignalingChannelsCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/TagStreamCommand.d.ts +3 -3
- package/dist-types/commands/UpdateImageGenerationConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/UpdateNotificationConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +264 -10
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/KinesisVideo.d.ts +20 -0
- package/dist-types/ts3.4/KinesisVideoClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/DescribeImageGenerationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeNotificationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateImageGenerationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateNotificationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +153 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.83.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.82.0...v3.83.0) (2022-05-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-kinesis-video:** Add support for multiple image feature related APIs for configuring image generation and notification of a video stream. Add "GET_IMAGES" to the list of supported API names for the GetDataEndpoint API. ([9dfe418](https://github.com/aws/aws-sdk-js-v3/commit/9dfe41850fa304dc8f570f961983ccc1a34321a6))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.82.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.81.0...v3.82.0) (2022-05-02)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-kinesis-video
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.81.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.80.0...v3.81.0) (2022-04-29)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-kinesis-video
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.80.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.79.0...v3.80.0) (2022-04-28)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-kinesis-video
|
package/dist-cjs/KinesisVideo.js
CHANGED
|
@@ -5,6 +5,8 @@ const CreateSignalingChannelCommand_1 = require("./commands/CreateSignalingChann
|
|
|
5
5
|
const CreateStreamCommand_1 = require("./commands/CreateStreamCommand");
|
|
6
6
|
const DeleteSignalingChannelCommand_1 = require("./commands/DeleteSignalingChannelCommand");
|
|
7
7
|
const DeleteStreamCommand_1 = require("./commands/DeleteStreamCommand");
|
|
8
|
+
const DescribeImageGenerationConfigurationCommand_1 = require("./commands/DescribeImageGenerationConfigurationCommand");
|
|
9
|
+
const DescribeNotificationConfigurationCommand_1 = require("./commands/DescribeNotificationConfigurationCommand");
|
|
8
10
|
const DescribeSignalingChannelCommand_1 = require("./commands/DescribeSignalingChannelCommand");
|
|
9
11
|
const DescribeStreamCommand_1 = require("./commands/DescribeStreamCommand");
|
|
10
12
|
const GetDataEndpointCommand_1 = require("./commands/GetDataEndpointCommand");
|
|
@@ -18,6 +20,8 @@ const TagStreamCommand_1 = require("./commands/TagStreamCommand");
|
|
|
18
20
|
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
19
21
|
const UntagStreamCommand_1 = require("./commands/UntagStreamCommand");
|
|
20
22
|
const UpdateDataRetentionCommand_1 = require("./commands/UpdateDataRetentionCommand");
|
|
23
|
+
const UpdateImageGenerationConfigurationCommand_1 = require("./commands/UpdateImageGenerationConfigurationCommand");
|
|
24
|
+
const UpdateNotificationConfigurationCommand_1 = require("./commands/UpdateNotificationConfigurationCommand");
|
|
21
25
|
const UpdateSignalingChannelCommand_1 = require("./commands/UpdateSignalingChannelCommand");
|
|
22
26
|
const UpdateStreamCommand_1 = require("./commands/UpdateStreamCommand");
|
|
23
27
|
const KinesisVideoClient_1 = require("./KinesisVideoClient");
|
|
@@ -78,6 +82,34 @@ class KinesisVideo extends KinesisVideoClient_1.KinesisVideoClient {
|
|
|
78
82
|
return this.send(command, optionsOrCb);
|
|
79
83
|
}
|
|
80
84
|
}
|
|
85
|
+
describeImageGenerationConfiguration(args, optionsOrCb, cb) {
|
|
86
|
+
const command = new DescribeImageGenerationConfigurationCommand_1.DescribeImageGenerationConfigurationCommand(args);
|
|
87
|
+
if (typeof optionsOrCb === "function") {
|
|
88
|
+
this.send(command, optionsOrCb);
|
|
89
|
+
}
|
|
90
|
+
else if (typeof cb === "function") {
|
|
91
|
+
if (typeof optionsOrCb !== "object")
|
|
92
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
93
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
94
|
+
}
|
|
95
|
+
else {
|
|
96
|
+
return this.send(command, optionsOrCb);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
describeNotificationConfiguration(args, optionsOrCb, cb) {
|
|
100
|
+
const command = new DescribeNotificationConfigurationCommand_1.DescribeNotificationConfigurationCommand(args);
|
|
101
|
+
if (typeof optionsOrCb === "function") {
|
|
102
|
+
this.send(command, optionsOrCb);
|
|
103
|
+
}
|
|
104
|
+
else if (typeof cb === "function") {
|
|
105
|
+
if (typeof optionsOrCb !== "object")
|
|
106
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
107
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
return this.send(command, optionsOrCb);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
81
113
|
describeSignalingChannel(args, optionsOrCb, cb) {
|
|
82
114
|
const command = new DescribeSignalingChannelCommand_1.DescribeSignalingChannelCommand(args);
|
|
83
115
|
if (typeof optionsOrCb === "function") {
|
|
@@ -260,6 +292,34 @@ class KinesisVideo extends KinesisVideoClient_1.KinesisVideoClient {
|
|
|
260
292
|
return this.send(command, optionsOrCb);
|
|
261
293
|
}
|
|
262
294
|
}
|
|
295
|
+
updateImageGenerationConfiguration(args, optionsOrCb, cb) {
|
|
296
|
+
const command = new UpdateImageGenerationConfigurationCommand_1.UpdateImageGenerationConfigurationCommand(args);
|
|
297
|
+
if (typeof optionsOrCb === "function") {
|
|
298
|
+
this.send(command, optionsOrCb);
|
|
299
|
+
}
|
|
300
|
+
else if (typeof cb === "function") {
|
|
301
|
+
if (typeof optionsOrCb !== "object")
|
|
302
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
303
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
304
|
+
}
|
|
305
|
+
else {
|
|
306
|
+
return this.send(command, optionsOrCb);
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
updateNotificationConfiguration(args, optionsOrCb, cb) {
|
|
310
|
+
const command = new UpdateNotificationConfigurationCommand_1.UpdateNotificationConfigurationCommand(args);
|
|
311
|
+
if (typeof optionsOrCb === "function") {
|
|
312
|
+
this.send(command, optionsOrCb);
|
|
313
|
+
}
|
|
314
|
+
else if (typeof cb === "function") {
|
|
315
|
+
if (typeof optionsOrCb !== "object")
|
|
316
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
317
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
318
|
+
}
|
|
319
|
+
else {
|
|
320
|
+
return this.send(command, optionsOrCb);
|
|
321
|
+
}
|
|
322
|
+
}
|
|
263
323
|
updateSignalingChannel(args, optionsOrCb, cb) {
|
|
264
324
|
const command = new UpdateSignalingChannelCommand_1.UpdateSignalingChannelCommand(args);
|
|
265
325
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeImageGenerationConfigurationCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class DescribeImageGenerationConfigurationCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "KinesisVideoClient";
|
|
18
|
+
const commandName = "DescribeImageGenerationConfigurationCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeImageGenerationConfigurationInput.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeImageGenerationConfigurationOutput.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1DescribeImageGenerationConfigurationCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeImageGenerationConfigurationCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DescribeImageGenerationConfigurationCommand = DescribeImageGenerationConfigurationCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DescribeNotificationConfigurationCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class DescribeNotificationConfigurationCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "KinesisVideoClient";
|
|
18
|
+
const commandName = "DescribeNotificationConfigurationCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DescribeNotificationConfigurationInput.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DescribeNotificationConfigurationOutput.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1DescribeNotificationConfigurationCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1DescribeNotificationConfigurationCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.DescribeNotificationConfigurationCommand = DescribeNotificationConfigurationCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateImageGenerationConfigurationCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class UpdateImageGenerationConfigurationCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "KinesisVideoClient";
|
|
18
|
+
const commandName = "UpdateImageGenerationConfigurationCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateImageGenerationConfigurationInput.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateImageGenerationConfigurationOutput.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1UpdateImageGenerationConfigurationCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateImageGenerationConfigurationCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.UpdateImageGenerationConfigurationCommand = UpdateImageGenerationConfigurationCommand;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateNotificationConfigurationCommand = void 0;
|
|
4
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
5
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
|
+
const models_0_1 = require("../models/models_0");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class UpdateNotificationConfigurationCommand extends smithy_client_1.Command {
|
|
9
|
+
constructor(input) {
|
|
10
|
+
super();
|
|
11
|
+
this.input = input;
|
|
12
|
+
}
|
|
13
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
15
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
const { logger } = configuration;
|
|
17
|
+
const clientName = "KinesisVideoClient";
|
|
18
|
+
const commandName = "UpdateNotificationConfigurationCommand";
|
|
19
|
+
const handlerExecutionContext = {
|
|
20
|
+
logger,
|
|
21
|
+
clientName,
|
|
22
|
+
commandName,
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateNotificationConfigurationInput.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateNotificationConfigurationOutput.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
const { requestHandler } = configuration;
|
|
27
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
28
|
+
}
|
|
29
|
+
serialize(input, context) {
|
|
30
|
+
return (0, Aws_restJson1_1.serializeAws_restJson1UpdateNotificationConfigurationCommand)(input, context);
|
|
31
|
+
}
|
|
32
|
+
deserialize(output, context) {
|
|
33
|
+
return (0, Aws_restJson1_1.deserializeAws_restJson1UpdateNotificationConfigurationCommand)(output, context);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfigurationCommand;
|
|
@@ -5,6 +5,8 @@ tslib_1.__exportStar(require("./CreateSignalingChannelCommand"), exports);
|
|
|
5
5
|
tslib_1.__exportStar(require("./CreateStreamCommand"), exports);
|
|
6
6
|
tslib_1.__exportStar(require("./DeleteSignalingChannelCommand"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./DeleteStreamCommand"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./DescribeImageGenerationConfigurationCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./DescribeNotificationConfigurationCommand"), exports);
|
|
8
10
|
tslib_1.__exportStar(require("./DescribeSignalingChannelCommand"), exports);
|
|
9
11
|
tslib_1.__exportStar(require("./DescribeStreamCommand"), exports);
|
|
10
12
|
tslib_1.__exportStar(require("./GetDataEndpointCommand"), exports);
|
|
@@ -18,5 +20,7 @@ tslib_1.__exportStar(require("./TagStreamCommand"), exports);
|
|
|
18
20
|
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
19
21
|
tslib_1.__exportStar(require("./UntagStreamCommand"), exports);
|
|
20
22
|
tslib_1.__exportStar(require("./UpdateDataRetentionCommand"), exports);
|
|
23
|
+
tslib_1.__exportStar(require("./UpdateImageGenerationConfigurationCommand"), exports);
|
|
24
|
+
tslib_1.__exportStar(require("./UpdateNotificationConfigurationCommand"), exports);
|
|
21
25
|
tslib_1.__exportStar(require("./UpdateSignalingChannelCommand"), exports);
|
|
22
26
|
tslib_1.__exportStar(require("./UpdateStreamCommand"), exports);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UpdateStreamOutput = exports.UpdateStreamInput = exports.UpdateSignalingChannelOutput = exports.UpdateSignalingChannelInput = exports.UpdateDataRetentionOutput = exports.UpdateDataRetentionInput = exports.UpdateDataRetentionOperation = exports.UntagStreamOutput = exports.UntagStreamInput = exports.UntagResourceOutput = exports.UntagResourceInput = exports.TagStreamOutput = exports.TagStreamInput = exports.TagResourceOutput = exports.TagResourceInput = exports.ListTagsForStreamOutput = void 0;
|
|
3
|
+
exports.SingleMasterChannelEndpointConfiguration = exports.GetDataEndpointOutput = exports.GetDataEndpointInput = exports.DescribeStreamOutput = exports.StreamInfo = exports.DescribeStreamInput = exports.DescribeSignalingChannelOutput = exports.DescribeSignalingChannelInput = exports.DescribeNotificationConfigurationOutput = exports.NotificationConfiguration = exports.NotificationDestinationConfig = exports.DescribeNotificationConfigurationInput = exports.DescribeImageGenerationConfigurationOutput = exports.ImageGenerationConfiguration = exports.ImageSelectorType = exports.FormatConfigKey = exports.Format = exports.ImageGenerationDestinationConfig = exports.DescribeImageGenerationConfigurationInput = exports.NotAuthorizedException = exports.DeleteStreamOutput = exports.DeleteStreamInput = exports.VersionMismatchException = exports.ResourceNotFoundException = exports.DeleteSignalingChannelOutput = exports.DeleteSignalingChannelInput = exports.InvalidDeviceException = exports.DeviceStreamLimitExceededException = exports.CreateStreamOutput = exports.CreateStreamInput = exports.TagsPerResourceExceededLimitException = exports.ResourceInUseException = exports.InvalidArgumentException = exports.CreateSignalingChannelOutput = exports.CreateSignalingChannelInput = exports.Tag = exports.ConfigurationStatus = exports.ClientLimitExceededException = exports.ChannelRole = exports.ChannelProtocol = exports.ChannelNameCondition = exports.ComparisonOperator = exports.ChannelInfo = exports.SingleMasterConfiguration = exports.ChannelType = exports.Status = exports.APIName = exports.AccountStreamLimitExceededException = exports.AccountChannelLimitExceededException = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.UpdateStreamOutput = exports.UpdateStreamInput = exports.UpdateSignalingChannelOutput = exports.UpdateSignalingChannelInput = exports.UpdateNotificationConfigurationOutput = exports.UpdateNotificationConfigurationInput = exports.UpdateImageGenerationConfigurationOutput = exports.UpdateImageGenerationConfigurationInput = exports.NoDataRetentionException = exports.UpdateDataRetentionOutput = exports.UpdateDataRetentionInput = exports.UpdateDataRetentionOperation = exports.UntagStreamOutput = exports.UntagStreamInput = exports.UntagResourceOutput = exports.UntagResourceInput = exports.TagStreamOutput = exports.TagStreamInput = exports.TagResourceOutput = exports.TagResourceInput = exports.ListTagsForStreamOutput = exports.ListTagsForStreamInput = exports.ListTagsForResourceOutput = exports.ListTagsForResourceInput = exports.ListStreamsOutput = exports.ListStreamsInput = exports.StreamNameCondition = exports.ListSignalingChannelsOutput = exports.ListSignalingChannelsInput = exports.InvalidResourceFormatException = exports.GetSignalingChannelEndpointOutput = exports.ResourceEndpointListItem = exports.GetSignalingChannelEndpointInput = void 0;
|
|
5
5
|
const KinesisVideoServiceException_1 = require("./KinesisVideoServiceException");
|
|
6
6
|
class AccessDeniedException extends KinesisVideoServiceException_1.KinesisVideoServiceException {
|
|
7
7
|
constructor(opts) {
|
|
@@ -50,6 +50,7 @@ var APIName;
|
|
|
50
50
|
APIName["GET_CLIP"] = "GET_CLIP";
|
|
51
51
|
APIName["GET_DASH_STREAMING_SESSION_URL"] = "GET_DASH_STREAMING_SESSION_URL";
|
|
52
52
|
APIName["GET_HLS_STREAMING_SESSION_URL"] = "GET_HLS_STREAMING_SESSION_URL";
|
|
53
|
+
APIName["GET_IMAGES"] = "GET_IMAGES";
|
|
53
54
|
APIName["GET_MEDIA"] = "GET_MEDIA";
|
|
54
55
|
APIName["GET_MEDIA_FOR_FRAGMENT_LIST"] = "GET_MEDIA_FOR_FRAGMENT_LIST";
|
|
55
56
|
APIName["LIST_FRAGMENTS"] = "LIST_FRAGMENTS";
|
|
@@ -64,6 +65,7 @@ var Status;
|
|
|
64
65
|
})(Status = exports.Status || (exports.Status = {}));
|
|
65
66
|
var ChannelType;
|
|
66
67
|
(function (ChannelType) {
|
|
68
|
+
ChannelType["FULL_MESH"] = "FULL_MESH";
|
|
67
69
|
ChannelType["SINGLE_MASTER"] = "SINGLE_MASTER";
|
|
68
70
|
})(ChannelType = exports.ChannelType || (exports.ChannelType = {}));
|
|
69
71
|
var SingleMasterConfiguration;
|
|
@@ -112,6 +114,11 @@ class ClientLimitExceededException extends KinesisVideoServiceException_1.Kinesi
|
|
|
112
114
|
}
|
|
113
115
|
}
|
|
114
116
|
exports.ClientLimitExceededException = ClientLimitExceededException;
|
|
117
|
+
var ConfigurationStatus;
|
|
118
|
+
(function (ConfigurationStatus) {
|
|
119
|
+
ConfigurationStatus["DISABLED"] = "DISABLED";
|
|
120
|
+
ConfigurationStatus["ENABLED"] = "ENABLED";
|
|
121
|
+
})(ConfigurationStatus = exports.ConfigurationStatus || (exports.ConfigurationStatus = {}));
|
|
115
122
|
var Tag;
|
|
116
123
|
(function (Tag) {
|
|
117
124
|
Tag.filterSensitiveLog = (obj) => ({
|
|
@@ -278,6 +285,68 @@ class NotAuthorizedException extends KinesisVideoServiceException_1.KinesisVideo
|
|
|
278
285
|
}
|
|
279
286
|
}
|
|
280
287
|
exports.NotAuthorizedException = NotAuthorizedException;
|
|
288
|
+
var DescribeImageGenerationConfigurationInput;
|
|
289
|
+
(function (DescribeImageGenerationConfigurationInput) {
|
|
290
|
+
DescribeImageGenerationConfigurationInput.filterSensitiveLog = (obj) => ({
|
|
291
|
+
...obj,
|
|
292
|
+
});
|
|
293
|
+
})(DescribeImageGenerationConfigurationInput = exports.DescribeImageGenerationConfigurationInput || (exports.DescribeImageGenerationConfigurationInput = {}));
|
|
294
|
+
var ImageGenerationDestinationConfig;
|
|
295
|
+
(function (ImageGenerationDestinationConfig) {
|
|
296
|
+
ImageGenerationDestinationConfig.filterSensitiveLog = (obj) => ({
|
|
297
|
+
...obj,
|
|
298
|
+
});
|
|
299
|
+
})(ImageGenerationDestinationConfig = exports.ImageGenerationDestinationConfig || (exports.ImageGenerationDestinationConfig = {}));
|
|
300
|
+
var Format;
|
|
301
|
+
(function (Format) {
|
|
302
|
+
Format["JPEG"] = "JPEG";
|
|
303
|
+
Format["PNG"] = "PNG";
|
|
304
|
+
})(Format = exports.Format || (exports.Format = {}));
|
|
305
|
+
var FormatConfigKey;
|
|
306
|
+
(function (FormatConfigKey) {
|
|
307
|
+
FormatConfigKey["JPEGQuality"] = "JPEGQuality";
|
|
308
|
+
})(FormatConfigKey = exports.FormatConfigKey || (exports.FormatConfigKey = {}));
|
|
309
|
+
var ImageSelectorType;
|
|
310
|
+
(function (ImageSelectorType) {
|
|
311
|
+
ImageSelectorType["PRODUCER_TIMESTAMP"] = "PRODUCER_TIMESTAMP";
|
|
312
|
+
ImageSelectorType["SERVER_TIMESTAMP"] = "SERVER_TIMESTAMP";
|
|
313
|
+
})(ImageSelectorType = exports.ImageSelectorType || (exports.ImageSelectorType = {}));
|
|
314
|
+
var ImageGenerationConfiguration;
|
|
315
|
+
(function (ImageGenerationConfiguration) {
|
|
316
|
+
ImageGenerationConfiguration.filterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
});
|
|
319
|
+
})(ImageGenerationConfiguration = exports.ImageGenerationConfiguration || (exports.ImageGenerationConfiguration = {}));
|
|
320
|
+
var DescribeImageGenerationConfigurationOutput;
|
|
321
|
+
(function (DescribeImageGenerationConfigurationOutput) {
|
|
322
|
+
DescribeImageGenerationConfigurationOutput.filterSensitiveLog = (obj) => ({
|
|
323
|
+
...obj,
|
|
324
|
+
});
|
|
325
|
+
})(DescribeImageGenerationConfigurationOutput = exports.DescribeImageGenerationConfigurationOutput || (exports.DescribeImageGenerationConfigurationOutput = {}));
|
|
326
|
+
var DescribeNotificationConfigurationInput;
|
|
327
|
+
(function (DescribeNotificationConfigurationInput) {
|
|
328
|
+
DescribeNotificationConfigurationInput.filterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
})(DescribeNotificationConfigurationInput = exports.DescribeNotificationConfigurationInput || (exports.DescribeNotificationConfigurationInput = {}));
|
|
332
|
+
var NotificationDestinationConfig;
|
|
333
|
+
(function (NotificationDestinationConfig) {
|
|
334
|
+
NotificationDestinationConfig.filterSensitiveLog = (obj) => ({
|
|
335
|
+
...obj,
|
|
336
|
+
});
|
|
337
|
+
})(NotificationDestinationConfig = exports.NotificationDestinationConfig || (exports.NotificationDestinationConfig = {}));
|
|
338
|
+
var NotificationConfiguration;
|
|
339
|
+
(function (NotificationConfiguration) {
|
|
340
|
+
NotificationConfiguration.filterSensitiveLog = (obj) => ({
|
|
341
|
+
...obj,
|
|
342
|
+
});
|
|
343
|
+
})(NotificationConfiguration = exports.NotificationConfiguration || (exports.NotificationConfiguration = {}));
|
|
344
|
+
var DescribeNotificationConfigurationOutput;
|
|
345
|
+
(function (DescribeNotificationConfigurationOutput) {
|
|
346
|
+
DescribeNotificationConfigurationOutput.filterSensitiveLog = (obj) => ({
|
|
347
|
+
...obj,
|
|
348
|
+
});
|
|
349
|
+
})(DescribeNotificationConfigurationOutput = exports.DescribeNotificationConfigurationOutput || (exports.DescribeNotificationConfigurationOutput = {}));
|
|
281
350
|
var DescribeSignalingChannelInput;
|
|
282
351
|
(function (DescribeSignalingChannelInput) {
|
|
283
352
|
DescribeSignalingChannelInput.filterSensitiveLog = (obj) => ({
|
|
@@ -477,6 +546,44 @@ var UpdateDataRetentionOutput;
|
|
|
477
546
|
...obj,
|
|
478
547
|
});
|
|
479
548
|
})(UpdateDataRetentionOutput = exports.UpdateDataRetentionOutput || (exports.UpdateDataRetentionOutput = {}));
|
|
549
|
+
class NoDataRetentionException extends KinesisVideoServiceException_1.KinesisVideoServiceException {
|
|
550
|
+
constructor(opts) {
|
|
551
|
+
super({
|
|
552
|
+
name: "NoDataRetentionException",
|
|
553
|
+
$fault: "client",
|
|
554
|
+
...opts,
|
|
555
|
+
});
|
|
556
|
+
this.name = "NoDataRetentionException";
|
|
557
|
+
this.$fault = "client";
|
|
558
|
+
Object.setPrototypeOf(this, NoDataRetentionException.prototype);
|
|
559
|
+
this.Message = opts.Message;
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
exports.NoDataRetentionException = NoDataRetentionException;
|
|
563
|
+
var UpdateImageGenerationConfigurationInput;
|
|
564
|
+
(function (UpdateImageGenerationConfigurationInput) {
|
|
565
|
+
UpdateImageGenerationConfigurationInput.filterSensitiveLog = (obj) => ({
|
|
566
|
+
...obj,
|
|
567
|
+
});
|
|
568
|
+
})(UpdateImageGenerationConfigurationInput = exports.UpdateImageGenerationConfigurationInput || (exports.UpdateImageGenerationConfigurationInput = {}));
|
|
569
|
+
var UpdateImageGenerationConfigurationOutput;
|
|
570
|
+
(function (UpdateImageGenerationConfigurationOutput) {
|
|
571
|
+
UpdateImageGenerationConfigurationOutput.filterSensitiveLog = (obj) => ({
|
|
572
|
+
...obj,
|
|
573
|
+
});
|
|
574
|
+
})(UpdateImageGenerationConfigurationOutput = exports.UpdateImageGenerationConfigurationOutput || (exports.UpdateImageGenerationConfigurationOutput = {}));
|
|
575
|
+
var UpdateNotificationConfigurationInput;
|
|
576
|
+
(function (UpdateNotificationConfigurationInput) {
|
|
577
|
+
UpdateNotificationConfigurationInput.filterSensitiveLog = (obj) => ({
|
|
578
|
+
...obj,
|
|
579
|
+
});
|
|
580
|
+
})(UpdateNotificationConfigurationInput = exports.UpdateNotificationConfigurationInput || (exports.UpdateNotificationConfigurationInput = {}));
|
|
581
|
+
var UpdateNotificationConfigurationOutput;
|
|
582
|
+
(function (UpdateNotificationConfigurationOutput) {
|
|
583
|
+
UpdateNotificationConfigurationOutput.filterSensitiveLog = (obj) => ({
|
|
584
|
+
...obj,
|
|
585
|
+
});
|
|
586
|
+
})(UpdateNotificationConfigurationOutput = exports.UpdateNotificationConfigurationOutput || (exports.UpdateNotificationConfigurationOutput = {}));
|
|
480
587
|
var UpdateSignalingChannelInput;
|
|
481
588
|
(function (UpdateSignalingChannelInput) {
|
|
482
589
|
UpdateSignalingChannelInput.filterSensitiveLog = (obj) => ({
|