@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.
Files changed (63) hide show
  1. package/dist-cjs/index.js +1861 -1839
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/IVSRealTimeClient.js +2 -0
  4. package/dist-es/commands/CreateEncoderConfigurationCommand.js +3 -9
  5. package/dist-es/commands/CreateIngestConfigurationCommand.js +3 -10
  6. package/dist-es/commands/CreateParticipantTokenCommand.js +3 -10
  7. package/dist-es/commands/CreateStageCommand.js +3 -10
  8. package/dist-es/commands/CreateStorageConfigurationCommand.js +3 -9
  9. package/dist-es/commands/DeleteEncoderConfigurationCommand.js +3 -9
  10. package/dist-es/commands/DeleteIngestConfigurationCommand.js +3 -9
  11. package/dist-es/commands/DeletePublicKeyCommand.js +3 -9
  12. package/dist-es/commands/DeleteStageCommand.js +3 -9
  13. package/dist-es/commands/DeleteStorageConfigurationCommand.js +3 -9
  14. package/dist-es/commands/DisconnectParticipantCommand.js +3 -9
  15. package/dist-es/commands/GetCompositionCommand.js +3 -9
  16. package/dist-es/commands/GetEncoderConfigurationCommand.js +3 -9
  17. package/dist-es/commands/GetIngestConfigurationCommand.js +3 -10
  18. package/dist-es/commands/GetParticipantCommand.js +3 -9
  19. package/dist-es/commands/GetPublicKeyCommand.js +3 -9
  20. package/dist-es/commands/GetStageCommand.js +3 -9
  21. package/dist-es/commands/GetStageSessionCommand.js +3 -9
  22. package/dist-es/commands/GetStorageConfigurationCommand.js +3 -9
  23. package/dist-es/commands/ImportPublicKeyCommand.js +3 -9
  24. package/dist-es/commands/ListCompositionsCommand.js +3 -9
  25. package/dist-es/commands/ListEncoderConfigurationsCommand.js +3 -9
  26. package/dist-es/commands/ListIngestConfigurationsCommand.js +3 -9
  27. package/dist-es/commands/ListParticipantEventsCommand.js +3 -9
  28. package/dist-es/commands/ListParticipantReplicasCommand.js +3 -9
  29. package/dist-es/commands/ListParticipantsCommand.js +3 -9
  30. package/dist-es/commands/ListPublicKeysCommand.js +3 -9
  31. package/dist-es/commands/ListStageSessionsCommand.js +3 -9
  32. package/dist-es/commands/ListStagesCommand.js +3 -9
  33. package/dist-es/commands/ListStorageConfigurationsCommand.js +3 -9
  34. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  35. package/dist-es/commands/StartCompositionCommand.js +3 -9
  36. package/dist-es/commands/StartParticipantReplicationCommand.js +3 -9
  37. package/dist-es/commands/StopCompositionCommand.js +3 -9
  38. package/dist-es/commands/StopParticipantReplicationCommand.js +3 -9
  39. package/dist-es/commands/TagResourceCommand.js +3 -9
  40. package/dist-es/commands/UntagResourceCommand.js +3 -9
  41. package/dist-es/commands/UpdateIngestConfigurationCommand.js +3 -10
  42. package/dist-es/commands/UpdateStageCommand.js +3 -9
  43. package/dist-es/models/models_0.js +0 -37
  44. package/dist-es/runtimeConfig.shared.js +2 -0
  45. package/dist-es/schemas/schemas_0.js +1778 -0
  46. package/dist-types/IVSRealTimeClient.d.ts +10 -1
  47. package/dist-types/models/models_0.d.ts +0 -28
  48. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  49. package/dist-types/runtimeConfig.d.ts +1 -0
  50. package/dist-types/runtimeConfig.native.d.ts +1 -0
  51. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  52. package/dist-types/schemas/schemas_0.d.ts +192 -0
  53. package/dist-types/ts3.4/IVSRealTimeClient.d.ts +4 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +0 -21
  55. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  56. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  57. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  58. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  59. package/dist-types/ts3.4/schemas/schemas_0.d.ts +198 -0
  60. package/package.json +33 -34
  61. package/dist-es/protocols/Aws_restJson1.js +0 -1512
  62. package/dist-types/protocols/Aws_restJson1.d.ts +0 -353
  63. 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 { de_ListIngestConfigurationsCommand, se_ListIngestConfigurationsCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_ListParticipantEventsCommand, se_ListParticipantEventsCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_ListParticipantReplicasCommand, se_ListParticipantReplicasCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_ListParticipantsCommand, se_ListParticipantsCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_ListPublicKeysCommand, se_ListPublicKeysCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_ListStageSessionsCommand, se_ListStageSessionsCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_ListStagesCommand, se_ListStagesCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_ListStorageConfigurationsCommand, se_ListStorageConfigurationsCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_StartCompositionCommand, se_StartCompositionCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_StartParticipantReplicationCommand, se_StartParticipantReplicationCommand, } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_StopCompositionCommand, se_StopCompositionCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_StopParticipantReplicationCommand, se_StopParticipantReplicationCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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 { UpdateIngestConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
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
- .f(void 0, UpdateIngestConfigurationResponseFilterSensitiveLog)
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 { de_UpdateStageCommand, se_UpdateStageCommand } from "../protocols/Aws_restJson1";
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
- .f(void 0, void 0)
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,