@aws-sdk/client-ivs-realtime 3.721.0 → 3.723.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 +238 -153
- package/dist-es/IVSRealTimeClient.js +1 -0
- package/dist-es/models/models_0.js +21 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -202,7 +202,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
202
202
|
}, "resolveRuntimeExtensions");
|
|
203
203
|
|
|
204
204
|
// src/IVSRealTimeClient.ts
|
|
205
|
-
var
|
|
205
|
+
var IVSRealTimeClient = class extends import_smithy_client.Client {
|
|
206
|
+
static {
|
|
207
|
+
__name(this, "IVSRealTimeClient");
|
|
208
|
+
}
|
|
209
|
+
/**
|
|
210
|
+
* The resolved configuration of IVSRealTimeClient class. This is resolved and normalized from the {@link IVSRealTimeClientConfig | constructor configuration interface}.
|
|
211
|
+
*/
|
|
212
|
+
config;
|
|
206
213
|
constructor(...[configuration]) {
|
|
207
214
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
208
215
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -212,7 +219,7 @@ var _IVSRealTimeClient = class _IVSRealTimeClient extends import_smithy_client.C
|
|
|
212
219
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
213
220
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
214
221
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
215
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
222
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
216
223
|
super(_config_8);
|
|
217
224
|
this.config = _config_8;
|
|
218
225
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -240,8 +247,6 @@ var _IVSRealTimeClient = class _IVSRealTimeClient extends import_smithy_client.C
|
|
|
240
247
|
super.destroy();
|
|
241
248
|
}
|
|
242
249
|
};
|
|
243
|
-
__name(_IVSRealTimeClient, "IVSRealTimeClient");
|
|
244
|
-
var IVSRealTimeClient = _IVSRealTimeClient;
|
|
245
250
|
|
|
246
251
|
// src/IVSRealTime.ts
|
|
247
252
|
|
|
@@ -259,7 +264,10 @@ var import_uuid = require("uuid");
|
|
|
259
264
|
|
|
260
265
|
// src/models/IVSRealTimeServiceException.ts
|
|
261
266
|
|
|
262
|
-
var
|
|
267
|
+
var IVSRealTimeServiceException = class _IVSRealTimeServiceException extends import_smithy_client.ServiceException {
|
|
268
|
+
static {
|
|
269
|
+
__name(this, "IVSRealTimeServiceException");
|
|
270
|
+
}
|
|
263
271
|
/**
|
|
264
272
|
* @internal
|
|
265
273
|
*/
|
|
@@ -268,12 +276,20 @@ var _IVSRealTimeServiceException = class _IVSRealTimeServiceException extends im
|
|
|
268
276
|
Object.setPrototypeOf(this, _IVSRealTimeServiceException.prototype);
|
|
269
277
|
}
|
|
270
278
|
};
|
|
271
|
-
__name(_IVSRealTimeServiceException, "IVSRealTimeServiceException");
|
|
272
|
-
var IVSRealTimeServiceException = _IVSRealTimeServiceException;
|
|
273
279
|
|
|
274
280
|
// src/models/models_0.ts
|
|
275
281
|
|
|
276
|
-
var
|
|
282
|
+
var AccessDeniedException = class _AccessDeniedException extends IVSRealTimeServiceException {
|
|
283
|
+
static {
|
|
284
|
+
__name(this, "AccessDeniedException");
|
|
285
|
+
}
|
|
286
|
+
name = "AccessDeniedException";
|
|
287
|
+
$fault = "client";
|
|
288
|
+
/**
|
|
289
|
+
* <p>User does not have sufficient access to perform this action.</p>
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
exceptionMessage;
|
|
277
293
|
/**
|
|
278
294
|
* @internal
|
|
279
295
|
*/
|
|
@@ -283,15 +299,21 @@ var _AccessDeniedException = class _AccessDeniedException extends IVSRealTimeSer
|
|
|
283
299
|
$fault: "client",
|
|
284
300
|
...opts
|
|
285
301
|
});
|
|
286
|
-
this.name = "AccessDeniedException";
|
|
287
|
-
this.$fault = "client";
|
|
288
302
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
289
303
|
this.exceptionMessage = opts.exceptionMessage;
|
|
290
304
|
}
|
|
291
305
|
};
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
306
|
+
var ConflictException = class _ConflictException extends IVSRealTimeServiceException {
|
|
307
|
+
static {
|
|
308
|
+
__name(this, "ConflictException");
|
|
309
|
+
}
|
|
310
|
+
name = "ConflictException";
|
|
311
|
+
$fault = "client";
|
|
312
|
+
/**
|
|
313
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
314
|
+
* @public
|
|
315
|
+
*/
|
|
316
|
+
exceptionMessage;
|
|
295
317
|
/**
|
|
296
318
|
* @internal
|
|
297
319
|
*/
|
|
@@ -301,15 +323,21 @@ var _ConflictException = class _ConflictException extends IVSRealTimeServiceExce
|
|
|
301
323
|
$fault: "client",
|
|
302
324
|
...opts
|
|
303
325
|
});
|
|
304
|
-
this.name = "ConflictException";
|
|
305
|
-
this.$fault = "client";
|
|
306
326
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
307
327
|
this.exceptionMessage = opts.exceptionMessage;
|
|
308
328
|
}
|
|
309
329
|
};
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
330
|
+
var InternalServerException = class _InternalServerException extends IVSRealTimeServiceException {
|
|
331
|
+
static {
|
|
332
|
+
__name(this, "InternalServerException");
|
|
333
|
+
}
|
|
334
|
+
name = "InternalServerException";
|
|
335
|
+
$fault = "server";
|
|
336
|
+
/**
|
|
337
|
+
* <p>Unexpected error during processing of request.</p>
|
|
338
|
+
* @public
|
|
339
|
+
*/
|
|
340
|
+
exceptionMessage;
|
|
313
341
|
/**
|
|
314
342
|
* @internal
|
|
315
343
|
*/
|
|
@@ -319,15 +347,21 @@ var _InternalServerException = class _InternalServerException extends IVSRealTim
|
|
|
319
347
|
$fault: "server",
|
|
320
348
|
...opts
|
|
321
349
|
});
|
|
322
|
-
this.name = "InternalServerException";
|
|
323
|
-
this.$fault = "server";
|
|
324
350
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
325
351
|
this.exceptionMessage = opts.exceptionMessage;
|
|
326
352
|
}
|
|
327
353
|
};
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
354
|
+
var PendingVerification = class _PendingVerification extends IVSRealTimeServiceException {
|
|
355
|
+
static {
|
|
356
|
+
__name(this, "PendingVerification");
|
|
357
|
+
}
|
|
358
|
+
name = "PendingVerification";
|
|
359
|
+
$fault = "client";
|
|
360
|
+
/**
|
|
361
|
+
* <p> Your account is pending verification. </p>
|
|
362
|
+
* @public
|
|
363
|
+
*/
|
|
364
|
+
exceptionMessage;
|
|
331
365
|
/**
|
|
332
366
|
* @internal
|
|
333
367
|
*/
|
|
@@ -337,15 +371,21 @@ var _PendingVerification = class _PendingVerification extends IVSRealTimeService
|
|
|
337
371
|
$fault: "client",
|
|
338
372
|
...opts
|
|
339
373
|
});
|
|
340
|
-
this.name = "PendingVerification";
|
|
341
|
-
this.$fault = "client";
|
|
342
374
|
Object.setPrototypeOf(this, _PendingVerification.prototype);
|
|
343
375
|
this.exceptionMessage = opts.exceptionMessage;
|
|
344
376
|
}
|
|
345
377
|
};
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
378
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends IVSRealTimeServiceException {
|
|
379
|
+
static {
|
|
380
|
+
__name(this, "ResourceNotFoundException");
|
|
381
|
+
}
|
|
382
|
+
name = "ResourceNotFoundException";
|
|
383
|
+
$fault = "client";
|
|
384
|
+
/**
|
|
385
|
+
* <p>Request references a resource which does not exist.</p>
|
|
386
|
+
* @public
|
|
387
|
+
*/
|
|
388
|
+
exceptionMessage;
|
|
349
389
|
/**
|
|
350
390
|
* @internal
|
|
351
391
|
*/
|
|
@@ -355,15 +395,21 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends IVSRea
|
|
|
355
395
|
$fault: "client",
|
|
356
396
|
...opts
|
|
357
397
|
});
|
|
358
|
-
this.name = "ResourceNotFoundException";
|
|
359
|
-
this.$fault = "client";
|
|
360
398
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
361
399
|
this.exceptionMessage = opts.exceptionMessage;
|
|
362
400
|
}
|
|
363
401
|
};
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
402
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends IVSRealTimeServiceException {
|
|
403
|
+
static {
|
|
404
|
+
__name(this, "ServiceQuotaExceededException");
|
|
405
|
+
}
|
|
406
|
+
name = "ServiceQuotaExceededException";
|
|
407
|
+
$fault = "client";
|
|
408
|
+
/**
|
|
409
|
+
* <p>Request would cause a service quota to be exceeded.</p>
|
|
410
|
+
* @public
|
|
411
|
+
*/
|
|
412
|
+
exceptionMessage;
|
|
367
413
|
/**
|
|
368
414
|
* @internal
|
|
369
415
|
*/
|
|
@@ -373,15 +419,21 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
373
419
|
$fault: "client",
|
|
374
420
|
...opts
|
|
375
421
|
});
|
|
376
|
-
this.name = "ServiceQuotaExceededException";
|
|
377
|
-
this.$fault = "client";
|
|
378
422
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
379
423
|
this.exceptionMessage = opts.exceptionMessage;
|
|
380
424
|
}
|
|
381
425
|
};
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
426
|
+
var ValidationException = class _ValidationException extends IVSRealTimeServiceException {
|
|
427
|
+
static {
|
|
428
|
+
__name(this, "ValidationException");
|
|
429
|
+
}
|
|
430
|
+
name = "ValidationException";
|
|
431
|
+
$fault = "client";
|
|
432
|
+
/**
|
|
433
|
+
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
exceptionMessage;
|
|
385
437
|
/**
|
|
386
438
|
* @internal
|
|
387
439
|
*/
|
|
@@ -391,14 +443,10 @@ var _ValidationException = class _ValidationException extends IVSRealTimeService
|
|
|
391
443
|
$fault: "client",
|
|
392
444
|
...opts
|
|
393
445
|
});
|
|
394
|
-
this.name = "ValidationException";
|
|
395
|
-
this.$fault = "client";
|
|
396
446
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
397
447
|
this.exceptionMessage = opts.exceptionMessage;
|
|
398
448
|
}
|
|
399
449
|
};
|
|
400
|
-
__name(_ValidationException, "ValidationException");
|
|
401
|
-
var ValidationException = _ValidationException;
|
|
402
450
|
var IngestProtocol = {
|
|
403
451
|
RTMP: "RTMP",
|
|
404
452
|
RTMPS: "RTMPS"
|
|
@@ -1927,505 +1975,541 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
|
1927
1975
|
var _tK = "tagKeys";
|
|
1928
1976
|
|
|
1929
1977
|
// src/commands/CreateEncoderConfigurationCommand.ts
|
|
1930
|
-
var
|
|
1978
|
+
var CreateEncoderConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1931
1979
|
return [
|
|
1932
1980
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1933
1981
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1934
1982
|
];
|
|
1935
1983
|
}).s("AmazonInteractiveVideoServiceRealTime", "CreateEncoderConfiguration", {}).n("IVSRealTimeClient", "CreateEncoderConfigurationCommand").f(void 0, void 0).ser(se_CreateEncoderConfigurationCommand).de(de_CreateEncoderConfigurationCommand).build() {
|
|
1984
|
+
static {
|
|
1985
|
+
__name(this, "CreateEncoderConfigurationCommand");
|
|
1986
|
+
}
|
|
1936
1987
|
};
|
|
1937
|
-
__name(_CreateEncoderConfigurationCommand, "CreateEncoderConfigurationCommand");
|
|
1938
|
-
var CreateEncoderConfigurationCommand = _CreateEncoderConfigurationCommand;
|
|
1939
1988
|
|
|
1940
1989
|
// src/commands/CreateIngestConfigurationCommand.ts
|
|
1941
1990
|
|
|
1942
1991
|
|
|
1943
1992
|
|
|
1944
|
-
var
|
|
1993
|
+
var CreateIngestConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1945
1994
|
return [
|
|
1946
1995
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1947
1996
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1948
1997
|
];
|
|
1949
1998
|
}).s("AmazonInteractiveVideoServiceRealTime", "CreateIngestConfiguration", {}).n("IVSRealTimeClient", "CreateIngestConfigurationCommand").f(void 0, CreateIngestConfigurationResponseFilterSensitiveLog).ser(se_CreateIngestConfigurationCommand).de(de_CreateIngestConfigurationCommand).build() {
|
|
1999
|
+
static {
|
|
2000
|
+
__name(this, "CreateIngestConfigurationCommand");
|
|
2001
|
+
}
|
|
1950
2002
|
};
|
|
1951
|
-
__name(_CreateIngestConfigurationCommand, "CreateIngestConfigurationCommand");
|
|
1952
|
-
var CreateIngestConfigurationCommand = _CreateIngestConfigurationCommand;
|
|
1953
2003
|
|
|
1954
2004
|
// src/commands/CreateParticipantTokenCommand.ts
|
|
1955
2005
|
|
|
1956
2006
|
|
|
1957
2007
|
|
|
1958
|
-
var
|
|
2008
|
+
var CreateParticipantTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1959
2009
|
return [
|
|
1960
2010
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1961
2011
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1962
2012
|
];
|
|
1963
2013
|
}).s("AmazonInteractiveVideoServiceRealTime", "CreateParticipantToken", {}).n("IVSRealTimeClient", "CreateParticipantTokenCommand").f(void 0, CreateParticipantTokenResponseFilterSensitiveLog).ser(se_CreateParticipantTokenCommand).de(de_CreateParticipantTokenCommand).build() {
|
|
2014
|
+
static {
|
|
2015
|
+
__name(this, "CreateParticipantTokenCommand");
|
|
2016
|
+
}
|
|
1964
2017
|
};
|
|
1965
|
-
__name(_CreateParticipantTokenCommand, "CreateParticipantTokenCommand");
|
|
1966
|
-
var CreateParticipantTokenCommand = _CreateParticipantTokenCommand;
|
|
1967
2018
|
|
|
1968
2019
|
// src/commands/CreateStageCommand.ts
|
|
1969
2020
|
|
|
1970
2021
|
|
|
1971
2022
|
|
|
1972
|
-
var
|
|
2023
|
+
var CreateStageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1973
2024
|
return [
|
|
1974
2025
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1975
2026
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1976
2027
|
];
|
|
1977
2028
|
}).s("AmazonInteractiveVideoServiceRealTime", "CreateStage", {}).n("IVSRealTimeClient", "CreateStageCommand").f(void 0, CreateStageResponseFilterSensitiveLog).ser(se_CreateStageCommand).de(de_CreateStageCommand).build() {
|
|
2029
|
+
static {
|
|
2030
|
+
__name(this, "CreateStageCommand");
|
|
2031
|
+
}
|
|
1978
2032
|
};
|
|
1979
|
-
__name(_CreateStageCommand, "CreateStageCommand");
|
|
1980
|
-
var CreateStageCommand = _CreateStageCommand;
|
|
1981
2033
|
|
|
1982
2034
|
// src/commands/CreateStorageConfigurationCommand.ts
|
|
1983
2035
|
|
|
1984
2036
|
|
|
1985
2037
|
|
|
1986
|
-
var
|
|
2038
|
+
var CreateStorageConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1987
2039
|
return [
|
|
1988
2040
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1989
2041
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1990
2042
|
];
|
|
1991
2043
|
}).s("AmazonInteractiveVideoServiceRealTime", "CreateStorageConfiguration", {}).n("IVSRealTimeClient", "CreateStorageConfigurationCommand").f(void 0, void 0).ser(se_CreateStorageConfigurationCommand).de(de_CreateStorageConfigurationCommand).build() {
|
|
2044
|
+
static {
|
|
2045
|
+
__name(this, "CreateStorageConfigurationCommand");
|
|
2046
|
+
}
|
|
1992
2047
|
};
|
|
1993
|
-
__name(_CreateStorageConfigurationCommand, "CreateStorageConfigurationCommand");
|
|
1994
|
-
var CreateStorageConfigurationCommand = _CreateStorageConfigurationCommand;
|
|
1995
2048
|
|
|
1996
2049
|
// src/commands/DeleteEncoderConfigurationCommand.ts
|
|
1997
2050
|
|
|
1998
2051
|
|
|
1999
2052
|
|
|
2000
|
-
var
|
|
2053
|
+
var DeleteEncoderConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2001
2054
|
return [
|
|
2002
2055
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2003
2056
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2004
2057
|
];
|
|
2005
2058
|
}).s("AmazonInteractiveVideoServiceRealTime", "DeleteEncoderConfiguration", {}).n("IVSRealTimeClient", "DeleteEncoderConfigurationCommand").f(void 0, void 0).ser(se_DeleteEncoderConfigurationCommand).de(de_DeleteEncoderConfigurationCommand).build() {
|
|
2059
|
+
static {
|
|
2060
|
+
__name(this, "DeleteEncoderConfigurationCommand");
|
|
2061
|
+
}
|
|
2006
2062
|
};
|
|
2007
|
-
__name(_DeleteEncoderConfigurationCommand, "DeleteEncoderConfigurationCommand");
|
|
2008
|
-
var DeleteEncoderConfigurationCommand = _DeleteEncoderConfigurationCommand;
|
|
2009
2063
|
|
|
2010
2064
|
// src/commands/DeleteIngestConfigurationCommand.ts
|
|
2011
2065
|
|
|
2012
2066
|
|
|
2013
2067
|
|
|
2014
|
-
var
|
|
2068
|
+
var DeleteIngestConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2015
2069
|
return [
|
|
2016
2070
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2017
2071
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2018
2072
|
];
|
|
2019
2073
|
}).s("AmazonInteractiveVideoServiceRealTime", "DeleteIngestConfiguration", {}).n("IVSRealTimeClient", "DeleteIngestConfigurationCommand").f(void 0, void 0).ser(se_DeleteIngestConfigurationCommand).de(de_DeleteIngestConfigurationCommand).build() {
|
|
2074
|
+
static {
|
|
2075
|
+
__name(this, "DeleteIngestConfigurationCommand");
|
|
2076
|
+
}
|
|
2020
2077
|
};
|
|
2021
|
-
__name(_DeleteIngestConfigurationCommand, "DeleteIngestConfigurationCommand");
|
|
2022
|
-
var DeleteIngestConfigurationCommand = _DeleteIngestConfigurationCommand;
|
|
2023
2078
|
|
|
2024
2079
|
// src/commands/DeletePublicKeyCommand.ts
|
|
2025
2080
|
|
|
2026
2081
|
|
|
2027
2082
|
|
|
2028
|
-
var
|
|
2083
|
+
var DeletePublicKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2029
2084
|
return [
|
|
2030
2085
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2031
2086
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2032
2087
|
];
|
|
2033
2088
|
}).s("AmazonInteractiveVideoServiceRealTime", "DeletePublicKey", {}).n("IVSRealTimeClient", "DeletePublicKeyCommand").f(void 0, void 0).ser(se_DeletePublicKeyCommand).de(de_DeletePublicKeyCommand).build() {
|
|
2089
|
+
static {
|
|
2090
|
+
__name(this, "DeletePublicKeyCommand");
|
|
2091
|
+
}
|
|
2034
2092
|
};
|
|
2035
|
-
__name(_DeletePublicKeyCommand, "DeletePublicKeyCommand");
|
|
2036
|
-
var DeletePublicKeyCommand = _DeletePublicKeyCommand;
|
|
2037
2093
|
|
|
2038
2094
|
// src/commands/DeleteStageCommand.ts
|
|
2039
2095
|
|
|
2040
2096
|
|
|
2041
2097
|
|
|
2042
|
-
var
|
|
2098
|
+
var DeleteStageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2043
2099
|
return [
|
|
2044
2100
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2045
2101
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2046
2102
|
];
|
|
2047
2103
|
}).s("AmazonInteractiveVideoServiceRealTime", "DeleteStage", {}).n("IVSRealTimeClient", "DeleteStageCommand").f(void 0, void 0).ser(se_DeleteStageCommand).de(de_DeleteStageCommand).build() {
|
|
2104
|
+
static {
|
|
2105
|
+
__name(this, "DeleteStageCommand");
|
|
2106
|
+
}
|
|
2048
2107
|
};
|
|
2049
|
-
__name(_DeleteStageCommand, "DeleteStageCommand");
|
|
2050
|
-
var DeleteStageCommand = _DeleteStageCommand;
|
|
2051
2108
|
|
|
2052
2109
|
// src/commands/DeleteStorageConfigurationCommand.ts
|
|
2053
2110
|
|
|
2054
2111
|
|
|
2055
2112
|
|
|
2056
|
-
var
|
|
2113
|
+
var DeleteStorageConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2057
2114
|
return [
|
|
2058
2115
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2059
2116
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2060
2117
|
];
|
|
2061
2118
|
}).s("AmazonInteractiveVideoServiceRealTime", "DeleteStorageConfiguration", {}).n("IVSRealTimeClient", "DeleteStorageConfigurationCommand").f(void 0, void 0).ser(se_DeleteStorageConfigurationCommand).de(de_DeleteStorageConfigurationCommand).build() {
|
|
2119
|
+
static {
|
|
2120
|
+
__name(this, "DeleteStorageConfigurationCommand");
|
|
2121
|
+
}
|
|
2062
2122
|
};
|
|
2063
|
-
__name(_DeleteStorageConfigurationCommand, "DeleteStorageConfigurationCommand");
|
|
2064
|
-
var DeleteStorageConfigurationCommand = _DeleteStorageConfigurationCommand;
|
|
2065
2123
|
|
|
2066
2124
|
// src/commands/DisconnectParticipantCommand.ts
|
|
2067
2125
|
|
|
2068
2126
|
|
|
2069
2127
|
|
|
2070
|
-
var
|
|
2128
|
+
var DisconnectParticipantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2071
2129
|
return [
|
|
2072
2130
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2073
2131
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2074
2132
|
];
|
|
2075
2133
|
}).s("AmazonInteractiveVideoServiceRealTime", "DisconnectParticipant", {}).n("IVSRealTimeClient", "DisconnectParticipantCommand").f(void 0, void 0).ser(se_DisconnectParticipantCommand).de(de_DisconnectParticipantCommand).build() {
|
|
2134
|
+
static {
|
|
2135
|
+
__name(this, "DisconnectParticipantCommand");
|
|
2136
|
+
}
|
|
2076
2137
|
};
|
|
2077
|
-
__name(_DisconnectParticipantCommand, "DisconnectParticipantCommand");
|
|
2078
|
-
var DisconnectParticipantCommand = _DisconnectParticipantCommand;
|
|
2079
2138
|
|
|
2080
2139
|
// src/commands/GetCompositionCommand.ts
|
|
2081
2140
|
|
|
2082
2141
|
|
|
2083
2142
|
|
|
2084
|
-
var
|
|
2143
|
+
var GetCompositionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2085
2144
|
return [
|
|
2086
2145
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2087
2146
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2088
2147
|
];
|
|
2089
2148
|
}).s("AmazonInteractiveVideoServiceRealTime", "GetComposition", {}).n("IVSRealTimeClient", "GetCompositionCommand").f(void 0, void 0).ser(se_GetCompositionCommand).de(de_GetCompositionCommand).build() {
|
|
2149
|
+
static {
|
|
2150
|
+
__name(this, "GetCompositionCommand");
|
|
2151
|
+
}
|
|
2090
2152
|
};
|
|
2091
|
-
__name(_GetCompositionCommand, "GetCompositionCommand");
|
|
2092
|
-
var GetCompositionCommand = _GetCompositionCommand;
|
|
2093
2153
|
|
|
2094
2154
|
// src/commands/GetEncoderConfigurationCommand.ts
|
|
2095
2155
|
|
|
2096
2156
|
|
|
2097
2157
|
|
|
2098
|
-
var
|
|
2158
|
+
var GetEncoderConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2099
2159
|
return [
|
|
2100
2160
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2101
2161
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2102
2162
|
];
|
|
2103
2163
|
}).s("AmazonInteractiveVideoServiceRealTime", "GetEncoderConfiguration", {}).n("IVSRealTimeClient", "GetEncoderConfigurationCommand").f(void 0, void 0).ser(se_GetEncoderConfigurationCommand).de(de_GetEncoderConfigurationCommand).build() {
|
|
2164
|
+
static {
|
|
2165
|
+
__name(this, "GetEncoderConfigurationCommand");
|
|
2166
|
+
}
|
|
2104
2167
|
};
|
|
2105
|
-
__name(_GetEncoderConfigurationCommand, "GetEncoderConfigurationCommand");
|
|
2106
|
-
var GetEncoderConfigurationCommand = _GetEncoderConfigurationCommand;
|
|
2107
2168
|
|
|
2108
2169
|
// src/commands/GetIngestConfigurationCommand.ts
|
|
2109
2170
|
|
|
2110
2171
|
|
|
2111
2172
|
|
|
2112
|
-
var
|
|
2173
|
+
var GetIngestConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2113
2174
|
return [
|
|
2114
2175
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2115
2176
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2116
2177
|
];
|
|
2117
2178
|
}).s("AmazonInteractiveVideoServiceRealTime", "GetIngestConfiguration", {}).n("IVSRealTimeClient", "GetIngestConfigurationCommand").f(void 0, GetIngestConfigurationResponseFilterSensitiveLog).ser(se_GetIngestConfigurationCommand).de(de_GetIngestConfigurationCommand).build() {
|
|
2179
|
+
static {
|
|
2180
|
+
__name(this, "GetIngestConfigurationCommand");
|
|
2181
|
+
}
|
|
2118
2182
|
};
|
|
2119
|
-
__name(_GetIngestConfigurationCommand, "GetIngestConfigurationCommand");
|
|
2120
|
-
var GetIngestConfigurationCommand = _GetIngestConfigurationCommand;
|
|
2121
2183
|
|
|
2122
2184
|
// src/commands/GetParticipantCommand.ts
|
|
2123
2185
|
|
|
2124
2186
|
|
|
2125
2187
|
|
|
2126
|
-
var
|
|
2188
|
+
var GetParticipantCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2127
2189
|
return [
|
|
2128
2190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2129
2191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2130
2192
|
];
|
|
2131
2193
|
}).s("AmazonInteractiveVideoServiceRealTime", "GetParticipant", {}).n("IVSRealTimeClient", "GetParticipantCommand").f(void 0, void 0).ser(se_GetParticipantCommand).de(de_GetParticipantCommand).build() {
|
|
2194
|
+
static {
|
|
2195
|
+
__name(this, "GetParticipantCommand");
|
|
2196
|
+
}
|
|
2132
2197
|
};
|
|
2133
|
-
__name(_GetParticipantCommand, "GetParticipantCommand");
|
|
2134
|
-
var GetParticipantCommand = _GetParticipantCommand;
|
|
2135
2198
|
|
|
2136
2199
|
// src/commands/GetPublicKeyCommand.ts
|
|
2137
2200
|
|
|
2138
2201
|
|
|
2139
2202
|
|
|
2140
|
-
var
|
|
2203
|
+
var GetPublicKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2141
2204
|
return [
|
|
2142
2205
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2143
2206
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2144
2207
|
];
|
|
2145
2208
|
}).s("AmazonInteractiveVideoServiceRealTime", "GetPublicKey", {}).n("IVSRealTimeClient", "GetPublicKeyCommand").f(void 0, void 0).ser(se_GetPublicKeyCommand).de(de_GetPublicKeyCommand).build() {
|
|
2209
|
+
static {
|
|
2210
|
+
__name(this, "GetPublicKeyCommand");
|
|
2211
|
+
}
|
|
2146
2212
|
};
|
|
2147
|
-
__name(_GetPublicKeyCommand, "GetPublicKeyCommand");
|
|
2148
|
-
var GetPublicKeyCommand = _GetPublicKeyCommand;
|
|
2149
2213
|
|
|
2150
2214
|
// src/commands/GetStageCommand.ts
|
|
2151
2215
|
|
|
2152
2216
|
|
|
2153
2217
|
|
|
2154
|
-
var
|
|
2218
|
+
var GetStageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2155
2219
|
return [
|
|
2156
2220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2157
2221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2158
2222
|
];
|
|
2159
2223
|
}).s("AmazonInteractiveVideoServiceRealTime", "GetStage", {}).n("IVSRealTimeClient", "GetStageCommand").f(void 0, void 0).ser(se_GetStageCommand).de(de_GetStageCommand).build() {
|
|
2224
|
+
static {
|
|
2225
|
+
__name(this, "GetStageCommand");
|
|
2226
|
+
}
|
|
2160
2227
|
};
|
|
2161
|
-
__name(_GetStageCommand, "GetStageCommand");
|
|
2162
|
-
var GetStageCommand = _GetStageCommand;
|
|
2163
2228
|
|
|
2164
2229
|
// src/commands/GetStageSessionCommand.ts
|
|
2165
2230
|
|
|
2166
2231
|
|
|
2167
2232
|
|
|
2168
|
-
var
|
|
2233
|
+
var GetStageSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2169
2234
|
return [
|
|
2170
2235
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2171
2236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2172
2237
|
];
|
|
2173
2238
|
}).s("AmazonInteractiveVideoServiceRealTime", "GetStageSession", {}).n("IVSRealTimeClient", "GetStageSessionCommand").f(void 0, void 0).ser(se_GetStageSessionCommand).de(de_GetStageSessionCommand).build() {
|
|
2239
|
+
static {
|
|
2240
|
+
__name(this, "GetStageSessionCommand");
|
|
2241
|
+
}
|
|
2174
2242
|
};
|
|
2175
|
-
__name(_GetStageSessionCommand, "GetStageSessionCommand");
|
|
2176
|
-
var GetStageSessionCommand = _GetStageSessionCommand;
|
|
2177
2243
|
|
|
2178
2244
|
// src/commands/GetStorageConfigurationCommand.ts
|
|
2179
2245
|
|
|
2180
2246
|
|
|
2181
2247
|
|
|
2182
|
-
var
|
|
2248
|
+
var GetStorageConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2183
2249
|
return [
|
|
2184
2250
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2185
2251
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2186
2252
|
];
|
|
2187
2253
|
}).s("AmazonInteractiveVideoServiceRealTime", "GetStorageConfiguration", {}).n("IVSRealTimeClient", "GetStorageConfigurationCommand").f(void 0, void 0).ser(se_GetStorageConfigurationCommand).de(de_GetStorageConfigurationCommand).build() {
|
|
2254
|
+
static {
|
|
2255
|
+
__name(this, "GetStorageConfigurationCommand");
|
|
2256
|
+
}
|
|
2188
2257
|
};
|
|
2189
|
-
__name(_GetStorageConfigurationCommand, "GetStorageConfigurationCommand");
|
|
2190
|
-
var GetStorageConfigurationCommand = _GetStorageConfigurationCommand;
|
|
2191
2258
|
|
|
2192
2259
|
// src/commands/ImportPublicKeyCommand.ts
|
|
2193
2260
|
|
|
2194
2261
|
|
|
2195
2262
|
|
|
2196
|
-
var
|
|
2263
|
+
var ImportPublicKeyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2197
2264
|
return [
|
|
2198
2265
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2199
2266
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2200
2267
|
];
|
|
2201
2268
|
}).s("AmazonInteractiveVideoServiceRealTime", "ImportPublicKey", {}).n("IVSRealTimeClient", "ImportPublicKeyCommand").f(void 0, void 0).ser(se_ImportPublicKeyCommand).de(de_ImportPublicKeyCommand).build() {
|
|
2269
|
+
static {
|
|
2270
|
+
__name(this, "ImportPublicKeyCommand");
|
|
2271
|
+
}
|
|
2202
2272
|
};
|
|
2203
|
-
__name(_ImportPublicKeyCommand, "ImportPublicKeyCommand");
|
|
2204
|
-
var ImportPublicKeyCommand = _ImportPublicKeyCommand;
|
|
2205
2273
|
|
|
2206
2274
|
// src/commands/ListCompositionsCommand.ts
|
|
2207
2275
|
|
|
2208
2276
|
|
|
2209
2277
|
|
|
2210
|
-
var
|
|
2278
|
+
var ListCompositionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2211
2279
|
return [
|
|
2212
2280
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2213
2281
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2214
2282
|
];
|
|
2215
2283
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListCompositions", {}).n("IVSRealTimeClient", "ListCompositionsCommand").f(void 0, void 0).ser(se_ListCompositionsCommand).de(de_ListCompositionsCommand).build() {
|
|
2284
|
+
static {
|
|
2285
|
+
__name(this, "ListCompositionsCommand");
|
|
2286
|
+
}
|
|
2216
2287
|
};
|
|
2217
|
-
__name(_ListCompositionsCommand, "ListCompositionsCommand");
|
|
2218
|
-
var ListCompositionsCommand = _ListCompositionsCommand;
|
|
2219
2288
|
|
|
2220
2289
|
// src/commands/ListEncoderConfigurationsCommand.ts
|
|
2221
2290
|
|
|
2222
2291
|
|
|
2223
2292
|
|
|
2224
|
-
var
|
|
2293
|
+
var ListEncoderConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2225
2294
|
return [
|
|
2226
2295
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2227
2296
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2228
2297
|
];
|
|
2229
2298
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListEncoderConfigurations", {}).n("IVSRealTimeClient", "ListEncoderConfigurationsCommand").f(void 0, void 0).ser(se_ListEncoderConfigurationsCommand).de(de_ListEncoderConfigurationsCommand).build() {
|
|
2299
|
+
static {
|
|
2300
|
+
__name(this, "ListEncoderConfigurationsCommand");
|
|
2301
|
+
}
|
|
2230
2302
|
};
|
|
2231
|
-
__name(_ListEncoderConfigurationsCommand, "ListEncoderConfigurationsCommand");
|
|
2232
|
-
var ListEncoderConfigurationsCommand = _ListEncoderConfigurationsCommand;
|
|
2233
2303
|
|
|
2234
2304
|
// src/commands/ListIngestConfigurationsCommand.ts
|
|
2235
2305
|
|
|
2236
2306
|
|
|
2237
2307
|
|
|
2238
|
-
var
|
|
2308
|
+
var ListIngestConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2239
2309
|
return [
|
|
2240
2310
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2241
2311
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2242
2312
|
];
|
|
2243
2313
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListIngestConfigurations", {}).n("IVSRealTimeClient", "ListIngestConfigurationsCommand").f(void 0, void 0).ser(se_ListIngestConfigurationsCommand).de(de_ListIngestConfigurationsCommand).build() {
|
|
2314
|
+
static {
|
|
2315
|
+
__name(this, "ListIngestConfigurationsCommand");
|
|
2316
|
+
}
|
|
2244
2317
|
};
|
|
2245
|
-
__name(_ListIngestConfigurationsCommand, "ListIngestConfigurationsCommand");
|
|
2246
|
-
var ListIngestConfigurationsCommand = _ListIngestConfigurationsCommand;
|
|
2247
2318
|
|
|
2248
2319
|
// src/commands/ListParticipantEventsCommand.ts
|
|
2249
2320
|
|
|
2250
2321
|
|
|
2251
2322
|
|
|
2252
|
-
var
|
|
2323
|
+
var ListParticipantEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2253
2324
|
return [
|
|
2254
2325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2255
2326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2256
2327
|
];
|
|
2257
2328
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListParticipantEvents", {}).n("IVSRealTimeClient", "ListParticipantEventsCommand").f(void 0, void 0).ser(se_ListParticipantEventsCommand).de(de_ListParticipantEventsCommand).build() {
|
|
2329
|
+
static {
|
|
2330
|
+
__name(this, "ListParticipantEventsCommand");
|
|
2331
|
+
}
|
|
2258
2332
|
};
|
|
2259
|
-
__name(_ListParticipantEventsCommand, "ListParticipantEventsCommand");
|
|
2260
|
-
var ListParticipantEventsCommand = _ListParticipantEventsCommand;
|
|
2261
2333
|
|
|
2262
2334
|
// src/commands/ListParticipantsCommand.ts
|
|
2263
2335
|
|
|
2264
2336
|
|
|
2265
2337
|
|
|
2266
|
-
var
|
|
2338
|
+
var ListParticipantsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2267
2339
|
return [
|
|
2268
2340
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2269
2341
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2270
2342
|
];
|
|
2271
2343
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListParticipants", {}).n("IVSRealTimeClient", "ListParticipantsCommand").f(void 0, void 0).ser(se_ListParticipantsCommand).de(de_ListParticipantsCommand).build() {
|
|
2344
|
+
static {
|
|
2345
|
+
__name(this, "ListParticipantsCommand");
|
|
2346
|
+
}
|
|
2272
2347
|
};
|
|
2273
|
-
__name(_ListParticipantsCommand, "ListParticipantsCommand");
|
|
2274
|
-
var ListParticipantsCommand = _ListParticipantsCommand;
|
|
2275
2348
|
|
|
2276
2349
|
// src/commands/ListPublicKeysCommand.ts
|
|
2277
2350
|
|
|
2278
2351
|
|
|
2279
2352
|
|
|
2280
|
-
var
|
|
2353
|
+
var ListPublicKeysCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2281
2354
|
return [
|
|
2282
2355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2283
2356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2284
2357
|
];
|
|
2285
2358
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListPublicKeys", {}).n("IVSRealTimeClient", "ListPublicKeysCommand").f(void 0, void 0).ser(se_ListPublicKeysCommand).de(de_ListPublicKeysCommand).build() {
|
|
2359
|
+
static {
|
|
2360
|
+
__name(this, "ListPublicKeysCommand");
|
|
2361
|
+
}
|
|
2286
2362
|
};
|
|
2287
|
-
__name(_ListPublicKeysCommand, "ListPublicKeysCommand");
|
|
2288
|
-
var ListPublicKeysCommand = _ListPublicKeysCommand;
|
|
2289
2363
|
|
|
2290
2364
|
// src/commands/ListStagesCommand.ts
|
|
2291
2365
|
|
|
2292
2366
|
|
|
2293
2367
|
|
|
2294
|
-
var
|
|
2368
|
+
var ListStagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2295
2369
|
return [
|
|
2296
2370
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2297
2371
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2298
2372
|
];
|
|
2299
2373
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListStages", {}).n("IVSRealTimeClient", "ListStagesCommand").f(void 0, void 0).ser(se_ListStagesCommand).de(de_ListStagesCommand).build() {
|
|
2374
|
+
static {
|
|
2375
|
+
__name(this, "ListStagesCommand");
|
|
2376
|
+
}
|
|
2300
2377
|
};
|
|
2301
|
-
__name(_ListStagesCommand, "ListStagesCommand");
|
|
2302
|
-
var ListStagesCommand = _ListStagesCommand;
|
|
2303
2378
|
|
|
2304
2379
|
// src/commands/ListStageSessionsCommand.ts
|
|
2305
2380
|
|
|
2306
2381
|
|
|
2307
2382
|
|
|
2308
|
-
var
|
|
2383
|
+
var ListStageSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2309
2384
|
return [
|
|
2310
2385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2311
2386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2312
2387
|
];
|
|
2313
2388
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListStageSessions", {}).n("IVSRealTimeClient", "ListStageSessionsCommand").f(void 0, void 0).ser(se_ListStageSessionsCommand).de(de_ListStageSessionsCommand).build() {
|
|
2389
|
+
static {
|
|
2390
|
+
__name(this, "ListStageSessionsCommand");
|
|
2391
|
+
}
|
|
2314
2392
|
};
|
|
2315
|
-
__name(_ListStageSessionsCommand, "ListStageSessionsCommand");
|
|
2316
|
-
var ListStageSessionsCommand = _ListStageSessionsCommand;
|
|
2317
2393
|
|
|
2318
2394
|
// src/commands/ListStorageConfigurationsCommand.ts
|
|
2319
2395
|
|
|
2320
2396
|
|
|
2321
2397
|
|
|
2322
|
-
var
|
|
2398
|
+
var ListStorageConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2323
2399
|
return [
|
|
2324
2400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2325
2401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2326
2402
|
];
|
|
2327
2403
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListStorageConfigurations", {}).n("IVSRealTimeClient", "ListStorageConfigurationsCommand").f(void 0, void 0).ser(se_ListStorageConfigurationsCommand).de(de_ListStorageConfigurationsCommand).build() {
|
|
2404
|
+
static {
|
|
2405
|
+
__name(this, "ListStorageConfigurationsCommand");
|
|
2406
|
+
}
|
|
2328
2407
|
};
|
|
2329
|
-
__name(_ListStorageConfigurationsCommand, "ListStorageConfigurationsCommand");
|
|
2330
|
-
var ListStorageConfigurationsCommand = _ListStorageConfigurationsCommand;
|
|
2331
2408
|
|
|
2332
2409
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2333
2410
|
|
|
2334
2411
|
|
|
2335
2412
|
|
|
2336
|
-
var
|
|
2413
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2337
2414
|
return [
|
|
2338
2415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2339
2416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2340
2417
|
];
|
|
2341
2418
|
}).s("AmazonInteractiveVideoServiceRealTime", "ListTagsForResource", {}).n("IVSRealTimeClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2419
|
+
static {
|
|
2420
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2421
|
+
}
|
|
2342
2422
|
};
|
|
2343
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2344
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2345
2423
|
|
|
2346
2424
|
// src/commands/StartCompositionCommand.ts
|
|
2347
2425
|
|
|
2348
2426
|
|
|
2349
2427
|
|
|
2350
|
-
var
|
|
2428
|
+
var StartCompositionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2351
2429
|
return [
|
|
2352
2430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2353
2431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2354
2432
|
];
|
|
2355
2433
|
}).s("AmazonInteractiveVideoServiceRealTime", "StartComposition", {}).n("IVSRealTimeClient", "StartCompositionCommand").f(void 0, void 0).ser(se_StartCompositionCommand).de(de_StartCompositionCommand).build() {
|
|
2434
|
+
static {
|
|
2435
|
+
__name(this, "StartCompositionCommand");
|
|
2436
|
+
}
|
|
2356
2437
|
};
|
|
2357
|
-
__name(_StartCompositionCommand, "StartCompositionCommand");
|
|
2358
|
-
var StartCompositionCommand = _StartCompositionCommand;
|
|
2359
2438
|
|
|
2360
2439
|
// src/commands/StopCompositionCommand.ts
|
|
2361
2440
|
|
|
2362
2441
|
|
|
2363
2442
|
|
|
2364
|
-
var
|
|
2443
|
+
var StopCompositionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2365
2444
|
return [
|
|
2366
2445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2367
2446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2368
2447
|
];
|
|
2369
2448
|
}).s("AmazonInteractiveVideoServiceRealTime", "StopComposition", {}).n("IVSRealTimeClient", "StopCompositionCommand").f(void 0, void 0).ser(se_StopCompositionCommand).de(de_StopCompositionCommand).build() {
|
|
2449
|
+
static {
|
|
2450
|
+
__name(this, "StopCompositionCommand");
|
|
2451
|
+
}
|
|
2370
2452
|
};
|
|
2371
|
-
__name(_StopCompositionCommand, "StopCompositionCommand");
|
|
2372
|
-
var StopCompositionCommand = _StopCompositionCommand;
|
|
2373
2453
|
|
|
2374
2454
|
// src/commands/TagResourceCommand.ts
|
|
2375
2455
|
|
|
2376
2456
|
|
|
2377
2457
|
|
|
2378
|
-
var
|
|
2458
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2379
2459
|
return [
|
|
2380
2460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2381
2461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2382
2462
|
];
|
|
2383
2463
|
}).s("AmazonInteractiveVideoServiceRealTime", "TagResource", {}).n("IVSRealTimeClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2464
|
+
static {
|
|
2465
|
+
__name(this, "TagResourceCommand");
|
|
2466
|
+
}
|
|
2384
2467
|
};
|
|
2385
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2386
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2387
2468
|
|
|
2388
2469
|
// src/commands/UntagResourceCommand.ts
|
|
2389
2470
|
|
|
2390
2471
|
|
|
2391
2472
|
|
|
2392
|
-
var
|
|
2473
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2393
2474
|
return [
|
|
2394
2475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2395
2476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2396
2477
|
];
|
|
2397
2478
|
}).s("AmazonInteractiveVideoServiceRealTime", "UntagResource", {}).n("IVSRealTimeClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2479
|
+
static {
|
|
2480
|
+
__name(this, "UntagResourceCommand");
|
|
2481
|
+
}
|
|
2398
2482
|
};
|
|
2399
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2400
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2401
2483
|
|
|
2402
2484
|
// src/commands/UpdateIngestConfigurationCommand.ts
|
|
2403
2485
|
|
|
2404
2486
|
|
|
2405
2487
|
|
|
2406
|
-
var
|
|
2488
|
+
var UpdateIngestConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2407
2489
|
return [
|
|
2408
2490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2409
2491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2410
2492
|
];
|
|
2411
2493
|
}).s("AmazonInteractiveVideoServiceRealTime", "UpdateIngestConfiguration", {}).n("IVSRealTimeClient", "UpdateIngestConfigurationCommand").f(void 0, UpdateIngestConfigurationResponseFilterSensitiveLog).ser(se_UpdateIngestConfigurationCommand).de(de_UpdateIngestConfigurationCommand).build() {
|
|
2494
|
+
static {
|
|
2495
|
+
__name(this, "UpdateIngestConfigurationCommand");
|
|
2496
|
+
}
|
|
2412
2497
|
};
|
|
2413
|
-
__name(_UpdateIngestConfigurationCommand, "UpdateIngestConfigurationCommand");
|
|
2414
|
-
var UpdateIngestConfigurationCommand = _UpdateIngestConfigurationCommand;
|
|
2415
2498
|
|
|
2416
2499
|
// src/commands/UpdateStageCommand.ts
|
|
2417
2500
|
|
|
2418
2501
|
|
|
2419
2502
|
|
|
2420
|
-
var
|
|
2503
|
+
var UpdateStageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2421
2504
|
return [
|
|
2422
2505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2423
2506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2424
2507
|
];
|
|
2425
2508
|
}).s("AmazonInteractiveVideoServiceRealTime", "UpdateStage", {}).n("IVSRealTimeClient", "UpdateStageCommand").f(void 0, void 0).ser(se_UpdateStageCommand).de(de_UpdateStageCommand).build() {
|
|
2509
|
+
static {
|
|
2510
|
+
__name(this, "UpdateStageCommand");
|
|
2511
|
+
}
|
|
2426
2512
|
};
|
|
2427
|
-
__name(_UpdateStageCommand, "UpdateStageCommand");
|
|
2428
|
-
var UpdateStageCommand = _UpdateStageCommand;
|
|
2429
2513
|
|
|
2430
2514
|
// src/IVSRealTime.ts
|
|
2431
2515
|
var commands = {
|
|
@@ -2466,10 +2550,11 @@ var commands = {
|
|
|
2466
2550
|
UpdateIngestConfigurationCommand,
|
|
2467
2551
|
UpdateStageCommand
|
|
2468
2552
|
};
|
|
2469
|
-
var
|
|
2553
|
+
var IVSRealTime = class extends IVSRealTimeClient {
|
|
2554
|
+
static {
|
|
2555
|
+
__name(this, "IVSRealTime");
|
|
2556
|
+
}
|
|
2470
2557
|
};
|
|
2471
|
-
__name(_IVSRealTime, "IVSRealTime");
|
|
2472
|
-
var IVSRealTime = _IVSRealTime;
|
|
2473
2558
|
(0, import_smithy_client.createAggregatedClient)(commands, IVSRealTime);
|
|
2474
2559
|
|
|
2475
2560
|
// src/pagination/ListCompositionsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class IVSRealTimeClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,92 +1,99 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { IVSRealTimeServiceException as __BaseException } from "./IVSRealTimeServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
6
|
+
exceptionMessage;
|
|
4
7
|
constructor(opts) {
|
|
5
8
|
super({
|
|
6
9
|
name: "AccessDeniedException",
|
|
7
10
|
$fault: "client",
|
|
8
11
|
...opts,
|
|
9
12
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
13
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
14
|
this.exceptionMessage = opts.exceptionMessage;
|
|
14
15
|
}
|
|
15
16
|
}
|
|
16
17
|
export class ConflictException extends __BaseException {
|
|
18
|
+
name = "ConflictException";
|
|
19
|
+
$fault = "client";
|
|
20
|
+
exceptionMessage;
|
|
17
21
|
constructor(opts) {
|
|
18
22
|
super({
|
|
19
23
|
name: "ConflictException",
|
|
20
24
|
$fault: "client",
|
|
21
25
|
...opts,
|
|
22
26
|
});
|
|
23
|
-
this.name = "ConflictException";
|
|
24
|
-
this.$fault = "client";
|
|
25
27
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
26
28
|
this.exceptionMessage = opts.exceptionMessage;
|
|
27
29
|
}
|
|
28
30
|
}
|
|
29
31
|
export class InternalServerException extends __BaseException {
|
|
32
|
+
name = "InternalServerException";
|
|
33
|
+
$fault = "server";
|
|
34
|
+
exceptionMessage;
|
|
30
35
|
constructor(opts) {
|
|
31
36
|
super({
|
|
32
37
|
name: "InternalServerException",
|
|
33
38
|
$fault: "server",
|
|
34
39
|
...opts,
|
|
35
40
|
});
|
|
36
|
-
this.name = "InternalServerException";
|
|
37
|
-
this.$fault = "server";
|
|
38
41
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
39
42
|
this.exceptionMessage = opts.exceptionMessage;
|
|
40
43
|
}
|
|
41
44
|
}
|
|
42
45
|
export class PendingVerification extends __BaseException {
|
|
46
|
+
name = "PendingVerification";
|
|
47
|
+
$fault = "client";
|
|
48
|
+
exceptionMessage;
|
|
43
49
|
constructor(opts) {
|
|
44
50
|
super({
|
|
45
51
|
name: "PendingVerification",
|
|
46
52
|
$fault: "client",
|
|
47
53
|
...opts,
|
|
48
54
|
});
|
|
49
|
-
this.name = "PendingVerification";
|
|
50
|
-
this.$fault = "client";
|
|
51
55
|
Object.setPrototypeOf(this, PendingVerification.prototype);
|
|
52
56
|
this.exceptionMessage = opts.exceptionMessage;
|
|
53
57
|
}
|
|
54
58
|
}
|
|
55
59
|
export class ResourceNotFoundException extends __BaseException {
|
|
60
|
+
name = "ResourceNotFoundException";
|
|
61
|
+
$fault = "client";
|
|
62
|
+
exceptionMessage;
|
|
56
63
|
constructor(opts) {
|
|
57
64
|
super({
|
|
58
65
|
name: "ResourceNotFoundException",
|
|
59
66
|
$fault: "client",
|
|
60
67
|
...opts,
|
|
61
68
|
});
|
|
62
|
-
this.name = "ResourceNotFoundException";
|
|
63
|
-
this.$fault = "client";
|
|
64
69
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
65
70
|
this.exceptionMessage = opts.exceptionMessage;
|
|
66
71
|
}
|
|
67
72
|
}
|
|
68
73
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
74
|
+
name = "ServiceQuotaExceededException";
|
|
75
|
+
$fault = "client";
|
|
76
|
+
exceptionMessage;
|
|
69
77
|
constructor(opts) {
|
|
70
78
|
super({
|
|
71
79
|
name: "ServiceQuotaExceededException",
|
|
72
80
|
$fault: "client",
|
|
73
81
|
...opts,
|
|
74
82
|
});
|
|
75
|
-
this.name = "ServiceQuotaExceededException";
|
|
76
|
-
this.$fault = "client";
|
|
77
83
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
78
84
|
this.exceptionMessage = opts.exceptionMessage;
|
|
79
85
|
}
|
|
80
86
|
}
|
|
81
87
|
export class ValidationException extends __BaseException {
|
|
88
|
+
name = "ValidationException";
|
|
89
|
+
$fault = "client";
|
|
90
|
+
exceptionMessage;
|
|
82
91
|
constructor(opts) {
|
|
83
92
|
super({
|
|
84
93
|
name: "ValidationException",
|
|
85
94
|
$fault: "client",
|
|
86
95
|
...opts,
|
|
87
96
|
});
|
|
88
|
-
this.name = "ValidationException";
|
|
89
|
-
this.$fault = "client";
|
|
90
97
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
91
98
|
this.exceptionMessage = opts.exceptionMessage;
|
|
92
99
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: IVSRealTimeClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs-realtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ivs-realtime",
|
|
@@ -20,58 +20,58 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|