@aws-sdk/client-ivs-realtime 3.1075.0 → 3.1077.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 +1733 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/IVSRealTimeServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -211
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1297
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultIVSRealTimeHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "ivs",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultIVSRealTimeHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1512 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://ivsrealtime-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://ivsrealtime-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://ivsrealtime.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://ivsrealtime.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class IVSRealTimeServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, IVSRealTimeServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class AccessDeniedException extends IVSRealTimeServiceException {
|
|
141
|
+
name = "AccessDeniedException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
accessControlAllowOrigin;
|
|
144
|
+
accessControlExposeHeaders;
|
|
145
|
+
cacheControl;
|
|
146
|
+
contentSecurityPolicy;
|
|
147
|
+
strictTransportSecurity;
|
|
148
|
+
xContentTypeOptions;
|
|
149
|
+
xFrameOptions;
|
|
150
|
+
xAmznErrorType;
|
|
151
|
+
exceptionMessage;
|
|
152
|
+
constructor(opts) {
|
|
153
|
+
super({
|
|
154
|
+
name: "AccessDeniedException",
|
|
155
|
+
$fault: "client",
|
|
156
|
+
...opts,
|
|
157
|
+
});
|
|
158
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
159
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
160
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
161
|
+
this.cacheControl = opts.cacheControl;
|
|
162
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
163
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
164
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
165
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
166
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
167
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
class ConflictException extends IVSRealTimeServiceException {
|
|
171
|
+
name = "ConflictException";
|
|
172
|
+
$fault = "client";
|
|
173
|
+
accessControlAllowOrigin;
|
|
174
|
+
accessControlExposeHeaders;
|
|
175
|
+
cacheControl;
|
|
176
|
+
contentSecurityPolicy;
|
|
177
|
+
strictTransportSecurity;
|
|
178
|
+
xContentTypeOptions;
|
|
179
|
+
xFrameOptions;
|
|
180
|
+
xAmznErrorType;
|
|
181
|
+
exceptionMessage;
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "ConflictException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
189
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
190
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
191
|
+
this.cacheControl = opts.cacheControl;
|
|
192
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
193
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
194
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
195
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
196
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
197
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
class InternalServerException extends IVSRealTimeServiceException {
|
|
201
|
+
name = "InternalServerException";
|
|
202
|
+
$fault = "server";
|
|
203
|
+
accessControlAllowOrigin;
|
|
204
|
+
accessControlExposeHeaders;
|
|
205
|
+
cacheControl;
|
|
206
|
+
contentSecurityPolicy;
|
|
207
|
+
strictTransportSecurity;
|
|
208
|
+
xContentTypeOptions;
|
|
209
|
+
xFrameOptions;
|
|
210
|
+
xAmznErrorType;
|
|
211
|
+
exceptionMessage;
|
|
212
|
+
constructor(opts) {
|
|
213
|
+
super({
|
|
214
|
+
name: "InternalServerException",
|
|
215
|
+
$fault: "server",
|
|
216
|
+
...opts,
|
|
217
|
+
});
|
|
218
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
219
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
220
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
221
|
+
this.cacheControl = opts.cacheControl;
|
|
222
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
223
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
224
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
225
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
226
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
227
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
class PendingVerification extends IVSRealTimeServiceException {
|
|
231
|
+
name = "PendingVerification";
|
|
232
|
+
$fault = "client";
|
|
233
|
+
accessControlAllowOrigin;
|
|
234
|
+
accessControlExposeHeaders;
|
|
235
|
+
cacheControl;
|
|
236
|
+
contentSecurityPolicy;
|
|
237
|
+
strictTransportSecurity;
|
|
238
|
+
xContentTypeOptions;
|
|
239
|
+
xFrameOptions;
|
|
240
|
+
xAmznErrorType;
|
|
241
|
+
exceptionMessage;
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "PendingVerification",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, PendingVerification.prototype);
|
|
249
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
250
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
251
|
+
this.cacheControl = opts.cacheControl;
|
|
252
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
253
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
254
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
255
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
256
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
257
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
class ResourceNotFoundException extends IVSRealTimeServiceException {
|
|
261
|
+
name = "ResourceNotFoundException";
|
|
262
|
+
$fault = "client";
|
|
263
|
+
accessControlAllowOrigin;
|
|
264
|
+
accessControlExposeHeaders;
|
|
265
|
+
cacheControl;
|
|
266
|
+
contentSecurityPolicy;
|
|
267
|
+
strictTransportSecurity;
|
|
268
|
+
xContentTypeOptions;
|
|
269
|
+
xFrameOptions;
|
|
270
|
+
xAmznErrorType;
|
|
271
|
+
exceptionMessage;
|
|
272
|
+
constructor(opts) {
|
|
273
|
+
super({
|
|
274
|
+
name: "ResourceNotFoundException",
|
|
275
|
+
$fault: "client",
|
|
276
|
+
...opts,
|
|
277
|
+
});
|
|
278
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
279
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
280
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
281
|
+
this.cacheControl = opts.cacheControl;
|
|
282
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
283
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
284
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
285
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
286
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
287
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
class ServiceQuotaExceededException extends IVSRealTimeServiceException {
|
|
291
|
+
name = "ServiceQuotaExceededException";
|
|
292
|
+
$fault = "client";
|
|
293
|
+
accessControlAllowOrigin;
|
|
294
|
+
accessControlExposeHeaders;
|
|
295
|
+
cacheControl;
|
|
296
|
+
contentSecurityPolicy;
|
|
297
|
+
strictTransportSecurity;
|
|
298
|
+
xContentTypeOptions;
|
|
299
|
+
xFrameOptions;
|
|
300
|
+
xAmznErrorType;
|
|
301
|
+
exceptionMessage;
|
|
302
|
+
constructor(opts) {
|
|
303
|
+
super({
|
|
304
|
+
name: "ServiceQuotaExceededException",
|
|
305
|
+
$fault: "client",
|
|
306
|
+
...opts,
|
|
307
|
+
});
|
|
308
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
309
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
310
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
311
|
+
this.cacheControl = opts.cacheControl;
|
|
312
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
313
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
314
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
315
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
316
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
317
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
class ValidationException extends IVSRealTimeServiceException {
|
|
321
|
+
name = "ValidationException";
|
|
322
|
+
$fault = "client";
|
|
323
|
+
accessControlAllowOrigin;
|
|
324
|
+
accessControlExposeHeaders;
|
|
325
|
+
cacheControl;
|
|
326
|
+
contentSecurityPolicy;
|
|
327
|
+
strictTransportSecurity;
|
|
328
|
+
xContentTypeOptions;
|
|
329
|
+
xFrameOptions;
|
|
330
|
+
xAmznErrorType;
|
|
331
|
+
exceptionMessage;
|
|
332
|
+
constructor(opts) {
|
|
333
|
+
super({
|
|
334
|
+
name: "ValidationException",
|
|
335
|
+
$fault: "client",
|
|
336
|
+
...opts,
|
|
337
|
+
});
|
|
338
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
339
|
+
this.accessControlAllowOrigin = opts.accessControlAllowOrigin;
|
|
340
|
+
this.accessControlExposeHeaders = opts.accessControlExposeHeaders;
|
|
341
|
+
this.cacheControl = opts.cacheControl;
|
|
342
|
+
this.contentSecurityPolicy = opts.contentSecurityPolicy;
|
|
343
|
+
this.strictTransportSecurity = opts.strictTransportSecurity;
|
|
344
|
+
this.xContentTypeOptions = opts.xContentTypeOptions;
|
|
345
|
+
this.xFrameOptions = opts.xFrameOptions;
|
|
346
|
+
this.xAmznErrorType = opts.xAmznErrorType;
|
|
347
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
const _ACAO = "Access-Control-Allow-Origin";
|
|
352
|
+
const _ACEH = "Access-Control-Expose-Headers";
|
|
353
|
+
const _ADE = "AccessDeniedException";
|
|
354
|
+
const _APRC = "AutoParticipantRecordingConfiguration";
|
|
355
|
+
const _C = "Composition";
|
|
356
|
+
const _CC = "Cache-Control";
|
|
357
|
+
const _CDC = "ChannelDestinationConfiguration";
|
|
358
|
+
const _CE = "ConflictException";
|
|
359
|
+
const _CEC = "CreateEncoderConfiguration";
|
|
360
|
+
const _CECR = "CreateEncoderConfigurationRequest";
|
|
361
|
+
const _CECRr = "CreateEncoderConfigurationResponse";
|
|
362
|
+
const _CIC = "CreateIngestConfiguration";
|
|
363
|
+
const _CICR = "CreateIngestConfigurationRequest";
|
|
364
|
+
const _CICRr = "CreateIngestConfigurationResponse";
|
|
365
|
+
const _CPT = "CreateParticipantToken";
|
|
366
|
+
const _CPTR = "CreateParticipantTokenRequest";
|
|
367
|
+
const _CPTRr = "CreateParticipantTokenResponse";
|
|
368
|
+
const _CRHC = "CompositionRecordingHlsConfiguration";
|
|
369
|
+
const _CS = "CompositionSummary";
|
|
370
|
+
const _CSC = "CreateStorageConfiguration";
|
|
371
|
+
const _CSCR = "CreateStorageConfigurationRequest";
|
|
372
|
+
const _CSCRr = "CreateStorageConfigurationResponse";
|
|
373
|
+
const _CSL = "CompositionSummaryList";
|
|
374
|
+
const _CSP = "Content-Security-Policy";
|
|
375
|
+
const _CSR = "CreateStageRequest";
|
|
376
|
+
const _CSRr = "CreateStageResponse";
|
|
377
|
+
const _CSr = "CreateStage";
|
|
378
|
+
const _CTC = "CompositionThumbnailConfiguration";
|
|
379
|
+
const _CTCL = "CompositionThumbnailConfigurationList";
|
|
380
|
+
const _D = "Destination";
|
|
381
|
+
const _DC = "DestinationConfiguration";
|
|
382
|
+
const _DCL = "DestinationConfigurationList";
|
|
383
|
+
const _DD = "DestinationDetail";
|
|
384
|
+
const _DEC = "DeleteEncoderConfiguration";
|
|
385
|
+
const _DECR = "DeleteEncoderConfigurationRequest";
|
|
386
|
+
const _DECRe = "DeleteEncoderConfigurationResponse";
|
|
387
|
+
const _DIC = "DeleteIngestConfiguration";
|
|
388
|
+
const _DICR = "DeleteIngestConfigurationRequest";
|
|
389
|
+
const _DICRe = "DeleteIngestConfigurationResponse";
|
|
390
|
+
const _DL = "DestinationList";
|
|
391
|
+
const _DP = "DisconnectParticipant";
|
|
392
|
+
const _DPK = "DeletePublicKey";
|
|
393
|
+
const _DPKR = "DeletePublicKeyRequest";
|
|
394
|
+
const _DPKRe = "DeletePublicKeyResponse";
|
|
395
|
+
const _DPR = "DisconnectParticipantRequest";
|
|
396
|
+
const _DPRi = "DisconnectParticipantResponse";
|
|
397
|
+
const _DS = "DestinationSummary";
|
|
398
|
+
const _DSC = "DeleteStorageConfiguration";
|
|
399
|
+
const _DSCR = "DeleteStorageConfigurationRequest";
|
|
400
|
+
const _DSCRe = "DeleteStorageConfigurationResponse";
|
|
401
|
+
const _DSL = "DestinationSummaryList";
|
|
402
|
+
const _DSR = "DeleteStageRequest";
|
|
403
|
+
const _DSRe = "DeleteStageResponse";
|
|
404
|
+
const _DSe = "DeleteStage";
|
|
405
|
+
const _E = "Event";
|
|
406
|
+
const _EC = "EncoderConfiguration";
|
|
407
|
+
const _ECS = "EncoderConfigurationSummary";
|
|
408
|
+
const _ECSL = "EncoderConfigurationSummaryList";
|
|
409
|
+
const _EL = "EventList";
|
|
410
|
+
const _EPT = "ExchangedParticipantToken";
|
|
411
|
+
const _GC = "GridConfiguration";
|
|
412
|
+
const _GCR = "GetCompositionRequest";
|
|
413
|
+
const _GCRe = "GetCompositionResponse";
|
|
414
|
+
const _GCe = "GetComposition";
|
|
415
|
+
const _GEC = "GetEncoderConfiguration";
|
|
416
|
+
const _GECR = "GetEncoderConfigurationRequest";
|
|
417
|
+
const _GECRe = "GetEncoderConfigurationResponse";
|
|
418
|
+
const _GIC = "GetIngestConfiguration";
|
|
419
|
+
const _GICR = "GetIngestConfigurationRequest";
|
|
420
|
+
const _GICRe = "GetIngestConfigurationResponse";
|
|
421
|
+
const _GP = "GetParticipant";
|
|
422
|
+
const _GPK = "GetPublicKey";
|
|
423
|
+
const _GPKR = "GetPublicKeyRequest";
|
|
424
|
+
const _GPKRe = "GetPublicKeyResponse";
|
|
425
|
+
const _GPR = "GetParticipantRequest";
|
|
426
|
+
const _GPRe = "GetParticipantResponse";
|
|
427
|
+
const _GS = "GetStage";
|
|
428
|
+
const _GSC = "GetStorageConfiguration";
|
|
429
|
+
const _GSCR = "GetStorageConfigurationRequest";
|
|
430
|
+
const _GSCRe = "GetStorageConfigurationResponse";
|
|
431
|
+
const _GSR = "GetStageRequest";
|
|
432
|
+
const _GSRe = "GetStageResponse";
|
|
433
|
+
const _GSS = "GetStageSession";
|
|
434
|
+
const _GSSR = "GetStageSessionRequest";
|
|
435
|
+
const _GSSRe = "GetStageSessionResponse";
|
|
436
|
+
const _IC = "IngestConfiguration";
|
|
437
|
+
const _ICL = "IngestConfigurationList";
|
|
438
|
+
const _ICS = "IngestConfigurationSummary";
|
|
439
|
+
const _IPK = "ImportPublicKey";
|
|
440
|
+
const _IPKR = "ImportPublicKeyRequest";
|
|
441
|
+
const _IPKRm = "ImportPublicKeyResponse";
|
|
442
|
+
const _ISE = "InternalServerException";
|
|
443
|
+
const _LC = "LayoutConfiguration";
|
|
444
|
+
const _LCR = "ListCompositionsRequest";
|
|
445
|
+
const _LCRi = "ListCompositionsResponse";
|
|
446
|
+
const _LCi = "ListCompositions";
|
|
447
|
+
const _LEC = "ListEncoderConfigurations";
|
|
448
|
+
const _LECR = "ListEncoderConfigurationsRequest";
|
|
449
|
+
const _LECRi = "ListEncoderConfigurationsResponse";
|
|
450
|
+
const _LIC = "ListIngestConfigurations";
|
|
451
|
+
const _LICR = "ListIngestConfigurationsRequest";
|
|
452
|
+
const _LICRi = "ListIngestConfigurationsResponse";
|
|
453
|
+
const _LP = "ListParticipants";
|
|
454
|
+
const _LPE = "ListParticipantEvents";
|
|
455
|
+
const _LPER = "ListParticipantEventsRequest";
|
|
456
|
+
const _LPERi = "ListParticipantEventsResponse";
|
|
457
|
+
const _LPK = "ListPublicKeys";
|
|
458
|
+
const _LPKR = "ListPublicKeysRequest";
|
|
459
|
+
const _LPKRi = "ListPublicKeysResponse";
|
|
460
|
+
const _LPR = "ListParticipantsRequest";
|
|
461
|
+
const _LPRR = "ListParticipantReplicasRequest";
|
|
462
|
+
const _LPRRi = "ListParticipantReplicasResponse";
|
|
463
|
+
const _LPRi = "ListParticipantsResponse";
|
|
464
|
+
const _LPRis = "ListParticipantReplicas";
|
|
465
|
+
const _LS = "ListStages";
|
|
466
|
+
const _LSC = "ListStorageConfigurations";
|
|
467
|
+
const _LSCR = "ListStorageConfigurationsRequest";
|
|
468
|
+
const _LSCRi = "ListStorageConfigurationsResponse";
|
|
469
|
+
const _LSR = "ListStagesRequest";
|
|
470
|
+
const _LSRi = "ListStagesResponse";
|
|
471
|
+
const _LSS = "ListStageSessions";
|
|
472
|
+
const _LSSR = "ListStageSessionsRequest";
|
|
473
|
+
const _LSSRi = "ListStageSessionsResponse";
|
|
474
|
+
const _LTFR = "ListTagsForResource";
|
|
475
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
476
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
477
|
+
const _P = "Participant";
|
|
478
|
+
const _PC = "PipConfiguration";
|
|
479
|
+
const _PK = "PublicKey";
|
|
480
|
+
const _PKL = "PublicKeyList";
|
|
481
|
+
const _PKS = "PublicKeySummary";
|
|
482
|
+
const _PL = "ParticipantList";
|
|
483
|
+
const _PR = "ParticipantReplica";
|
|
484
|
+
const _PRHC = "ParticipantRecordingHlsConfiguration";
|
|
485
|
+
const _PRL = "ParticipantReplicaList";
|
|
486
|
+
const _PS = "ParticipantSummary";
|
|
487
|
+
const _PT = "ParticipantToken";
|
|
488
|
+
const _PTC = "ParticipantThumbnailConfiguration";
|
|
489
|
+
const _PTCa = "ParticipantTokenConfiguration";
|
|
490
|
+
const _PTCar = "ParticipantTokenConfigurations";
|
|
491
|
+
const _PTL = "ParticipantTokenList";
|
|
492
|
+
const _PTS = "ParticipantTokenString";
|
|
493
|
+
const _PV = "PendingVerification";
|
|
494
|
+
const _RC = "RecordingConfiguration";
|
|
495
|
+
const _RIC = "RedundantIngestCredential";
|
|
496
|
+
const _RICe = "RedundantIngestCredentials";
|
|
497
|
+
const _RNFE = "ResourceNotFoundException";
|
|
498
|
+
const _S = "Stage";
|
|
499
|
+
const _SC = "StorageConfiguration";
|
|
500
|
+
const _SCR = "StartCompositionRequest";
|
|
501
|
+
const _SCRt = "StartCompositionResponse";
|
|
502
|
+
const _SCRto = "StopCompositionRequest";
|
|
503
|
+
const _SCRtop = "StopCompositionResponse";
|
|
504
|
+
const _SCS = "StorageConfigurationSummary";
|
|
505
|
+
const _SCSL = "StorageConfigurationSummaryList";
|
|
506
|
+
const _SCt = "StartComposition";
|
|
507
|
+
const _SCto = "StopComposition";
|
|
508
|
+
const _SD = "S3Detail";
|
|
509
|
+
const _SDC = "S3DestinationConfiguration";
|
|
510
|
+
const _SE = "StageEndpoints";
|
|
511
|
+
const _SK = "StreamKey";
|
|
512
|
+
const _SPR = "StartParticipantReplication";
|
|
513
|
+
const _SPRR = "StartParticipantReplicationRequest";
|
|
514
|
+
const _SPRRt = "StartParticipantReplicationResponse";
|
|
515
|
+
const _SPRRto = "StopParticipantReplicationRequest";
|
|
516
|
+
const _SPRRtop = "StopParticipantReplicationResponse";
|
|
517
|
+
const _SPRt = "StopParticipantReplication";
|
|
518
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
519
|
+
const _SS = "StageSession";
|
|
520
|
+
const _SSC = "S3StorageConfiguration";
|
|
521
|
+
const _SSL = "StageSessionList";
|
|
522
|
+
const _SSLt = "StageSummaryList";
|
|
523
|
+
const _SSS = "StageSessionSummary";
|
|
524
|
+
const _SSt = "StageSummary";
|
|
525
|
+
const _STS = "Strict-Transport-Security";
|
|
526
|
+
const _TR = "TagResource";
|
|
527
|
+
const _TRR = "TagResourceRequest";
|
|
528
|
+
const _TRRa = "TagResourceResponse";
|
|
529
|
+
const _UIC = "UpdateIngestConfiguration";
|
|
530
|
+
const _UICR = "UpdateIngestConfigurationRequest";
|
|
531
|
+
const _UICRp = "UpdateIngestConfigurationResponse";
|
|
532
|
+
const _UR = "UntagResource";
|
|
533
|
+
const _URR = "UntagResourceRequest";
|
|
534
|
+
const _URRn = "UntagResourceResponse";
|
|
535
|
+
const _US = "UpdateStage";
|
|
536
|
+
const _USR = "UpdateStageRequest";
|
|
537
|
+
const _USRp = "UpdateStageResponse";
|
|
538
|
+
const _V = "Video";
|
|
539
|
+
const _VE = "ValidationException";
|
|
540
|
+
const _XCTO = "X-Content-Type-Options";
|
|
541
|
+
const _XFO = "X-Frame-Options";
|
|
542
|
+
const _a = "arn";
|
|
543
|
+
const _aCAO = "accessControlAllowOrigin";
|
|
544
|
+
const _aCEH = "accessControlExposeHeaders";
|
|
545
|
+
const _aPRC = "autoParticipantRecordingConfiguration";
|
|
546
|
+
const _aSI = "activeSessionId";
|
|
547
|
+
const _at = "attributes";
|
|
548
|
+
const _b = "bitrate";
|
|
549
|
+
const _bN = "browserName";
|
|
550
|
+
const _bNu = "bucketName";
|
|
551
|
+
const _bV = "browserVersion";
|
|
552
|
+
const _c = "client";
|
|
553
|
+
const _cA = "channelArn";
|
|
554
|
+
const _cC = "cacheControl";
|
|
555
|
+
const _cSP = "contentSecurityPolicy";
|
|
556
|
+
const _ca = "capabilities";
|
|
557
|
+
const _ch = "channel";
|
|
558
|
+
const _co = "configuration";
|
|
559
|
+
const _com = "composition";
|
|
560
|
+
const _comp = "compositions";
|
|
561
|
+
const _d = "destinations";
|
|
562
|
+
const _dSA = "destinationStageArn";
|
|
563
|
+
const _dSI = "destinationSessionId";
|
|
564
|
+
const _de = "detail";
|
|
565
|
+
const _du = "duration";
|
|
566
|
+
const _e = "error";
|
|
567
|
+
const _eC = "encoderConfiguration";
|
|
568
|
+
const _eCA = "encoderConfigurationArn";
|
|
569
|
+
const _eCAn = "encoderConfigurationArns";
|
|
570
|
+
const _eCn = "encoderConfigurations";
|
|
571
|
+
const _eCr = "errorCode";
|
|
572
|
+
const _eM = "exceptionMessage";
|
|
573
|
+
const _eT = "endTime";
|
|
574
|
+
const _eTv = "eventTime";
|
|
575
|
+
const _eTx = "expirationTime";
|
|
576
|
+
const _en = "endpoints";
|
|
577
|
+
const _ev = "events";
|
|
578
|
+
const _f = "force";
|
|
579
|
+
const _fBECA = "filterByEncoderConfigurationArn";
|
|
580
|
+
const _fBP = "filterByPublished";
|
|
581
|
+
const _fBRS = "filterByRecordingState";
|
|
582
|
+
const _fBS = "filterByState";
|
|
583
|
+
const _fBSA = "filterByStageArn";
|
|
584
|
+
const _fBUI = "filterByUserId";
|
|
585
|
+
const _fJT = "firstJoinTime";
|
|
586
|
+
const _fPA = "featuredParticipantAttribute";
|
|
587
|
+
const _fi = "fingerprint";
|
|
588
|
+
const _fo = "format";
|
|
589
|
+
const _fr = "framerate";
|
|
590
|
+
const _g = "grid";
|
|
591
|
+
const _gG = "gridGap";
|
|
592
|
+
const _h = "height";
|
|
593
|
+
const _hC = "hlsConfiguration";
|
|
594
|
+
const _hE = "httpError";
|
|
595
|
+
const _hH = "httpHeader";
|
|
596
|
+
const _hQ = "httpQuery";
|
|
597
|
+
const _ht = "http";
|
|
598
|
+
const _i = "id";
|
|
599
|
+
const _iC = "ingestConfiguration";
|
|
600
|
+
const _iCA = "ingestConfigurationArn";
|
|
601
|
+
const _iCn = "ingestConfigurations";
|
|
602
|
+
const _iI = "insecureIngest";
|
|
603
|
+
const _iN = "ispName";
|
|
604
|
+
const _iP = "ingestProtocol";
|
|
605
|
+
const _iT = "idempotencyToken";
|
|
606
|
+
const _l = "layout";
|
|
607
|
+
const _mR = "maxResults";
|
|
608
|
+
const _mT = "mediaTypes";
|
|
609
|
+
const _n = "name";
|
|
610
|
+
const _nT = "newToken";
|
|
611
|
+
const _nTe = "nextToken";
|
|
612
|
+
const _oN = "osName";
|
|
613
|
+
const _oSV = "omitStoppedVideo";
|
|
614
|
+
const _oV = "osVersion";
|
|
615
|
+
const _p = "participant";
|
|
616
|
+
const _pB = "pipBehavior";
|
|
617
|
+
const _pH = "pipHeight";
|
|
618
|
+
const _pI = "participantId";
|
|
619
|
+
const _pK = "publicKey";
|
|
620
|
+
const _pKM = "publicKeyMaterial";
|
|
621
|
+
const _pKu = "publicKeys";
|
|
622
|
+
const _pO = "pipOffset";
|
|
623
|
+
const _pOA = "participantOrderAttribute";
|
|
624
|
+
const _pP = "pipPosition";
|
|
625
|
+
const _pPA = "pipParticipantAttribute";
|
|
626
|
+
const _pT = "participantToken";
|
|
627
|
+
const _pTC = "participantTokenConfigurations";
|
|
628
|
+
const _pTa = "participantTokens";
|
|
629
|
+
const _pTr = "previousToken";
|
|
630
|
+
const _pW = "pipWidth";
|
|
631
|
+
const _pa = "participants";
|
|
632
|
+
const _pi = "pip";
|
|
633
|
+
const _pr = "protocol";
|
|
634
|
+
const _pu = "published";
|
|
635
|
+
const _r = "reason";
|
|
636
|
+
const _rA = "resourceArn";
|
|
637
|
+
const _rC = "recordingConfiguration";
|
|
638
|
+
const _rI = "redundantIngest";
|
|
639
|
+
const _rIC = "redundantIngestCredentials";
|
|
640
|
+
const _rM = "recordingMode";
|
|
641
|
+
const _rP = "recordingPrefix";
|
|
642
|
+
const _rPI = "remoteParticipantId";
|
|
643
|
+
const _rPR = "recordParticipantReplicas";
|
|
644
|
+
const _rRWS = "recordingReconnectWindowSeconds";
|
|
645
|
+
const _rS = "recordingState";
|
|
646
|
+
const _rSBN = "recordingS3BucketName";
|
|
647
|
+
const _rSP = "recordingS3Prefix";
|
|
648
|
+
const _rSe = "replicationState";
|
|
649
|
+
const _rT = "replicationType";
|
|
650
|
+
const _rWS = "reconnectWindowSeconds";
|
|
651
|
+
const _re = "replica";
|
|
652
|
+
const _rep = "replicas";
|
|
653
|
+
const _rt = "rtmp";
|
|
654
|
+
const _rtm = "rtmps";
|
|
655
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.ivsrealtime";
|
|
656
|
+
const _sA = "stageArn";
|
|
657
|
+
const _sC = "storageConfiguration";
|
|
658
|
+
const _sCA = "storageConfigurationArn";
|
|
659
|
+
const _sCt = "storageConfigurations";
|
|
660
|
+
const _sI = "sessionId";
|
|
661
|
+
const _sK = "streamKey";
|
|
662
|
+
const _sS = "stageSession";
|
|
663
|
+
const _sSA = "sourceStageArn";
|
|
664
|
+
const _sSI = "sourceSessionId";
|
|
665
|
+
const _sSt = "stageSessions";
|
|
666
|
+
const _sT = "startTime";
|
|
667
|
+
const _sTS = "strictTransportSecurity";
|
|
668
|
+
const _sV = "sdkVersion";
|
|
669
|
+
const _s_ = "s3";
|
|
670
|
+
const _se = "server";
|
|
671
|
+
const _st = "state";
|
|
672
|
+
const _sta = "stage";
|
|
673
|
+
const _stag = "stages";
|
|
674
|
+
const _sto = "storage";
|
|
675
|
+
const _t = "tags";
|
|
676
|
+
const _tC = "thumbnailConfiguration";
|
|
677
|
+
const _tCh = "thumbnailConfigurations";
|
|
678
|
+
const _tIS = "targetIntervalSeconds";
|
|
679
|
+
const _tK = "tagKeys";
|
|
680
|
+
const _tSDS = "targetSegmentDurationSeconds";
|
|
681
|
+
const _to = "token";
|
|
682
|
+
const _uI = "userId";
|
|
683
|
+
const _v = "video";
|
|
684
|
+
const _vAR = "videoAspectRatio";
|
|
685
|
+
const _vFM = "videoFillMode";
|
|
686
|
+
const _w = "whip";
|
|
687
|
+
const _wi = "width";
|
|
688
|
+
const _xAET = "xAmznErrorType";
|
|
689
|
+
const _xCTO = "xContentTypeOptions";
|
|
690
|
+
const _xFO = "xFrameOptions";
|
|
691
|
+
const _xaE = "x-amzn-ErrorType";
|
|
692
|
+
const n0 = "com.amazonaws.ivsrealtime";
|
|
693
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
694
|
+
var IVSRealTimeServiceException$ = [-3, _s, "IVSRealTimeServiceException", 0, [], []];
|
|
695
|
+
_s_registry.registerError(IVSRealTimeServiceException$, IVSRealTimeServiceException);
|
|
696
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
697
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
698
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
699
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
700
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }], [0, { [_hH]: _xaE }], 0]
|
|
701
|
+
];
|
|
702
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
703
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
704
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
705
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
706
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }], [0, { [_hH]: _xaE }], 0]
|
|
707
|
+
];
|
|
708
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
709
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
710
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
711
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
712
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }], [0, { [_hH]: _xaE }], 0]
|
|
713
|
+
];
|
|
714
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
715
|
+
var PendingVerification$ = [-3, n0, _PV,
|
|
716
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
717
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
718
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }], [0, { [_hH]: _xaE }], 0]
|
|
719
|
+
];
|
|
720
|
+
n0_registry.registerError(PendingVerification$, PendingVerification);
|
|
721
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
722
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
723
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
724
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }], [0, { [_hH]: _xaE }], 0]
|
|
725
|
+
];
|
|
726
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
727
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
728
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
729
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
730
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }], [0, { [_hH]: _xaE }], 0]
|
|
731
|
+
];
|
|
732
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
733
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
734
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
735
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO, _xAET, _eM],
|
|
736
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }], [0, { [_hH]: _xaE }], 0]
|
|
737
|
+
];
|
|
738
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
739
|
+
const errorTypeRegistries = [
|
|
740
|
+
_s_registry,
|
|
741
|
+
n0_registry,
|
|
742
|
+
];
|
|
743
|
+
var ParticipantTokenString = [0, n0, _PTS, 8, 0];
|
|
744
|
+
var StreamKey = [0, n0, _SK, 8, 0];
|
|
745
|
+
var AutoParticipantRecordingConfiguration$ = [3, n0, _APRC,
|
|
746
|
+
0,
|
|
747
|
+
[_sCA, _mT, _tC, _rRWS, _hC, _rPR],
|
|
748
|
+
[0, 64 | 0, () => ParticipantThumbnailConfiguration$, 1, () => ParticipantRecordingHlsConfiguration$, 2], 1
|
|
749
|
+
];
|
|
750
|
+
var ChannelDestinationConfiguration$ = [3, n0, _CDC,
|
|
751
|
+
0,
|
|
752
|
+
[_cA, _eCA],
|
|
753
|
+
[0, 0], 1
|
|
754
|
+
];
|
|
755
|
+
var Composition$ = [3, n0, _C,
|
|
756
|
+
0,
|
|
757
|
+
[_a, _sA, _st, _l, _d, _t, _sT, _eT],
|
|
758
|
+
[0, 0, 0, () => LayoutConfiguration$, () => DestinationList, 128 | 0, 5, 5], 5
|
|
759
|
+
];
|
|
760
|
+
var CompositionRecordingHlsConfiguration$ = [3, n0, _CRHC,
|
|
761
|
+
0,
|
|
762
|
+
[_tSDS],
|
|
763
|
+
[1]
|
|
764
|
+
];
|
|
765
|
+
var CompositionSummary$ = [3, n0, _CS,
|
|
766
|
+
0,
|
|
767
|
+
[_a, _sA, _d, _st, _t, _sT, _eT],
|
|
768
|
+
[0, 0, () => DestinationSummaryList, 0, 128 | 0, 5, 5], 4
|
|
769
|
+
];
|
|
770
|
+
var CompositionThumbnailConfiguration$ = [3, n0, _CTC,
|
|
771
|
+
0,
|
|
772
|
+
[_tIS, _sto],
|
|
773
|
+
[1, 64 | 0]
|
|
774
|
+
];
|
|
775
|
+
var CreateEncoderConfigurationRequest$ = [3, n0, _CECR,
|
|
776
|
+
0,
|
|
777
|
+
[_n, _v, _t],
|
|
778
|
+
[0, () => Video$, 128 | 0]
|
|
779
|
+
];
|
|
780
|
+
var CreateEncoderConfigurationResponse$ = [3, n0, _CECRr,
|
|
781
|
+
0,
|
|
782
|
+
[_eC],
|
|
783
|
+
[() => EncoderConfiguration$]
|
|
784
|
+
];
|
|
785
|
+
var CreateIngestConfigurationRequest$ = [3, n0, _CICR,
|
|
786
|
+
0,
|
|
787
|
+
[_iP, _n, _sA, _uI, _at, _iI, _rI, _t],
|
|
788
|
+
[0, 0, 0, 0, 128 | 0, 2, 2, 128 | 0], 1
|
|
789
|
+
];
|
|
790
|
+
var CreateIngestConfigurationResponse$ = [3, n0, _CICRr,
|
|
791
|
+
0,
|
|
792
|
+
[_iC],
|
|
793
|
+
[[() => IngestConfiguration$, 0]]
|
|
794
|
+
];
|
|
795
|
+
var CreateParticipantTokenRequest$ = [3, n0, _CPTR,
|
|
796
|
+
0,
|
|
797
|
+
[_sA, _du, _uI, _at, _ca],
|
|
798
|
+
[0, 1, 0, 128 | 0, 64 | 0], 1
|
|
799
|
+
];
|
|
800
|
+
var CreateParticipantTokenResponse$ = [3, n0, _CPTRr,
|
|
801
|
+
0,
|
|
802
|
+
[_pT],
|
|
803
|
+
[[() => ParticipantToken$, 0]]
|
|
804
|
+
];
|
|
805
|
+
var CreateStageRequest$ = [3, n0, _CSR,
|
|
806
|
+
0,
|
|
807
|
+
[_n, _pTC, _t, _aPRC],
|
|
808
|
+
[0, () => ParticipantTokenConfigurations, 128 | 0, () => AutoParticipantRecordingConfiguration$]
|
|
809
|
+
];
|
|
810
|
+
var CreateStageResponse$ = [3, n0, _CSRr,
|
|
811
|
+
0,
|
|
812
|
+
[_sta, _pTa],
|
|
813
|
+
[() => Stage$, [() => ParticipantTokenList, 0]]
|
|
814
|
+
];
|
|
815
|
+
var CreateStorageConfigurationRequest$ = [3, n0, _CSCR,
|
|
816
|
+
0,
|
|
817
|
+
[_s_, _n, _t],
|
|
818
|
+
[() => S3StorageConfiguration$, 0, 128 | 0], 1
|
|
819
|
+
];
|
|
820
|
+
var CreateStorageConfigurationResponse$ = [3, n0, _CSCRr,
|
|
821
|
+
0,
|
|
822
|
+
[_sC],
|
|
823
|
+
[() => StorageConfiguration$]
|
|
824
|
+
];
|
|
825
|
+
var DeleteEncoderConfigurationRequest$ = [3, n0, _DECR,
|
|
826
|
+
0,
|
|
827
|
+
[_a],
|
|
828
|
+
[0], 1
|
|
829
|
+
];
|
|
830
|
+
var DeleteEncoderConfigurationResponse$ = [3, n0, _DECRe,
|
|
831
|
+
0,
|
|
832
|
+
[],
|
|
833
|
+
[]
|
|
834
|
+
];
|
|
835
|
+
var DeleteIngestConfigurationRequest$ = [3, n0, _DICR,
|
|
836
|
+
0,
|
|
837
|
+
[_a, _f],
|
|
838
|
+
[0, 2], 1
|
|
839
|
+
];
|
|
840
|
+
var DeleteIngestConfigurationResponse$ = [3, n0, _DICRe,
|
|
841
|
+
0,
|
|
842
|
+
[],
|
|
843
|
+
[]
|
|
844
|
+
];
|
|
845
|
+
var DeletePublicKeyRequest$ = [3, n0, _DPKR,
|
|
846
|
+
0,
|
|
847
|
+
[_a],
|
|
848
|
+
[0], 1
|
|
849
|
+
];
|
|
850
|
+
var DeletePublicKeyResponse$ = [3, n0, _DPKRe,
|
|
851
|
+
0,
|
|
852
|
+
[],
|
|
853
|
+
[]
|
|
854
|
+
];
|
|
855
|
+
var DeleteStageRequest$ = [3, n0, _DSR,
|
|
856
|
+
0,
|
|
857
|
+
[_a],
|
|
858
|
+
[0], 1
|
|
859
|
+
];
|
|
860
|
+
var DeleteStageResponse$ = [3, n0, _DSRe,
|
|
861
|
+
0,
|
|
862
|
+
[],
|
|
863
|
+
[]
|
|
864
|
+
];
|
|
865
|
+
var DeleteStorageConfigurationRequest$ = [3, n0, _DSCR,
|
|
866
|
+
0,
|
|
867
|
+
[_a],
|
|
868
|
+
[0], 1
|
|
869
|
+
];
|
|
870
|
+
var DeleteStorageConfigurationResponse$ = [3, n0, _DSCRe,
|
|
871
|
+
0,
|
|
872
|
+
[],
|
|
873
|
+
[]
|
|
874
|
+
];
|
|
875
|
+
var Destination$ = [3, n0, _D,
|
|
876
|
+
0,
|
|
877
|
+
[_i, _st, _co, _sT, _eT, _de],
|
|
878
|
+
[0, 0, () => DestinationConfiguration$, 5, 5, () => DestinationDetail$], 3
|
|
879
|
+
];
|
|
880
|
+
var DestinationConfiguration$ = [3, n0, _DC,
|
|
881
|
+
0,
|
|
882
|
+
[_n, _ch, _s_],
|
|
883
|
+
[0, () => ChannelDestinationConfiguration$, () => S3DestinationConfiguration$]
|
|
884
|
+
];
|
|
885
|
+
var DestinationDetail$ = [3, n0, _DD,
|
|
886
|
+
0,
|
|
887
|
+
[_s_],
|
|
888
|
+
[() => S3Detail$]
|
|
889
|
+
];
|
|
890
|
+
var DestinationSummary$ = [3, n0, _DS,
|
|
891
|
+
0,
|
|
892
|
+
[_i, _st, _sT, _eT],
|
|
893
|
+
[0, 0, 5, 5], 2
|
|
894
|
+
];
|
|
895
|
+
var DisconnectParticipantRequest$ = [3, n0, _DPR,
|
|
896
|
+
0,
|
|
897
|
+
[_sA, _pI, _r],
|
|
898
|
+
[0, 0, 0], 2
|
|
899
|
+
];
|
|
900
|
+
var DisconnectParticipantResponse$ = [3, n0, _DPRi,
|
|
901
|
+
0,
|
|
902
|
+
[],
|
|
903
|
+
[]
|
|
904
|
+
];
|
|
905
|
+
var EncoderConfiguration$ = [3, n0, _EC,
|
|
906
|
+
0,
|
|
907
|
+
[_a, _n, _v, _t],
|
|
908
|
+
[0, 0, () => Video$, 128 | 0], 1
|
|
909
|
+
];
|
|
910
|
+
var EncoderConfigurationSummary$ = [3, n0, _ECS,
|
|
911
|
+
0,
|
|
912
|
+
[_a, _n, _t],
|
|
913
|
+
[0, 0, 128 | 0], 1
|
|
914
|
+
];
|
|
915
|
+
var Event$ = [3, n0, _E,
|
|
916
|
+
0,
|
|
917
|
+
[_n, _pI, _eTv, _rPI, _eCr, _dSA, _dSI, _re, _pTr, _nT],
|
|
918
|
+
[0, 0, 5, 0, 0, 0, 0, 2, () => ExchangedParticipantToken$, () => ExchangedParticipantToken$]
|
|
919
|
+
];
|
|
920
|
+
var ExchangedParticipantToken$ = [3, n0, _EPT,
|
|
921
|
+
0,
|
|
922
|
+
[_ca, _at, _uI, _eTx],
|
|
923
|
+
[64 | 0, 128 | 0, 0, 5]
|
|
924
|
+
];
|
|
925
|
+
var GetCompositionRequest$ = [3, n0, _GCR,
|
|
926
|
+
0,
|
|
927
|
+
[_a],
|
|
928
|
+
[0], 1
|
|
929
|
+
];
|
|
930
|
+
var GetCompositionResponse$ = [3, n0, _GCRe,
|
|
931
|
+
0,
|
|
932
|
+
[_com],
|
|
933
|
+
[() => Composition$]
|
|
934
|
+
];
|
|
935
|
+
var GetEncoderConfigurationRequest$ = [3, n0, _GECR,
|
|
936
|
+
0,
|
|
937
|
+
[_a],
|
|
938
|
+
[0], 1
|
|
939
|
+
];
|
|
940
|
+
var GetEncoderConfigurationResponse$ = [3, n0, _GECRe,
|
|
941
|
+
0,
|
|
942
|
+
[_eC],
|
|
943
|
+
[() => EncoderConfiguration$]
|
|
944
|
+
];
|
|
945
|
+
var GetIngestConfigurationRequest$ = [3, n0, _GICR,
|
|
946
|
+
0,
|
|
947
|
+
[_a],
|
|
948
|
+
[0], 1
|
|
949
|
+
];
|
|
950
|
+
var GetIngestConfigurationResponse$ = [3, n0, _GICRe,
|
|
951
|
+
0,
|
|
952
|
+
[_iC],
|
|
953
|
+
[[() => IngestConfiguration$, 0]]
|
|
954
|
+
];
|
|
955
|
+
var GetParticipantRequest$ = [3, n0, _GPR,
|
|
956
|
+
0,
|
|
957
|
+
[_sA, _sI, _pI],
|
|
958
|
+
[0, 0, 0], 3
|
|
959
|
+
];
|
|
960
|
+
var GetParticipantResponse$ = [3, n0, _GPRe,
|
|
961
|
+
0,
|
|
962
|
+
[_p],
|
|
963
|
+
[() => Participant$]
|
|
964
|
+
];
|
|
965
|
+
var GetPublicKeyRequest$ = [3, n0, _GPKR,
|
|
966
|
+
0,
|
|
967
|
+
[_a],
|
|
968
|
+
[0], 1
|
|
969
|
+
];
|
|
970
|
+
var GetPublicKeyResponse$ = [3, n0, _GPKRe,
|
|
971
|
+
0,
|
|
972
|
+
[_pK],
|
|
973
|
+
[() => PublicKey$]
|
|
974
|
+
];
|
|
975
|
+
var GetStageRequest$ = [3, n0, _GSR,
|
|
976
|
+
0,
|
|
977
|
+
[_a],
|
|
978
|
+
[0], 1
|
|
979
|
+
];
|
|
980
|
+
var GetStageResponse$ = [3, n0, _GSRe,
|
|
981
|
+
0,
|
|
982
|
+
[_sta],
|
|
983
|
+
[() => Stage$]
|
|
984
|
+
];
|
|
985
|
+
var GetStageSessionRequest$ = [3, n0, _GSSR,
|
|
986
|
+
0,
|
|
987
|
+
[_sA, _sI],
|
|
988
|
+
[0, 0], 2
|
|
989
|
+
];
|
|
990
|
+
var GetStageSessionResponse$ = [3, n0, _GSSRe,
|
|
991
|
+
0,
|
|
992
|
+
[_sS],
|
|
993
|
+
[() => StageSession$]
|
|
994
|
+
];
|
|
995
|
+
var GetStorageConfigurationRequest$ = [3, n0, _GSCR,
|
|
996
|
+
0,
|
|
997
|
+
[_a],
|
|
998
|
+
[0], 1
|
|
999
|
+
];
|
|
1000
|
+
var GetStorageConfigurationResponse$ = [3, n0, _GSCRe,
|
|
1001
|
+
0,
|
|
1002
|
+
[_sC],
|
|
1003
|
+
[() => StorageConfiguration$]
|
|
1004
|
+
];
|
|
1005
|
+
var GridConfiguration$ = [3, n0, _GC,
|
|
1006
|
+
0,
|
|
1007
|
+
[_fPA, _oSV, _vAR, _vFM, _gG, _pOA],
|
|
1008
|
+
[0, 2, 0, 0, 1, 0]
|
|
1009
|
+
];
|
|
1010
|
+
var ImportPublicKeyRequest$ = [3, n0, _IPKR,
|
|
1011
|
+
0,
|
|
1012
|
+
[_pKM, _n, _t],
|
|
1013
|
+
[0, 0, 128 | 0], 1
|
|
1014
|
+
];
|
|
1015
|
+
var ImportPublicKeyResponse$ = [3, n0, _IPKRm,
|
|
1016
|
+
0,
|
|
1017
|
+
[_pK],
|
|
1018
|
+
[() => PublicKey$]
|
|
1019
|
+
];
|
|
1020
|
+
var IngestConfiguration$ = [3, n0, _IC,
|
|
1021
|
+
0,
|
|
1022
|
+
[_a, _iP, _sK, _sA, _pI, _st, _n, _uI, _rI, _rIC, _at, _t],
|
|
1023
|
+
[0, 0, [() => StreamKey, 0], 0, 0, 0, 0, 0, 2, [() => RedundantIngestCredentials, 0], 128 | 0, 128 | 0], 6
|
|
1024
|
+
];
|
|
1025
|
+
var IngestConfigurationSummary$ = [3, n0, _ICS,
|
|
1026
|
+
0,
|
|
1027
|
+
[_a, _iP, _sA, _pI, _st, _n, _uI, _rI],
|
|
1028
|
+
[0, 0, 0, 0, 0, 0, 0, 2], 5
|
|
1029
|
+
];
|
|
1030
|
+
var LayoutConfiguration$ = [3, n0, _LC,
|
|
1031
|
+
0,
|
|
1032
|
+
[_g, _pi],
|
|
1033
|
+
[() => GridConfiguration$, () => PipConfiguration$]
|
|
1034
|
+
];
|
|
1035
|
+
var ListCompositionsRequest$ = [3, n0, _LCR,
|
|
1036
|
+
0,
|
|
1037
|
+
[_fBSA, _fBECA, _nTe, _mR],
|
|
1038
|
+
[0, 0, 0, 1]
|
|
1039
|
+
];
|
|
1040
|
+
var ListCompositionsResponse$ = [3, n0, _LCRi,
|
|
1041
|
+
0,
|
|
1042
|
+
[_comp, _nTe],
|
|
1043
|
+
[() => CompositionSummaryList, 0], 1
|
|
1044
|
+
];
|
|
1045
|
+
var ListEncoderConfigurationsRequest$ = [3, n0, _LECR,
|
|
1046
|
+
0,
|
|
1047
|
+
[_nTe, _mR],
|
|
1048
|
+
[0, 1]
|
|
1049
|
+
];
|
|
1050
|
+
var ListEncoderConfigurationsResponse$ = [3, n0, _LECRi,
|
|
1051
|
+
0,
|
|
1052
|
+
[_eCn, _nTe],
|
|
1053
|
+
[() => EncoderConfigurationSummaryList, 0], 1
|
|
1054
|
+
];
|
|
1055
|
+
var ListIngestConfigurationsRequest$ = [3, n0, _LICR,
|
|
1056
|
+
0,
|
|
1057
|
+
[_fBSA, _fBS, _nTe, _mR],
|
|
1058
|
+
[0, 0, 0, 1]
|
|
1059
|
+
];
|
|
1060
|
+
var ListIngestConfigurationsResponse$ = [3, n0, _LICRi,
|
|
1061
|
+
0,
|
|
1062
|
+
[_iCn, _nTe],
|
|
1063
|
+
[() => IngestConfigurationList, 0], 1
|
|
1064
|
+
];
|
|
1065
|
+
var ListParticipantEventsRequest$ = [3, n0, _LPER,
|
|
1066
|
+
0,
|
|
1067
|
+
[_sA, _sI, _pI, _nTe, _mR],
|
|
1068
|
+
[0, 0, 0, 0, 1], 3
|
|
1069
|
+
];
|
|
1070
|
+
var ListParticipantEventsResponse$ = [3, n0, _LPERi,
|
|
1071
|
+
0,
|
|
1072
|
+
[_ev, _nTe],
|
|
1073
|
+
[() => EventList, 0], 1
|
|
1074
|
+
];
|
|
1075
|
+
var ListParticipantReplicasRequest$ = [3, n0, _LPRR,
|
|
1076
|
+
0,
|
|
1077
|
+
[_sSA, _pI, _nTe, _mR],
|
|
1078
|
+
[0, 0, 0, 1], 2
|
|
1079
|
+
];
|
|
1080
|
+
var ListParticipantReplicasResponse$ = [3, n0, _LPRRi,
|
|
1081
|
+
0,
|
|
1082
|
+
[_rep, _nTe],
|
|
1083
|
+
[() => ParticipantReplicaList, 0], 1
|
|
1084
|
+
];
|
|
1085
|
+
var ListParticipantsRequest$ = [3, n0, _LPR,
|
|
1086
|
+
0,
|
|
1087
|
+
[_sA, _sI, _fBUI, _fBP, _fBS, _nTe, _mR, _fBRS],
|
|
1088
|
+
[0, 0, 0, 2, 0, 0, 1, 0], 2
|
|
1089
|
+
];
|
|
1090
|
+
var ListParticipantsResponse$ = [3, n0, _LPRi,
|
|
1091
|
+
0,
|
|
1092
|
+
[_pa, _nTe],
|
|
1093
|
+
[() => ParticipantList, 0], 1
|
|
1094
|
+
];
|
|
1095
|
+
var ListPublicKeysRequest$ = [3, n0, _LPKR,
|
|
1096
|
+
0,
|
|
1097
|
+
[_nTe, _mR],
|
|
1098
|
+
[0, 1]
|
|
1099
|
+
];
|
|
1100
|
+
var ListPublicKeysResponse$ = [3, n0, _LPKRi,
|
|
1101
|
+
0,
|
|
1102
|
+
[_pKu, _nTe],
|
|
1103
|
+
[() => PublicKeyList, 0], 1
|
|
1104
|
+
];
|
|
1105
|
+
var ListStageSessionsRequest$ = [3, n0, _LSSR,
|
|
1106
|
+
0,
|
|
1107
|
+
[_sA, _nTe, _mR],
|
|
1108
|
+
[0, 0, 1], 1
|
|
1109
|
+
];
|
|
1110
|
+
var ListStageSessionsResponse$ = [3, n0, _LSSRi,
|
|
1111
|
+
0,
|
|
1112
|
+
[_sSt, _nTe],
|
|
1113
|
+
[() => StageSessionList, 0], 1
|
|
1114
|
+
];
|
|
1115
|
+
var ListStagesRequest$ = [3, n0, _LSR,
|
|
1116
|
+
0,
|
|
1117
|
+
[_nTe, _mR],
|
|
1118
|
+
[0, 1]
|
|
1119
|
+
];
|
|
1120
|
+
var ListStagesResponse$ = [3, n0, _LSRi,
|
|
1121
|
+
0,
|
|
1122
|
+
[_stag, _nTe],
|
|
1123
|
+
[() => StageSummaryList, 0], 1
|
|
1124
|
+
];
|
|
1125
|
+
var ListStorageConfigurationsRequest$ = [3, n0, _LSCR,
|
|
1126
|
+
0,
|
|
1127
|
+
[_nTe, _mR],
|
|
1128
|
+
[0, 1]
|
|
1129
|
+
];
|
|
1130
|
+
var ListStorageConfigurationsResponse$ = [3, n0, _LSCRi,
|
|
1131
|
+
0,
|
|
1132
|
+
[_sCt, _nTe],
|
|
1133
|
+
[() => StorageConfigurationSummaryList, 0], 1
|
|
1134
|
+
];
|
|
1135
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1136
|
+
0,
|
|
1137
|
+
[_rA],
|
|
1138
|
+
[[0, 1]], 1
|
|
1139
|
+
];
|
|
1140
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1141
|
+
0,
|
|
1142
|
+
[_t],
|
|
1143
|
+
[128 | 0], 1
|
|
1144
|
+
];
|
|
1145
|
+
var Participant$ = [3, n0, _P,
|
|
1146
|
+
0,
|
|
1147
|
+
[_pI, _uI, _st, _fJT, _at, _pu, _iN, _oN, _oV, _bN, _bV, _sV, _rSBN, _rSP, _rS, _pr, _rT, _rSe, _sSA, _sSI, _rI, _iCA],
|
|
1148
|
+
[0, 0, 0, 5, 128 | 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0]
|
|
1149
|
+
];
|
|
1150
|
+
var ParticipantRecordingHlsConfiguration$ = [3, n0, _PRHC,
|
|
1151
|
+
0,
|
|
1152
|
+
[_tSDS],
|
|
1153
|
+
[1]
|
|
1154
|
+
];
|
|
1155
|
+
var ParticipantReplica$ = [3, n0, _PR,
|
|
1156
|
+
0,
|
|
1157
|
+
[_sSA, _pI, _sSI, _dSA, _dSI, _rSe],
|
|
1158
|
+
[0, 0, 0, 0, 0, 0], 6
|
|
1159
|
+
];
|
|
1160
|
+
var ParticipantSummary$ = [3, n0, _PS,
|
|
1161
|
+
0,
|
|
1162
|
+
[_pI, _uI, _st, _fJT, _pu, _rS, _rT, _rSe, _sSA, _sSI, _rI, _iCA],
|
|
1163
|
+
[0, 0, 0, 5, 2, 0, 0, 0, 0, 0, 2, 0]
|
|
1164
|
+
];
|
|
1165
|
+
var ParticipantThumbnailConfiguration$ = [3, n0, _PTC,
|
|
1166
|
+
0,
|
|
1167
|
+
[_tIS, _sto, _rM],
|
|
1168
|
+
[1, 64 | 0, 0]
|
|
1169
|
+
];
|
|
1170
|
+
var ParticipantToken$ = [3, n0, _PT,
|
|
1171
|
+
0,
|
|
1172
|
+
[_pI, _to, _uI, _at, _du, _ca, _eTx],
|
|
1173
|
+
[0, [() => ParticipantTokenString, 0], 0, 128 | 0, 1, 64 | 0, 5]
|
|
1174
|
+
];
|
|
1175
|
+
var ParticipantTokenConfiguration$ = [3, n0, _PTCa,
|
|
1176
|
+
0,
|
|
1177
|
+
[_du, _uI, _at, _ca],
|
|
1178
|
+
[1, 0, 128 | 0, 64 | 0]
|
|
1179
|
+
];
|
|
1180
|
+
var PipConfiguration$ = [3, n0, _PC,
|
|
1181
|
+
0,
|
|
1182
|
+
[_fPA, _oSV, _vFM, _gG, _pPA, _pB, _pO, _pP, _pW, _pH, _pOA],
|
|
1183
|
+
[0, 2, 0, 1, 0, 0, 1, 0, 1, 1, 0]
|
|
1184
|
+
];
|
|
1185
|
+
var PublicKey$ = [3, n0, _PK,
|
|
1186
|
+
0,
|
|
1187
|
+
[_a, _n, _pKM, _fi, _t],
|
|
1188
|
+
[0, 0, 0, 0, 128 | 0]
|
|
1189
|
+
];
|
|
1190
|
+
var PublicKeySummary$ = [3, n0, _PKS,
|
|
1191
|
+
0,
|
|
1192
|
+
[_a, _n, _t],
|
|
1193
|
+
[0, 0, 128 | 0]
|
|
1194
|
+
];
|
|
1195
|
+
var RecordingConfiguration$ = [3, n0, _RC,
|
|
1196
|
+
0,
|
|
1197
|
+
[_hC, _fo],
|
|
1198
|
+
[() => CompositionRecordingHlsConfiguration$, 0]
|
|
1199
|
+
];
|
|
1200
|
+
var RedundantIngestCredential$ = [3, n0, _RIC,
|
|
1201
|
+
0,
|
|
1202
|
+
[_pI, _sK],
|
|
1203
|
+
[0, [() => StreamKey, 0]]
|
|
1204
|
+
];
|
|
1205
|
+
var S3DestinationConfiguration$ = [3, n0, _SDC,
|
|
1206
|
+
0,
|
|
1207
|
+
[_sCA, _eCAn, _rC, _tCh],
|
|
1208
|
+
[0, 64 | 0, () => RecordingConfiguration$, () => CompositionThumbnailConfigurationList], 2
|
|
1209
|
+
];
|
|
1210
|
+
var S3Detail$ = [3, n0, _SD,
|
|
1211
|
+
0,
|
|
1212
|
+
[_rP],
|
|
1213
|
+
[0], 1
|
|
1214
|
+
];
|
|
1215
|
+
var S3StorageConfiguration$ = [3, n0, _SSC,
|
|
1216
|
+
0,
|
|
1217
|
+
[_bNu],
|
|
1218
|
+
[0], 1
|
|
1219
|
+
];
|
|
1220
|
+
var Stage$ = [3, n0, _S,
|
|
1221
|
+
0,
|
|
1222
|
+
[_a, _n, _aSI, _t, _aPRC, _en],
|
|
1223
|
+
[0, 0, 0, 128 | 0, () => AutoParticipantRecordingConfiguration$, () => StageEndpoints$], 1
|
|
1224
|
+
];
|
|
1225
|
+
var StageEndpoints$ = [3, n0, _SE,
|
|
1226
|
+
0,
|
|
1227
|
+
[_ev, _w, _rt, _rtm],
|
|
1228
|
+
[0, 0, 0, 0]
|
|
1229
|
+
];
|
|
1230
|
+
var StageSession$ = [3, n0, _SS,
|
|
1231
|
+
0,
|
|
1232
|
+
[_sI, _sT, _eT],
|
|
1233
|
+
[0, 5, 5]
|
|
1234
|
+
];
|
|
1235
|
+
var StageSessionSummary$ = [3, n0, _SSS,
|
|
1236
|
+
0,
|
|
1237
|
+
[_sI, _sT, _eT],
|
|
1238
|
+
[0, 5, 5]
|
|
1239
|
+
];
|
|
1240
|
+
var StageSummary$ = [3, n0, _SSt,
|
|
1241
|
+
0,
|
|
1242
|
+
[_a, _n, _aSI, _t],
|
|
1243
|
+
[0, 0, 0, 128 | 0], 1
|
|
1244
|
+
];
|
|
1245
|
+
var StartCompositionRequest$ = [3, n0, _SCR,
|
|
1246
|
+
0,
|
|
1247
|
+
[_sA, _d, _iT, _l, _t],
|
|
1248
|
+
[0, () => DestinationConfigurationList, [0, 4], () => LayoutConfiguration$, 128 | 0], 2
|
|
1249
|
+
];
|
|
1250
|
+
var StartCompositionResponse$ = [3, n0, _SCRt,
|
|
1251
|
+
0,
|
|
1252
|
+
[_com],
|
|
1253
|
+
[() => Composition$]
|
|
1254
|
+
];
|
|
1255
|
+
var StartParticipantReplicationRequest$ = [3, n0, _SPRR,
|
|
1256
|
+
0,
|
|
1257
|
+
[_sSA, _dSA, _pI, _rWS, _at],
|
|
1258
|
+
[0, 0, 0, 1, 128 | 0], 3
|
|
1259
|
+
];
|
|
1260
|
+
var StartParticipantReplicationResponse$ = [3, n0, _SPRRt,
|
|
1261
|
+
0,
|
|
1262
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO],
|
|
1263
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }]]
|
|
1264
|
+
];
|
|
1265
|
+
var StopCompositionRequest$ = [3, n0, _SCRto,
|
|
1266
|
+
0,
|
|
1267
|
+
[_a],
|
|
1268
|
+
[0], 1
|
|
1269
|
+
];
|
|
1270
|
+
var StopCompositionResponse$ = [3, n0, _SCRtop,
|
|
1271
|
+
0,
|
|
1272
|
+
[],
|
|
1273
|
+
[]
|
|
1274
|
+
];
|
|
1275
|
+
var StopParticipantReplicationRequest$ = [3, n0, _SPRRto,
|
|
1276
|
+
0,
|
|
1277
|
+
[_sSA, _dSA, _pI],
|
|
1278
|
+
[0, 0, 0], 3
|
|
1279
|
+
];
|
|
1280
|
+
var StopParticipantReplicationResponse$ = [3, n0, _SPRRtop,
|
|
1281
|
+
0,
|
|
1282
|
+
[_aCAO, _aCEH, _cC, _cSP, _sTS, _xCTO, _xFO],
|
|
1283
|
+
[[0, { [_hH]: _ACAO }], [0, { [_hH]: _ACEH }], [0, { [_hH]: _CC }], [0, { [_hH]: _CSP }], [0, { [_hH]: _STS }], [0, { [_hH]: _XCTO }], [0, { [_hH]: _XFO }]]
|
|
1284
|
+
];
|
|
1285
|
+
var StorageConfiguration$ = [3, n0, _SC,
|
|
1286
|
+
0,
|
|
1287
|
+
[_a, _n, _s_, _t],
|
|
1288
|
+
[0, 0, () => S3StorageConfiguration$, 128 | 0], 1
|
|
1289
|
+
];
|
|
1290
|
+
var StorageConfigurationSummary$ = [3, n0, _SCS,
|
|
1291
|
+
0,
|
|
1292
|
+
[_a, _n, _s_, _t],
|
|
1293
|
+
[0, 0, () => S3StorageConfiguration$, 128 | 0], 1
|
|
1294
|
+
];
|
|
1295
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1296
|
+
0,
|
|
1297
|
+
[_rA, _t],
|
|
1298
|
+
[[0, 1], 128 | 0], 2
|
|
1299
|
+
];
|
|
1300
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1301
|
+
0,
|
|
1302
|
+
[],
|
|
1303
|
+
[]
|
|
1304
|
+
];
|
|
1305
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1306
|
+
0,
|
|
1307
|
+
[_rA, _tK],
|
|
1308
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1309
|
+
];
|
|
1310
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1311
|
+
0,
|
|
1312
|
+
[],
|
|
1313
|
+
[]
|
|
1314
|
+
];
|
|
1315
|
+
var UpdateIngestConfigurationRequest$ = [3, n0, _UICR,
|
|
1316
|
+
0,
|
|
1317
|
+
[_a, _sA, _rI],
|
|
1318
|
+
[0, 0, 2], 1
|
|
1319
|
+
];
|
|
1320
|
+
var UpdateIngestConfigurationResponse$ = [3, n0, _UICRp,
|
|
1321
|
+
0,
|
|
1322
|
+
[_iC],
|
|
1323
|
+
[[() => IngestConfiguration$, 0]]
|
|
1324
|
+
];
|
|
1325
|
+
var UpdateStageRequest$ = [3, n0, _USR,
|
|
1326
|
+
0,
|
|
1327
|
+
[_a, _n, _aPRC],
|
|
1328
|
+
[0, 0, () => AutoParticipantRecordingConfiguration$], 1
|
|
1329
|
+
];
|
|
1330
|
+
var UpdateStageResponse$ = [3, n0, _USRp,
|
|
1331
|
+
0,
|
|
1332
|
+
[_sta],
|
|
1333
|
+
[() => Stage$]
|
|
1334
|
+
];
|
|
1335
|
+
var Video$ = [3, n0, _V,
|
|
1336
|
+
0,
|
|
1337
|
+
[_wi, _h, _fr, _b],
|
|
1338
|
+
[1, 1, 1, 1]
|
|
1339
|
+
];
|
|
1340
|
+
var CompositionSummaryList = [1, n0, _CSL,
|
|
1341
|
+
0, () => CompositionSummary$
|
|
1342
|
+
];
|
|
1343
|
+
var CompositionThumbnailConfigurationList = [1, n0, _CTCL,
|
|
1344
|
+
0, () => CompositionThumbnailConfiguration$
|
|
1345
|
+
];
|
|
1346
|
+
var DestinationConfigurationList = [1, n0, _DCL,
|
|
1347
|
+
0, () => DestinationConfiguration$
|
|
1348
|
+
];
|
|
1349
|
+
var DestinationList = [1, n0, _DL,
|
|
1350
|
+
0, () => Destination$
|
|
1351
|
+
];
|
|
1352
|
+
var DestinationSummaryList = [1, n0, _DSL,
|
|
1353
|
+
0, () => DestinationSummary$
|
|
1354
|
+
];
|
|
1355
|
+
var EncoderConfigurationSummaryList = [1, n0, _ECSL,
|
|
1356
|
+
0, () => EncoderConfigurationSummary$
|
|
1357
|
+
];
|
|
1358
|
+
var EventList = [1, n0, _EL,
|
|
1359
|
+
0, () => Event$
|
|
1360
|
+
];
|
|
1361
|
+
var IngestConfigurationList = [1, n0, _ICL,
|
|
1362
|
+
0, () => IngestConfigurationSummary$
|
|
1363
|
+
];
|
|
1364
|
+
var ParticipantList = [1, n0, _PL,
|
|
1365
|
+
0, () => ParticipantSummary$
|
|
1366
|
+
];
|
|
1367
|
+
var ParticipantReplicaList = [1, n0, _PRL,
|
|
1368
|
+
0, () => ParticipantReplica$
|
|
1369
|
+
];
|
|
1370
|
+
var ParticipantTokenConfigurations = [1, n0, _PTCar,
|
|
1371
|
+
0, () => ParticipantTokenConfiguration$
|
|
1372
|
+
];
|
|
1373
|
+
var ParticipantTokenList = [1, n0, _PTL,
|
|
1374
|
+
0, [() => ParticipantToken$,
|
|
1375
|
+
0]
|
|
1376
|
+
];
|
|
1377
|
+
var PublicKeyList = [1, n0, _PKL,
|
|
1378
|
+
0, () => PublicKeySummary$
|
|
1379
|
+
];
|
|
1380
|
+
var RedundantIngestCredentials = [1, n0, _RICe,
|
|
1381
|
+
0, [() => RedundantIngestCredential$,
|
|
1382
|
+
0]
|
|
1383
|
+
];
|
|
1384
|
+
var StageSessionList = [1, n0, _SSL,
|
|
1385
|
+
0, () => StageSessionSummary$
|
|
1386
|
+
];
|
|
1387
|
+
var StageSummaryList = [1, n0, _SSLt,
|
|
1388
|
+
0, () => StageSummary$
|
|
1389
|
+
];
|
|
1390
|
+
var StorageConfigurationSummaryList = [1, n0, _SCSL,
|
|
1391
|
+
0, () => StorageConfigurationSummary$
|
|
1392
|
+
];
|
|
1393
|
+
var CreateEncoderConfiguration$ = [9, n0, _CEC,
|
|
1394
|
+
{ [_ht]: ["POST", "/CreateEncoderConfiguration", 200] }, () => CreateEncoderConfigurationRequest$, () => CreateEncoderConfigurationResponse$
|
|
1395
|
+
];
|
|
1396
|
+
var CreateIngestConfiguration$ = [9, n0, _CIC,
|
|
1397
|
+
{ [_ht]: ["POST", "/CreateIngestConfiguration", 200] }, () => CreateIngestConfigurationRequest$, () => CreateIngestConfigurationResponse$
|
|
1398
|
+
];
|
|
1399
|
+
var CreateParticipantToken$ = [9, n0, _CPT,
|
|
1400
|
+
{ [_ht]: ["POST", "/CreateParticipantToken", 200] }, () => CreateParticipantTokenRequest$, () => CreateParticipantTokenResponse$
|
|
1401
|
+
];
|
|
1402
|
+
var CreateStage$ = [9, n0, _CSr,
|
|
1403
|
+
{ [_ht]: ["POST", "/CreateStage", 200] }, () => CreateStageRequest$, () => CreateStageResponse$
|
|
1404
|
+
];
|
|
1405
|
+
var CreateStorageConfiguration$ = [9, n0, _CSC,
|
|
1406
|
+
{ [_ht]: ["POST", "/CreateStorageConfiguration", 200] }, () => CreateStorageConfigurationRequest$, () => CreateStorageConfigurationResponse$
|
|
1407
|
+
];
|
|
1408
|
+
var DeleteEncoderConfiguration$ = [9, n0, _DEC,
|
|
1409
|
+
{ [_ht]: ["POST", "/DeleteEncoderConfiguration", 200] }, () => DeleteEncoderConfigurationRequest$, () => DeleteEncoderConfigurationResponse$
|
|
1410
|
+
];
|
|
1411
|
+
var DeleteIngestConfiguration$ = [9, n0, _DIC,
|
|
1412
|
+
{ [_ht]: ["POST", "/DeleteIngestConfiguration", 200] }, () => DeleteIngestConfigurationRequest$, () => DeleteIngestConfigurationResponse$
|
|
1413
|
+
];
|
|
1414
|
+
var DeletePublicKey$ = [9, n0, _DPK,
|
|
1415
|
+
{ [_ht]: ["POST", "/DeletePublicKey", 200] }, () => DeletePublicKeyRequest$, () => DeletePublicKeyResponse$
|
|
1416
|
+
];
|
|
1417
|
+
var DeleteStage$ = [9, n0, _DSe,
|
|
1418
|
+
{ [_ht]: ["POST", "/DeleteStage", 200] }, () => DeleteStageRequest$, () => DeleteStageResponse$
|
|
1419
|
+
];
|
|
1420
|
+
var DeleteStorageConfiguration$ = [9, n0, _DSC,
|
|
1421
|
+
{ [_ht]: ["POST", "/DeleteStorageConfiguration", 200] }, () => DeleteStorageConfigurationRequest$, () => DeleteStorageConfigurationResponse$
|
|
1422
|
+
];
|
|
1423
|
+
var DisconnectParticipant$ = [9, n0, _DP,
|
|
1424
|
+
{ [_ht]: ["POST", "/DisconnectParticipant", 200] }, () => DisconnectParticipantRequest$, () => DisconnectParticipantResponse$
|
|
1425
|
+
];
|
|
1426
|
+
var GetComposition$ = [9, n0, _GCe,
|
|
1427
|
+
{ [_ht]: ["POST", "/GetComposition", 200] }, () => GetCompositionRequest$, () => GetCompositionResponse$
|
|
1428
|
+
];
|
|
1429
|
+
var GetEncoderConfiguration$ = [9, n0, _GEC,
|
|
1430
|
+
{ [_ht]: ["POST", "/GetEncoderConfiguration", 200] }, () => GetEncoderConfigurationRequest$, () => GetEncoderConfigurationResponse$
|
|
1431
|
+
];
|
|
1432
|
+
var GetIngestConfiguration$ = [9, n0, _GIC,
|
|
1433
|
+
{ [_ht]: ["POST", "/GetIngestConfiguration", 200] }, () => GetIngestConfigurationRequest$, () => GetIngestConfigurationResponse$
|
|
1434
|
+
];
|
|
1435
|
+
var GetParticipant$ = [9, n0, _GP,
|
|
1436
|
+
{ [_ht]: ["POST", "/GetParticipant", 200] }, () => GetParticipantRequest$, () => GetParticipantResponse$
|
|
1437
|
+
];
|
|
1438
|
+
var GetPublicKey$ = [9, n0, _GPK,
|
|
1439
|
+
{ [_ht]: ["POST", "/GetPublicKey", 200] }, () => GetPublicKeyRequest$, () => GetPublicKeyResponse$
|
|
1440
|
+
];
|
|
1441
|
+
var GetStage$ = [9, n0, _GS,
|
|
1442
|
+
{ [_ht]: ["POST", "/GetStage", 200] }, () => GetStageRequest$, () => GetStageResponse$
|
|
1443
|
+
];
|
|
1444
|
+
var GetStageSession$ = [9, n0, _GSS,
|
|
1445
|
+
{ [_ht]: ["POST", "/GetStageSession", 200] }, () => GetStageSessionRequest$, () => GetStageSessionResponse$
|
|
1446
|
+
];
|
|
1447
|
+
var GetStorageConfiguration$ = [9, n0, _GSC,
|
|
1448
|
+
{ [_ht]: ["POST", "/GetStorageConfiguration", 200] }, () => GetStorageConfigurationRequest$, () => GetStorageConfigurationResponse$
|
|
1449
|
+
];
|
|
1450
|
+
var ImportPublicKey$ = [9, n0, _IPK,
|
|
1451
|
+
{ [_ht]: ["POST", "/ImportPublicKey", 200] }, () => ImportPublicKeyRequest$, () => ImportPublicKeyResponse$
|
|
1452
|
+
];
|
|
1453
|
+
var ListCompositions$ = [9, n0, _LCi,
|
|
1454
|
+
{ [_ht]: ["POST", "/ListCompositions", 200] }, () => ListCompositionsRequest$, () => ListCompositionsResponse$
|
|
1455
|
+
];
|
|
1456
|
+
var ListEncoderConfigurations$ = [9, n0, _LEC,
|
|
1457
|
+
{ [_ht]: ["POST", "/ListEncoderConfigurations", 200] }, () => ListEncoderConfigurationsRequest$, () => ListEncoderConfigurationsResponse$
|
|
1458
|
+
];
|
|
1459
|
+
var ListIngestConfigurations$ = [9, n0, _LIC,
|
|
1460
|
+
{ [_ht]: ["POST", "/ListIngestConfigurations", 200] }, () => ListIngestConfigurationsRequest$, () => ListIngestConfigurationsResponse$
|
|
1461
|
+
];
|
|
1462
|
+
var ListParticipantEvents$ = [9, n0, _LPE,
|
|
1463
|
+
{ [_ht]: ["POST", "/ListParticipantEvents", 200] }, () => ListParticipantEventsRequest$, () => ListParticipantEventsResponse$
|
|
1464
|
+
];
|
|
1465
|
+
var ListParticipantReplicas$ = [9, n0, _LPRis,
|
|
1466
|
+
{ [_ht]: ["POST", "/ListParticipantReplicas", 200] }, () => ListParticipantReplicasRequest$, () => ListParticipantReplicasResponse$
|
|
1467
|
+
];
|
|
1468
|
+
var ListParticipants$ = [9, n0, _LP,
|
|
1469
|
+
{ [_ht]: ["POST", "/ListParticipants", 200] }, () => ListParticipantsRequest$, () => ListParticipantsResponse$
|
|
1470
|
+
];
|
|
1471
|
+
var ListPublicKeys$ = [9, n0, _LPK,
|
|
1472
|
+
{ [_ht]: ["POST", "/ListPublicKeys", 200] }, () => ListPublicKeysRequest$, () => ListPublicKeysResponse$
|
|
1473
|
+
];
|
|
1474
|
+
var ListStages$ = [9, n0, _LS,
|
|
1475
|
+
{ [_ht]: ["POST", "/ListStages", 200] }, () => ListStagesRequest$, () => ListStagesResponse$
|
|
1476
|
+
];
|
|
1477
|
+
var ListStageSessions$ = [9, n0, _LSS,
|
|
1478
|
+
{ [_ht]: ["POST", "/ListStageSessions", 200] }, () => ListStageSessionsRequest$, () => ListStageSessionsResponse$
|
|
1479
|
+
];
|
|
1480
|
+
var ListStorageConfigurations$ = [9, n0, _LSC,
|
|
1481
|
+
{ [_ht]: ["POST", "/ListStorageConfigurations", 200] }, () => ListStorageConfigurationsRequest$, () => ListStorageConfigurationsResponse$
|
|
1482
|
+
];
|
|
1483
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1484
|
+
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1485
|
+
];
|
|
1486
|
+
var StartComposition$ = [9, n0, _SCt,
|
|
1487
|
+
{ [_ht]: ["POST", "/StartComposition", 200] }, () => StartCompositionRequest$, () => StartCompositionResponse$
|
|
1488
|
+
];
|
|
1489
|
+
var StartParticipantReplication$ = [9, n0, _SPR,
|
|
1490
|
+
{ [_ht]: ["POST", "/StartParticipantReplication", 200] }, () => StartParticipantReplicationRequest$, () => StartParticipantReplicationResponse$
|
|
1491
|
+
];
|
|
1492
|
+
var StopComposition$ = [9, n0, _SCto,
|
|
1493
|
+
{ [_ht]: ["POST", "/StopComposition", 200] }, () => StopCompositionRequest$, () => StopCompositionResponse$
|
|
1494
|
+
];
|
|
1495
|
+
var StopParticipantReplication$ = [9, n0, _SPRt,
|
|
1496
|
+
{ [_ht]: ["POST", "/StopParticipantReplication", 200] }, () => StopParticipantReplicationRequest$, () => StopParticipantReplicationResponse$
|
|
1497
|
+
];
|
|
1498
|
+
var TagResource$ = [9, n0, _TR,
|
|
1499
|
+
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1500
|
+
];
|
|
1501
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1502
|
+
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1503
|
+
];
|
|
1504
|
+
var UpdateIngestConfiguration$ = [9, n0, _UIC,
|
|
1505
|
+
{ [_ht]: ["POST", "/UpdateIngestConfiguration", 200] }, () => UpdateIngestConfigurationRequest$, () => UpdateIngestConfigurationResponse$
|
|
1506
|
+
];
|
|
1507
|
+
var UpdateStage$ = [9, n0, _US,
|
|
1508
|
+
{ [_ht]: ["POST", "/UpdateStage", 200] }, () => UpdateStageRequest$, () => UpdateStageResponse$
|
|
1509
|
+
];
|
|
1510
|
+
|
|
1511
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1512
|
+
return {
|
|
1513
|
+
apiVersion: "2020-07-14",
|
|
1514
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1515
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1516
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1517
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1518
|
+
extensions: config?.extensions ?? [],
|
|
1519
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultIVSRealTimeHttpAuthSchemeProvider,
|
|
1520
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1521
|
+
{
|
|
1522
|
+
schemeId: "aws.auth#sigv4",
|
|
1523
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1524
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1525
|
+
},
|
|
1526
|
+
],
|
|
1527
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1528
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1529
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1530
|
+
defaultNamespace: "com.amazonaws.ivsrealtime",
|
|
1531
|
+
errorTypeRegistries,
|
|
1532
|
+
version: "2020-07-14",
|
|
1533
|
+
serviceTarget: "AmazonInteractiveVideoServiceRealTime",
|
|
1534
|
+
},
|
|
1535
|
+
serviceId: config?.serviceId ?? "IVS RealTime",
|
|
1536
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1537
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1538
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1539
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1540
|
+
};
|
|
1541
|
+
};
|
|
1542
|
+
|
|
1543
|
+
const getRuntimeConfig = (config) => {
|
|
1544
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1545
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1546
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1547
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1548
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1549
|
+
const loaderConfig = {
|
|
1550
|
+
profile: config?.profile,
|
|
1551
|
+
logger: clientSharedValues.logger,
|
|
1552
|
+
};
|
|
1553
|
+
return {
|
|
1554
|
+
...clientSharedValues,
|
|
1555
|
+
...config,
|
|
1556
|
+
runtime: "node",
|
|
1557
|
+
defaultsMode,
|
|
1558
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1559
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1560
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1561
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1562
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1563
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1564
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1565
|
+
retryMode: config?.retryMode ??
|
|
1566
|
+
loadConfig({
|
|
1567
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1568
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1569
|
+
}, config),
|
|
1570
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1571
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1572
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1573
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1574
|
+
};
|
|
1575
|
+
};
|
|
1576
|
+
|
|
34
1577
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1578
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1579
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -785,68 +2328,243 @@ const ParticipantRecordingFilterByRecordingState = {
|
|
|
785
2328
|
STOPPING: "STOPPING",
|
|
786
2329
|
};
|
|
787
2330
|
|
|
2331
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2332
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2333
|
+
exports.AutoParticipantRecordingConfiguration$ = AutoParticipantRecordingConfiguration$;
|
|
2334
|
+
exports.ChannelDestinationConfiguration$ = ChannelDestinationConfiguration$;
|
|
2335
|
+
exports.Composition$ = Composition$;
|
|
2336
|
+
exports.CompositionRecordingHlsConfiguration$ = CompositionRecordingHlsConfiguration$;
|
|
788
2337
|
exports.CompositionState = CompositionState;
|
|
2338
|
+
exports.CompositionSummary$ = CompositionSummary$;
|
|
2339
|
+
exports.CompositionThumbnailConfiguration$ = CompositionThumbnailConfiguration$;
|
|
2340
|
+
exports.ConflictException = ConflictException;
|
|
2341
|
+
exports.ConflictException$ = ConflictException$;
|
|
2342
|
+
exports.CreateEncoderConfiguration$ = CreateEncoderConfiguration$;
|
|
789
2343
|
exports.CreateEncoderConfigurationCommand = CreateEncoderConfigurationCommand;
|
|
2344
|
+
exports.CreateEncoderConfigurationRequest$ = CreateEncoderConfigurationRequest$;
|
|
2345
|
+
exports.CreateEncoderConfigurationResponse$ = CreateEncoderConfigurationResponse$;
|
|
2346
|
+
exports.CreateIngestConfiguration$ = CreateIngestConfiguration$;
|
|
790
2347
|
exports.CreateIngestConfigurationCommand = CreateIngestConfigurationCommand;
|
|
2348
|
+
exports.CreateIngestConfigurationRequest$ = CreateIngestConfigurationRequest$;
|
|
2349
|
+
exports.CreateIngestConfigurationResponse$ = CreateIngestConfigurationResponse$;
|
|
2350
|
+
exports.CreateParticipantToken$ = CreateParticipantToken$;
|
|
791
2351
|
exports.CreateParticipantTokenCommand = CreateParticipantTokenCommand;
|
|
2352
|
+
exports.CreateParticipantTokenRequest$ = CreateParticipantTokenRequest$;
|
|
2353
|
+
exports.CreateParticipantTokenResponse$ = CreateParticipantTokenResponse$;
|
|
2354
|
+
exports.CreateStage$ = CreateStage$;
|
|
792
2355
|
exports.CreateStageCommand = CreateStageCommand;
|
|
2356
|
+
exports.CreateStageRequest$ = CreateStageRequest$;
|
|
2357
|
+
exports.CreateStageResponse$ = CreateStageResponse$;
|
|
2358
|
+
exports.CreateStorageConfiguration$ = CreateStorageConfiguration$;
|
|
793
2359
|
exports.CreateStorageConfigurationCommand = CreateStorageConfigurationCommand;
|
|
2360
|
+
exports.CreateStorageConfigurationRequest$ = CreateStorageConfigurationRequest$;
|
|
2361
|
+
exports.CreateStorageConfigurationResponse$ = CreateStorageConfigurationResponse$;
|
|
2362
|
+
exports.DeleteEncoderConfiguration$ = DeleteEncoderConfiguration$;
|
|
794
2363
|
exports.DeleteEncoderConfigurationCommand = DeleteEncoderConfigurationCommand;
|
|
2364
|
+
exports.DeleteEncoderConfigurationRequest$ = DeleteEncoderConfigurationRequest$;
|
|
2365
|
+
exports.DeleteEncoderConfigurationResponse$ = DeleteEncoderConfigurationResponse$;
|
|
2366
|
+
exports.DeleteIngestConfiguration$ = DeleteIngestConfiguration$;
|
|
795
2367
|
exports.DeleteIngestConfigurationCommand = DeleteIngestConfigurationCommand;
|
|
2368
|
+
exports.DeleteIngestConfigurationRequest$ = DeleteIngestConfigurationRequest$;
|
|
2369
|
+
exports.DeleteIngestConfigurationResponse$ = DeleteIngestConfigurationResponse$;
|
|
2370
|
+
exports.DeletePublicKey$ = DeletePublicKey$;
|
|
796
2371
|
exports.DeletePublicKeyCommand = DeletePublicKeyCommand;
|
|
2372
|
+
exports.DeletePublicKeyRequest$ = DeletePublicKeyRequest$;
|
|
2373
|
+
exports.DeletePublicKeyResponse$ = DeletePublicKeyResponse$;
|
|
2374
|
+
exports.DeleteStage$ = DeleteStage$;
|
|
797
2375
|
exports.DeleteStageCommand = DeleteStageCommand;
|
|
2376
|
+
exports.DeleteStageRequest$ = DeleteStageRequest$;
|
|
2377
|
+
exports.DeleteStageResponse$ = DeleteStageResponse$;
|
|
2378
|
+
exports.DeleteStorageConfiguration$ = DeleteStorageConfiguration$;
|
|
798
2379
|
exports.DeleteStorageConfigurationCommand = DeleteStorageConfigurationCommand;
|
|
2380
|
+
exports.DeleteStorageConfigurationRequest$ = DeleteStorageConfigurationRequest$;
|
|
2381
|
+
exports.DeleteStorageConfigurationResponse$ = DeleteStorageConfigurationResponse$;
|
|
2382
|
+
exports.Destination$ = Destination$;
|
|
2383
|
+
exports.DestinationConfiguration$ = DestinationConfiguration$;
|
|
2384
|
+
exports.DestinationDetail$ = DestinationDetail$;
|
|
799
2385
|
exports.DestinationState = DestinationState;
|
|
2386
|
+
exports.DestinationSummary$ = DestinationSummary$;
|
|
2387
|
+
exports.DisconnectParticipant$ = DisconnectParticipant$;
|
|
800
2388
|
exports.DisconnectParticipantCommand = DisconnectParticipantCommand;
|
|
2389
|
+
exports.DisconnectParticipantRequest$ = DisconnectParticipantRequest$;
|
|
2390
|
+
exports.DisconnectParticipantResponse$ = DisconnectParticipantResponse$;
|
|
2391
|
+
exports.EncoderConfiguration$ = EncoderConfiguration$;
|
|
2392
|
+
exports.EncoderConfigurationSummary$ = EncoderConfigurationSummary$;
|
|
2393
|
+
exports.Event$ = Event$;
|
|
801
2394
|
exports.EventErrorCode = EventErrorCode;
|
|
802
2395
|
exports.EventName = EventName;
|
|
2396
|
+
exports.ExchangedParticipantToken$ = ExchangedParticipantToken$;
|
|
2397
|
+
exports.GetComposition$ = GetComposition$;
|
|
803
2398
|
exports.GetCompositionCommand = GetCompositionCommand;
|
|
2399
|
+
exports.GetCompositionRequest$ = GetCompositionRequest$;
|
|
2400
|
+
exports.GetCompositionResponse$ = GetCompositionResponse$;
|
|
2401
|
+
exports.GetEncoderConfiguration$ = GetEncoderConfiguration$;
|
|
804
2402
|
exports.GetEncoderConfigurationCommand = GetEncoderConfigurationCommand;
|
|
2403
|
+
exports.GetEncoderConfigurationRequest$ = GetEncoderConfigurationRequest$;
|
|
2404
|
+
exports.GetEncoderConfigurationResponse$ = GetEncoderConfigurationResponse$;
|
|
2405
|
+
exports.GetIngestConfiguration$ = GetIngestConfiguration$;
|
|
805
2406
|
exports.GetIngestConfigurationCommand = GetIngestConfigurationCommand;
|
|
2407
|
+
exports.GetIngestConfigurationRequest$ = GetIngestConfigurationRequest$;
|
|
2408
|
+
exports.GetIngestConfigurationResponse$ = GetIngestConfigurationResponse$;
|
|
2409
|
+
exports.GetParticipant$ = GetParticipant$;
|
|
806
2410
|
exports.GetParticipantCommand = GetParticipantCommand;
|
|
2411
|
+
exports.GetParticipantRequest$ = GetParticipantRequest$;
|
|
2412
|
+
exports.GetParticipantResponse$ = GetParticipantResponse$;
|
|
2413
|
+
exports.GetPublicKey$ = GetPublicKey$;
|
|
807
2414
|
exports.GetPublicKeyCommand = GetPublicKeyCommand;
|
|
2415
|
+
exports.GetPublicKeyRequest$ = GetPublicKeyRequest$;
|
|
2416
|
+
exports.GetPublicKeyResponse$ = GetPublicKeyResponse$;
|
|
2417
|
+
exports.GetStage$ = GetStage$;
|
|
808
2418
|
exports.GetStageCommand = GetStageCommand;
|
|
2419
|
+
exports.GetStageRequest$ = GetStageRequest$;
|
|
2420
|
+
exports.GetStageResponse$ = GetStageResponse$;
|
|
2421
|
+
exports.GetStageSession$ = GetStageSession$;
|
|
809
2422
|
exports.GetStageSessionCommand = GetStageSessionCommand;
|
|
2423
|
+
exports.GetStageSessionRequest$ = GetStageSessionRequest$;
|
|
2424
|
+
exports.GetStageSessionResponse$ = GetStageSessionResponse$;
|
|
2425
|
+
exports.GetStorageConfiguration$ = GetStorageConfiguration$;
|
|
810
2426
|
exports.GetStorageConfigurationCommand = GetStorageConfigurationCommand;
|
|
2427
|
+
exports.GetStorageConfigurationRequest$ = GetStorageConfigurationRequest$;
|
|
2428
|
+
exports.GetStorageConfigurationResponse$ = GetStorageConfigurationResponse$;
|
|
2429
|
+
exports.GridConfiguration$ = GridConfiguration$;
|
|
811
2430
|
exports.IVSRealTime = IVSRealTime;
|
|
812
2431
|
exports.IVSRealTimeClient = IVSRealTimeClient;
|
|
2432
|
+
exports.IVSRealTimeServiceException = IVSRealTimeServiceException;
|
|
2433
|
+
exports.IVSRealTimeServiceException$ = IVSRealTimeServiceException$;
|
|
2434
|
+
exports.ImportPublicKey$ = ImportPublicKey$;
|
|
813
2435
|
exports.ImportPublicKeyCommand = ImportPublicKeyCommand;
|
|
2436
|
+
exports.ImportPublicKeyRequest$ = ImportPublicKeyRequest$;
|
|
2437
|
+
exports.ImportPublicKeyResponse$ = ImportPublicKeyResponse$;
|
|
2438
|
+
exports.IngestConfiguration$ = IngestConfiguration$;
|
|
814
2439
|
exports.IngestConfigurationState = IngestConfigurationState;
|
|
2440
|
+
exports.IngestConfigurationSummary$ = IngestConfigurationSummary$;
|
|
815
2441
|
exports.IngestProtocol = IngestProtocol;
|
|
2442
|
+
exports.InternalServerException = InternalServerException;
|
|
2443
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2444
|
+
exports.LayoutConfiguration$ = LayoutConfiguration$;
|
|
2445
|
+
exports.ListCompositions$ = ListCompositions$;
|
|
816
2446
|
exports.ListCompositionsCommand = ListCompositionsCommand;
|
|
2447
|
+
exports.ListCompositionsRequest$ = ListCompositionsRequest$;
|
|
2448
|
+
exports.ListCompositionsResponse$ = ListCompositionsResponse$;
|
|
2449
|
+
exports.ListEncoderConfigurations$ = ListEncoderConfigurations$;
|
|
817
2450
|
exports.ListEncoderConfigurationsCommand = ListEncoderConfigurationsCommand;
|
|
2451
|
+
exports.ListEncoderConfigurationsRequest$ = ListEncoderConfigurationsRequest$;
|
|
2452
|
+
exports.ListEncoderConfigurationsResponse$ = ListEncoderConfigurationsResponse$;
|
|
2453
|
+
exports.ListIngestConfigurations$ = ListIngestConfigurations$;
|
|
818
2454
|
exports.ListIngestConfigurationsCommand = ListIngestConfigurationsCommand;
|
|
2455
|
+
exports.ListIngestConfigurationsRequest$ = ListIngestConfigurationsRequest$;
|
|
2456
|
+
exports.ListIngestConfigurationsResponse$ = ListIngestConfigurationsResponse$;
|
|
2457
|
+
exports.ListParticipantEvents$ = ListParticipantEvents$;
|
|
819
2458
|
exports.ListParticipantEventsCommand = ListParticipantEventsCommand;
|
|
2459
|
+
exports.ListParticipantEventsRequest$ = ListParticipantEventsRequest$;
|
|
2460
|
+
exports.ListParticipantEventsResponse$ = ListParticipantEventsResponse$;
|
|
2461
|
+
exports.ListParticipantReplicas$ = ListParticipantReplicas$;
|
|
820
2462
|
exports.ListParticipantReplicasCommand = ListParticipantReplicasCommand;
|
|
2463
|
+
exports.ListParticipantReplicasRequest$ = ListParticipantReplicasRequest$;
|
|
2464
|
+
exports.ListParticipantReplicasResponse$ = ListParticipantReplicasResponse$;
|
|
2465
|
+
exports.ListParticipants$ = ListParticipants$;
|
|
821
2466
|
exports.ListParticipantsCommand = ListParticipantsCommand;
|
|
2467
|
+
exports.ListParticipantsRequest$ = ListParticipantsRequest$;
|
|
2468
|
+
exports.ListParticipantsResponse$ = ListParticipantsResponse$;
|
|
2469
|
+
exports.ListPublicKeys$ = ListPublicKeys$;
|
|
822
2470
|
exports.ListPublicKeysCommand = ListPublicKeysCommand;
|
|
2471
|
+
exports.ListPublicKeysRequest$ = ListPublicKeysRequest$;
|
|
2472
|
+
exports.ListPublicKeysResponse$ = ListPublicKeysResponse$;
|
|
2473
|
+
exports.ListStageSessions$ = ListStageSessions$;
|
|
823
2474
|
exports.ListStageSessionsCommand = ListStageSessionsCommand;
|
|
2475
|
+
exports.ListStageSessionsRequest$ = ListStageSessionsRequest$;
|
|
2476
|
+
exports.ListStageSessionsResponse$ = ListStageSessionsResponse$;
|
|
2477
|
+
exports.ListStages$ = ListStages$;
|
|
824
2478
|
exports.ListStagesCommand = ListStagesCommand;
|
|
2479
|
+
exports.ListStagesRequest$ = ListStagesRequest$;
|
|
2480
|
+
exports.ListStagesResponse$ = ListStagesResponse$;
|
|
2481
|
+
exports.ListStorageConfigurations$ = ListStorageConfigurations$;
|
|
825
2482
|
exports.ListStorageConfigurationsCommand = ListStorageConfigurationsCommand;
|
|
2483
|
+
exports.ListStorageConfigurationsRequest$ = ListStorageConfigurationsRequest$;
|
|
2484
|
+
exports.ListStorageConfigurationsResponse$ = ListStorageConfigurationsResponse$;
|
|
2485
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
826
2486
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2487
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2488
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2489
|
+
exports.Participant$ = Participant$;
|
|
827
2490
|
exports.ParticipantProtocol = ParticipantProtocol;
|
|
828
2491
|
exports.ParticipantRecordingFilterByRecordingState = ParticipantRecordingFilterByRecordingState;
|
|
2492
|
+
exports.ParticipantRecordingHlsConfiguration$ = ParticipantRecordingHlsConfiguration$;
|
|
829
2493
|
exports.ParticipantRecordingMediaType = ParticipantRecordingMediaType;
|
|
830
2494
|
exports.ParticipantRecordingState = ParticipantRecordingState;
|
|
2495
|
+
exports.ParticipantReplica$ = ParticipantReplica$;
|
|
831
2496
|
exports.ParticipantState = ParticipantState;
|
|
2497
|
+
exports.ParticipantSummary$ = ParticipantSummary$;
|
|
2498
|
+
exports.ParticipantThumbnailConfiguration$ = ParticipantThumbnailConfiguration$;
|
|
2499
|
+
exports.ParticipantToken$ = ParticipantToken$;
|
|
832
2500
|
exports.ParticipantTokenCapability = ParticipantTokenCapability;
|
|
2501
|
+
exports.ParticipantTokenConfiguration$ = ParticipantTokenConfiguration$;
|
|
2502
|
+
exports.PendingVerification = PendingVerification;
|
|
2503
|
+
exports.PendingVerification$ = PendingVerification$;
|
|
833
2504
|
exports.PipBehavior = PipBehavior;
|
|
2505
|
+
exports.PipConfiguration$ = PipConfiguration$;
|
|
834
2506
|
exports.PipPosition = PipPosition;
|
|
2507
|
+
exports.PublicKey$ = PublicKey$;
|
|
2508
|
+
exports.PublicKeySummary$ = PublicKeySummary$;
|
|
2509
|
+
exports.RecordingConfiguration$ = RecordingConfiguration$;
|
|
835
2510
|
exports.RecordingConfigurationFormat = RecordingConfigurationFormat;
|
|
2511
|
+
exports.RedundantIngestCredential$ = RedundantIngestCredential$;
|
|
836
2512
|
exports.ReplicationState = ReplicationState;
|
|
837
2513
|
exports.ReplicationType = ReplicationType;
|
|
2514
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2515
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2516
|
+
exports.S3DestinationConfiguration$ = S3DestinationConfiguration$;
|
|
2517
|
+
exports.S3Detail$ = S3Detail$;
|
|
2518
|
+
exports.S3StorageConfiguration$ = S3StorageConfiguration$;
|
|
2519
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2520
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2521
|
+
exports.Stage$ = Stage$;
|
|
2522
|
+
exports.StageEndpoints$ = StageEndpoints$;
|
|
2523
|
+
exports.StageSession$ = StageSession$;
|
|
2524
|
+
exports.StageSessionSummary$ = StageSessionSummary$;
|
|
2525
|
+
exports.StageSummary$ = StageSummary$;
|
|
2526
|
+
exports.StartComposition$ = StartComposition$;
|
|
838
2527
|
exports.StartCompositionCommand = StartCompositionCommand;
|
|
2528
|
+
exports.StartCompositionRequest$ = StartCompositionRequest$;
|
|
2529
|
+
exports.StartCompositionResponse$ = StartCompositionResponse$;
|
|
2530
|
+
exports.StartParticipantReplication$ = StartParticipantReplication$;
|
|
839
2531
|
exports.StartParticipantReplicationCommand = StartParticipantReplicationCommand;
|
|
2532
|
+
exports.StartParticipantReplicationRequest$ = StartParticipantReplicationRequest$;
|
|
2533
|
+
exports.StartParticipantReplicationResponse$ = StartParticipantReplicationResponse$;
|
|
2534
|
+
exports.StopComposition$ = StopComposition$;
|
|
840
2535
|
exports.StopCompositionCommand = StopCompositionCommand;
|
|
2536
|
+
exports.StopCompositionRequest$ = StopCompositionRequest$;
|
|
2537
|
+
exports.StopCompositionResponse$ = StopCompositionResponse$;
|
|
2538
|
+
exports.StopParticipantReplication$ = StopParticipantReplication$;
|
|
841
2539
|
exports.StopParticipantReplicationCommand = StopParticipantReplicationCommand;
|
|
2540
|
+
exports.StopParticipantReplicationRequest$ = StopParticipantReplicationRequest$;
|
|
2541
|
+
exports.StopParticipantReplicationResponse$ = StopParticipantReplicationResponse$;
|
|
2542
|
+
exports.StorageConfiguration$ = StorageConfiguration$;
|
|
2543
|
+
exports.StorageConfigurationSummary$ = StorageConfigurationSummary$;
|
|
2544
|
+
exports.TagResource$ = TagResource$;
|
|
842
2545
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2546
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2547
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
843
2548
|
exports.ThumbnailRecordingMode = ThumbnailRecordingMode;
|
|
844
2549
|
exports.ThumbnailStorageType = ThumbnailStorageType;
|
|
2550
|
+
exports.UntagResource$ = UntagResource$;
|
|
845
2551
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2552
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2553
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2554
|
+
exports.UpdateIngestConfiguration$ = UpdateIngestConfiguration$;
|
|
846
2555
|
exports.UpdateIngestConfigurationCommand = UpdateIngestConfigurationCommand;
|
|
2556
|
+
exports.UpdateIngestConfigurationRequest$ = UpdateIngestConfigurationRequest$;
|
|
2557
|
+
exports.UpdateIngestConfigurationResponse$ = UpdateIngestConfigurationResponse$;
|
|
2558
|
+
exports.UpdateStage$ = UpdateStage$;
|
|
847
2559
|
exports.UpdateStageCommand = UpdateStageCommand;
|
|
2560
|
+
exports.UpdateStageRequest$ = UpdateStageRequest$;
|
|
2561
|
+
exports.UpdateStageResponse$ = UpdateStageResponse$;
|
|
2562
|
+
exports.ValidationException = ValidationException;
|
|
2563
|
+
exports.ValidationException$ = ValidationException$;
|
|
2564
|
+
exports.Video$ = Video$;
|
|
848
2565
|
exports.VideoAspectRatio = VideoAspectRatio;
|
|
849
2566
|
exports.VideoFillMode = VideoFillMode;
|
|
2567
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
850
2568
|
exports.paginateListCompositions = paginateListCompositions;
|
|
851
2569
|
exports.paginateListEncoderConfigurations = paginateListEncoderConfigurations;
|
|
852
2570
|
exports.paginateListIngestConfigurations = paginateListIngestConfigurations;
|