@aws-sdk/client-ivs-realtime 3.928.0 → 3.930.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 +1861 -1839
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/IVSRealTimeClient.js +2 -0
- package/dist-es/commands/CreateEncoderConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateIngestConfigurationCommand.js +3 -10
- package/dist-es/commands/CreateParticipantTokenCommand.js +3 -10
- package/dist-es/commands/CreateStageCommand.js +3 -10
- package/dist-es/commands/CreateStorageConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteEncoderConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteIngestConfigurationCommand.js +3 -9
- package/dist-es/commands/DeletePublicKeyCommand.js +3 -9
- package/dist-es/commands/DeleteStageCommand.js +3 -9
- package/dist-es/commands/DeleteStorageConfigurationCommand.js +3 -9
- package/dist-es/commands/DisconnectParticipantCommand.js +3 -9
- package/dist-es/commands/GetCompositionCommand.js +3 -9
- package/dist-es/commands/GetEncoderConfigurationCommand.js +3 -9
- package/dist-es/commands/GetIngestConfigurationCommand.js +3 -10
- package/dist-es/commands/GetParticipantCommand.js +3 -9
- package/dist-es/commands/GetPublicKeyCommand.js +3 -9
- package/dist-es/commands/GetStageCommand.js +3 -9
- package/dist-es/commands/GetStageSessionCommand.js +3 -9
- package/dist-es/commands/GetStorageConfigurationCommand.js +3 -9
- package/dist-es/commands/ImportPublicKeyCommand.js +3 -9
- package/dist-es/commands/ListCompositionsCommand.js +3 -9
- package/dist-es/commands/ListEncoderConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListIngestConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListParticipantEventsCommand.js +3 -9
- package/dist-es/commands/ListParticipantReplicasCommand.js +3 -9
- package/dist-es/commands/ListParticipantsCommand.js +3 -9
- package/dist-es/commands/ListPublicKeysCommand.js +3 -9
- package/dist-es/commands/ListStageSessionsCommand.js +3 -9
- package/dist-es/commands/ListStagesCommand.js +3 -9
- package/dist-es/commands/ListStorageConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartCompositionCommand.js +3 -9
- package/dist-es/commands/StartParticipantReplicationCommand.js +3 -9
- package/dist-es/commands/StopCompositionCommand.js +3 -9
- package/dist-es/commands/StopParticipantReplicationCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateIngestConfigurationCommand.js +3 -10
- package/dist-es/commands/UpdateStageCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -37
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1778 -0
- package/dist-types/IVSRealTimeClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -28
- 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 +192 -0
- package/dist-types/ts3.4/IVSRealTimeClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -21
- 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 +198 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1512
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -353
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -473
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListIngestConfigurations } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListIngestConfigurationsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListIngestConfigurations", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListIngestConfigurationsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListIngestConfigurationsCommand)
|
|
20
|
-
.de(de_ListIngestConfigurationsCommand)
|
|
14
|
+
.sc(ListIngestConfigurations)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListParticipantEvents } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListParticipantEventsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListParticipantEvents", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListParticipantEventsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListParticipantEventsCommand)
|
|
20
|
-
.de(de_ListParticipantEventsCommand)
|
|
14
|
+
.sc(ListParticipantEvents)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListParticipantReplicas } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListParticipantReplicasCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListParticipantReplicas", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListParticipantReplicasCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListParticipantReplicasCommand)
|
|
20
|
-
.de(de_ListParticipantReplicasCommand)
|
|
14
|
+
.sc(ListParticipantReplicas)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListParticipants } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListParticipantsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListParticipants", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListParticipantsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListParticipantsCommand)
|
|
20
|
-
.de(de_ListParticipantsCommand)
|
|
14
|
+
.sc(ListParticipants)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListPublicKeys } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListPublicKeysCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListPublicKeys", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListPublicKeysCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListPublicKeysCommand)
|
|
20
|
-
.de(de_ListPublicKeysCommand)
|
|
14
|
+
.sc(ListPublicKeys)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListStageSessions } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListStageSessionsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListStageSessions", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListStageSessionsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListStageSessionsCommand)
|
|
20
|
-
.de(de_ListStageSessionsCommand)
|
|
14
|
+
.sc(ListStageSessions)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListStages } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListStagesCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListStages", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListStagesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListStagesCommand)
|
|
20
|
-
.de(de_ListStagesCommand)
|
|
14
|
+
.sc(ListStages)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListStorageConfigurations } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListStorageConfigurationsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListStorageConfigurations", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListStorageConfigurationsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListStorageConfigurationsCommand)
|
|
20
|
-
.de(de_ListStorageConfigurationsCommand)
|
|
14
|
+
.sc(ListStorageConfigurations)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListTagsForResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "ListTagsForResource", {})
|
|
17
13
|
.n("IVSRealTimeClient", "ListTagsForResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListTagsForResourceCommand)
|
|
20
|
-
.de(de_ListTagsForResourceCommand)
|
|
14
|
+
.sc(ListTagsForResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { StartComposition } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class StartCompositionCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "StartComposition", {})
|
|
17
13
|
.n("IVSRealTimeClient", "StartCompositionCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_StartCompositionCommand)
|
|
20
|
-
.de(de_StartCompositionCommand)
|
|
14
|
+
.sc(StartComposition)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { StartParticipantReplication } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class StartParticipantReplicationCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "StartParticipantReplication", {})
|
|
17
13
|
.n("IVSRealTimeClient", "StartParticipantReplicationCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_StartParticipantReplicationCommand)
|
|
20
|
-
.de(de_StartParticipantReplicationCommand)
|
|
14
|
+
.sc(StartParticipantReplication)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { StopComposition } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class StopCompositionCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "StopComposition", {})
|
|
17
13
|
.n("IVSRealTimeClient", "StopCompositionCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_StopCompositionCommand)
|
|
20
|
-
.de(de_StopCompositionCommand)
|
|
14
|
+
.sc(StopComposition)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { StopParticipantReplication } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class StopParticipantReplicationCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "StopParticipantReplication", {})
|
|
17
13
|
.n("IVSRealTimeClient", "StopParticipantReplicationCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_StopParticipantReplicationCommand)
|
|
20
|
-
.de(de_StopParticipantReplicationCommand)
|
|
14
|
+
.sc(StopParticipantReplication)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { TagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class TagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "TagResource", {})
|
|
17
13
|
.n("IVSRealTimeClient", "TagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_TagResourceCommand)
|
|
20
|
-
.de(de_TagResourceCommand)
|
|
14
|
+
.sc(TagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UntagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UntagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "UntagResource", {})
|
|
17
13
|
.n("IVSRealTimeClient", "UntagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UntagResourceCommand)
|
|
20
|
-
.de(de_UntagResourceCommand)
|
|
14
|
+
.sc(UntagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_UpdateIngestConfigurationCommand, se_UpdateIngestConfigurationCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { UpdateIngestConfiguration } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class UpdateIngestConfigurationCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("AmazonInteractiveVideoServiceRealTime", "UpdateIngestConfiguration", {})
|
|
18
13
|
.n("IVSRealTimeClient", "UpdateIngestConfigurationCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_UpdateIngestConfigurationCommand)
|
|
21
|
-
.de(de_UpdateIngestConfigurationCommand)
|
|
14
|
+
.sc(UpdateIngestConfiguration)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateStage } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateStageCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AmazonInteractiveVideoServiceRealTime", "UpdateStage", {})
|
|
17
13
|
.n("IVSRealTimeClient", "UpdateStageCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateStageCommand)
|
|
20
|
-
.de(de_UpdateStageCommand)
|
|
14
|
+
.sc(UpdateStage)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
import { IVSRealTimeServiceException as __BaseException } from "./IVSRealTimeServiceException";
|
|
3
2
|
export class AccessDeniedException extends __BaseException {
|
|
4
3
|
name = "AccessDeniedException";
|
|
@@ -337,39 +336,3 @@ export const ParticipantRecordingFilterByRecordingState = {
|
|
|
337
336
|
STOPPED: "STOPPED",
|
|
338
337
|
STOPPING: "STOPPING",
|
|
339
338
|
};
|
|
340
|
-
export const IngestConfigurationFilterSensitiveLog = (obj) => ({
|
|
341
|
-
...obj,
|
|
342
|
-
...(obj.streamKey && { streamKey: SENSITIVE_STRING }),
|
|
343
|
-
});
|
|
344
|
-
export const CreateIngestConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
...(obj.ingestConfiguration && {
|
|
347
|
-
ingestConfiguration: IngestConfigurationFilterSensitiveLog(obj.ingestConfiguration),
|
|
348
|
-
}),
|
|
349
|
-
});
|
|
350
|
-
export const ParticipantTokenFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
...(obj.token && { token: SENSITIVE_STRING }),
|
|
353
|
-
});
|
|
354
|
-
export const CreateParticipantTokenResponseFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
...(obj.participantToken && { participantToken: ParticipantTokenFilterSensitiveLog(obj.participantToken) }),
|
|
357
|
-
});
|
|
358
|
-
export const CreateStageResponseFilterSensitiveLog = (obj) => ({
|
|
359
|
-
...obj,
|
|
360
|
-
...(obj.participantTokens && {
|
|
361
|
-
participantTokens: obj.participantTokens.map((item) => ParticipantTokenFilterSensitiveLog(item)),
|
|
362
|
-
}),
|
|
363
|
-
});
|
|
364
|
-
export const GetIngestConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
365
|
-
...obj,
|
|
366
|
-
...(obj.ingestConfiguration && {
|
|
367
|
-
ingestConfiguration: IngestConfigurationFilterSensitiveLog(obj.ingestConfiguration),
|
|
368
|
-
}),
|
|
369
|
-
});
|
|
370
|
-
export const UpdateIngestConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
371
|
-
...obj,
|
|
372
|
-
...(obj.ingestConfiguration && {
|
|
373
|
-
ingestConfiguration: IngestConfigurationFilterSensitiveLog(obj.ingestConfiguration),
|
|
374
|
-
}),
|
|
375
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.ivsrealtime" }),
|
|
25
27
|
serviceId: config?.serviceId ?? "IVS RealTime",
|
|
26
28
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
29
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|