@aws-sdk/client-ivs-realtime 3.490.0 → 3.496.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 (48) hide show
  1. package/dist-cjs/IVSRealTime.js +1 -65
  2. package/dist-cjs/IVSRealTimeClient.js +1 -43
  3. package/dist-cjs/commands/CreateEncoderConfigurationCommand.js +1 -28
  4. package/dist-cjs/commands/CreateParticipantTokenCommand.js +1 -29
  5. package/dist-cjs/commands/CreateStageCommand.js +1 -29
  6. package/dist-cjs/commands/CreateStorageConfigurationCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteEncoderConfigurationCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteStageCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteStorageConfigurationCommand.js +1 -28
  10. package/dist-cjs/commands/DisconnectParticipantCommand.js +1 -28
  11. package/dist-cjs/commands/GetCompositionCommand.js +1 -28
  12. package/dist-cjs/commands/GetEncoderConfigurationCommand.js +1 -28
  13. package/dist-cjs/commands/GetParticipantCommand.js +1 -28
  14. package/dist-cjs/commands/GetStageCommand.js +1 -28
  15. package/dist-cjs/commands/GetStageSessionCommand.js +1 -28
  16. package/dist-cjs/commands/GetStorageConfigurationCommand.js +1 -28
  17. package/dist-cjs/commands/ListCompositionsCommand.js +1 -28
  18. package/dist-cjs/commands/ListEncoderConfigurationsCommand.js +1 -28
  19. package/dist-cjs/commands/ListParticipantEventsCommand.js +1 -28
  20. package/dist-cjs/commands/ListParticipantsCommand.js +1 -28
  21. package/dist-cjs/commands/ListStageSessionsCommand.js +1 -28
  22. package/dist-cjs/commands/ListStagesCommand.js +1 -28
  23. package/dist-cjs/commands/ListStorageConfigurationsCommand.js +1 -28
  24. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  25. package/dist-cjs/commands/StartCompositionCommand.js +1 -28
  26. package/dist-cjs/commands/StopCompositionCommand.js +1 -28
  27. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  28. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  29. package/dist-cjs/commands/UpdateStageCommand.js +1 -28
  30. package/dist-cjs/commands/index.js +1 -30
  31. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  32. package/dist-cjs/extensionConfiguration.js +1 -2
  33. package/dist-cjs/index.js +2861 -11
  34. package/dist-cjs/models/IVSRealTimeServiceException.js +1 -12
  35. package/dist-cjs/models/index.js +1 -4
  36. package/dist-cjs/models/models_0.js +1 -162
  37. package/dist-cjs/pagination/Interfaces.js +1 -2
  38. package/dist-cjs/pagination/ListCompositionsPaginator.js +1 -7
  39. package/dist-cjs/pagination/ListEncoderConfigurationsPaginator.js +1 -7
  40. package/dist-cjs/pagination/ListParticipantEventsPaginator.js +1 -7
  41. package/dist-cjs/pagination/ListParticipantsPaginator.js +1 -7
  42. package/dist-cjs/pagination/ListStageSessionsPaginator.js +1 -7
  43. package/dist-cjs/pagination/ListStagesPaginator.js +1 -7
  44. package/dist-cjs/pagination/ListStorageConfigurationsPaginator.js +1 -7
  45. package/dist-cjs/pagination/index.js +1 -11
  46. package/dist-cjs/protocols/Aws_restJson1.js +1 -1932
  47. package/dist-cjs/runtimeExtensions.js +1 -22
  48. package/package.json +40 -40
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IVSRealTimeServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class IVSRealTimeServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, IVSRealTimeServiceException.prototype);
10
- }
11
- }
12
- exports.IVSRealTimeServiceException = IVSRealTimeServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,162 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateStageResponseFilterSensitiveLog = exports.CreateParticipantTokenResponseFilterSensitiveLog = exports.ParticipantTokenFilterSensitiveLog = exports.EventName = exports.EventErrorCode = exports.ParticipantState = exports.CompositionState = exports.DestinationState = exports.RecordingConfigurationFormat = exports.ParticipantTokenCapability = exports.ValidationException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.PendingVerification = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const IVSRealTimeServiceException_1 = require("./IVSRealTimeServiceException");
6
- class AccessDeniedException extends IVSRealTimeServiceException_1.IVSRealTimeServiceException {
7
- constructor(opts) {
8
- super({
9
- name: "AccessDeniedException",
10
- $fault: "client",
11
- ...opts,
12
- });
13
- this.name = "AccessDeniedException";
14
- this.$fault = "client";
15
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
16
- this.exceptionMessage = opts.exceptionMessage;
17
- }
18
- }
19
- exports.AccessDeniedException = AccessDeniedException;
20
- class ConflictException extends IVSRealTimeServiceException_1.IVSRealTimeServiceException {
21
- constructor(opts) {
22
- super({
23
- name: "ConflictException",
24
- $fault: "client",
25
- ...opts,
26
- });
27
- this.name = "ConflictException";
28
- this.$fault = "client";
29
- Object.setPrototypeOf(this, ConflictException.prototype);
30
- this.exceptionMessage = opts.exceptionMessage;
31
- }
32
- }
33
- exports.ConflictException = ConflictException;
34
- class InternalServerException extends IVSRealTimeServiceException_1.IVSRealTimeServiceException {
35
- constructor(opts) {
36
- super({
37
- name: "InternalServerException",
38
- $fault: "server",
39
- ...opts,
40
- });
41
- this.name = "InternalServerException";
42
- this.$fault = "server";
43
- Object.setPrototypeOf(this, InternalServerException.prototype);
44
- this.exceptionMessage = opts.exceptionMessage;
45
- }
46
- }
47
- exports.InternalServerException = InternalServerException;
48
- class PendingVerification extends IVSRealTimeServiceException_1.IVSRealTimeServiceException {
49
- constructor(opts) {
50
- super({
51
- name: "PendingVerification",
52
- $fault: "client",
53
- ...opts,
54
- });
55
- this.name = "PendingVerification";
56
- this.$fault = "client";
57
- Object.setPrototypeOf(this, PendingVerification.prototype);
58
- this.exceptionMessage = opts.exceptionMessage;
59
- }
60
- }
61
- exports.PendingVerification = PendingVerification;
62
- class ResourceNotFoundException extends IVSRealTimeServiceException_1.IVSRealTimeServiceException {
63
- constructor(opts) {
64
- super({
65
- name: "ResourceNotFoundException",
66
- $fault: "client",
67
- ...opts,
68
- });
69
- this.name = "ResourceNotFoundException";
70
- this.$fault = "client";
71
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
72
- this.exceptionMessage = opts.exceptionMessage;
73
- }
74
- }
75
- exports.ResourceNotFoundException = ResourceNotFoundException;
76
- class ServiceQuotaExceededException extends IVSRealTimeServiceException_1.IVSRealTimeServiceException {
77
- constructor(opts) {
78
- super({
79
- name: "ServiceQuotaExceededException",
80
- $fault: "client",
81
- ...opts,
82
- });
83
- this.name = "ServiceQuotaExceededException";
84
- this.$fault = "client";
85
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
86
- this.exceptionMessage = opts.exceptionMessage;
87
- }
88
- }
89
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
90
- class ValidationException extends IVSRealTimeServiceException_1.IVSRealTimeServiceException {
91
- constructor(opts) {
92
- super({
93
- name: "ValidationException",
94
- $fault: "client",
95
- ...opts,
96
- });
97
- this.name = "ValidationException";
98
- this.$fault = "client";
99
- Object.setPrototypeOf(this, ValidationException.prototype);
100
- this.exceptionMessage = opts.exceptionMessage;
101
- }
102
- }
103
- exports.ValidationException = ValidationException;
104
- exports.ParticipantTokenCapability = {
105
- PUBLISH: "PUBLISH",
106
- SUBSCRIBE: "SUBSCRIBE",
107
- };
108
- exports.RecordingConfigurationFormat = {
109
- HLS: "HLS",
110
- };
111
- exports.DestinationState = {
112
- ACTIVE: "ACTIVE",
113
- FAILED: "FAILED",
114
- RECONNECTING: "RECONNECTING",
115
- STARTING: "STARTING",
116
- STOPPED: "STOPPED",
117
- STOPPING: "STOPPING",
118
- };
119
- exports.CompositionState = {
120
- ACTIVE: "ACTIVE",
121
- FAILED: "FAILED",
122
- STARTING: "STARTING",
123
- STOPPED: "STOPPED",
124
- STOPPING: "STOPPING",
125
- };
126
- exports.ParticipantState = {
127
- CONNECTED: "CONNECTED",
128
- DISCONNECTED: "DISCONNECTED",
129
- };
130
- exports.EventErrorCode = {
131
- INSUFFICIENT_CAPABILITIES: "INSUFFICIENT_CAPABILITIES",
132
- PUBLISHER_NOT_FOUND: "PUBLISHER_NOT_FOUND",
133
- QUOTA_EXCEEDED: "QUOTA_EXCEEDED",
134
- };
135
- exports.EventName = {
136
- JOINED: "JOINED",
137
- JOIN_ERROR: "JOIN_ERROR",
138
- LEFT: "LEFT",
139
- PUBLISH_ERROR: "PUBLISH_ERROR",
140
- PUBLISH_STARTED: "PUBLISH_STARTED",
141
- PUBLISH_STOPPED: "PUBLISH_STOPPED",
142
- SUBSCRIBE_ERROR: "SUBSCRIBE_ERROR",
143
- SUBSCRIBE_STARTED: "SUBSCRIBE_STARTED",
144
- SUBSCRIBE_STOPPED: "SUBSCRIBE_STOPPED",
145
- };
146
- const ParticipantTokenFilterSensitiveLog = (obj) => ({
147
- ...obj,
148
- ...(obj.token && { token: smithy_client_1.SENSITIVE_STRING }),
149
- });
150
- exports.ParticipantTokenFilterSensitiveLog = ParticipantTokenFilterSensitiveLog;
151
- const CreateParticipantTokenResponseFilterSensitiveLog = (obj) => ({
152
- ...obj,
153
- ...(obj.participantToken && { participantToken: (0, exports.ParticipantTokenFilterSensitiveLog)(obj.participantToken) }),
154
- });
155
- exports.CreateParticipantTokenResponseFilterSensitiveLog = CreateParticipantTokenResponseFilterSensitiveLog;
156
- const CreateStageResponseFilterSensitiveLog = (obj) => ({
157
- ...obj,
158
- ...(obj.participantTokens && {
159
- participantTokens: obj.participantTokens.map((item) => (0, exports.ParticipantTokenFilterSensitiveLog)(item)),
160
- }),
161
- });
162
- exports.CreateStageResponseFilterSensitiveLog = CreateStageResponseFilterSensitiveLog;
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListCompositions = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListCompositionsCommand_1 = require("../commands/ListCompositionsCommand");
6
- const IVSRealTimeClient_1 = require("../IVSRealTimeClient");
7
- exports.paginateListCompositions = (0, core_1.createPaginator)(IVSRealTimeClient_1.IVSRealTimeClient, ListCompositionsCommand_1.ListCompositionsCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListEncoderConfigurations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListEncoderConfigurationsCommand_1 = require("../commands/ListEncoderConfigurationsCommand");
6
- const IVSRealTimeClient_1 = require("../IVSRealTimeClient");
7
- exports.paginateListEncoderConfigurations = (0, core_1.createPaginator)(IVSRealTimeClient_1.IVSRealTimeClient, ListEncoderConfigurationsCommand_1.ListEncoderConfigurationsCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListParticipantEvents = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListParticipantEventsCommand_1 = require("../commands/ListParticipantEventsCommand");
6
- const IVSRealTimeClient_1 = require("../IVSRealTimeClient");
7
- exports.paginateListParticipantEvents = (0, core_1.createPaginator)(IVSRealTimeClient_1.IVSRealTimeClient, ListParticipantEventsCommand_1.ListParticipantEventsCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListParticipants = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListParticipantsCommand_1 = require("../commands/ListParticipantsCommand");
6
- const IVSRealTimeClient_1 = require("../IVSRealTimeClient");
7
- exports.paginateListParticipants = (0, core_1.createPaginator)(IVSRealTimeClient_1.IVSRealTimeClient, ListParticipantsCommand_1.ListParticipantsCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListStageSessions = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListStageSessionsCommand_1 = require("../commands/ListStageSessionsCommand");
6
- const IVSRealTimeClient_1 = require("../IVSRealTimeClient");
7
- exports.paginateListStageSessions = (0, core_1.createPaginator)(IVSRealTimeClient_1.IVSRealTimeClient, ListStageSessionsCommand_1.ListStageSessionsCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListStages = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListStagesCommand_1 = require("../commands/ListStagesCommand");
6
- const IVSRealTimeClient_1 = require("../IVSRealTimeClient");
7
- exports.paginateListStages = (0, core_1.createPaginator)(IVSRealTimeClient_1.IVSRealTimeClient, ListStagesCommand_1.ListStagesCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,7 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListStorageConfigurations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListStorageConfigurationsCommand_1 = require("../commands/ListStorageConfigurationsCommand");
6
- const IVSRealTimeClient_1 = require("../IVSRealTimeClient");
7
- exports.paginateListStorageConfigurations = (0, core_1.createPaginator)(IVSRealTimeClient_1.IVSRealTimeClient, ListStorageConfigurationsCommand_1.ListStorageConfigurationsCommand, "nextToken", "nextToken", "maxResults");
1
+ module.exports = require("../index.js");
@@ -1,11 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Interfaces"), exports);
5
- tslib_1.__exportStar(require("./ListCompositionsPaginator"), exports);
6
- tslib_1.__exportStar(require("./ListEncoderConfigurationsPaginator"), exports);
7
- tslib_1.__exportStar(require("./ListParticipantEventsPaginator"), exports);
8
- tslib_1.__exportStar(require("./ListParticipantsPaginator"), exports);
9
- tslib_1.__exportStar(require("./ListStageSessionsPaginator"), exports);
10
- tslib_1.__exportStar(require("./ListStagesPaginator"), exports);
11
- tslib_1.__exportStar(require("./ListStorageConfigurationsPaginator"), exports);
1
+ module.exports = require("../index.js");