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