@aws-sdk/client-mediapackage-vod 3.716.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 +127 -91
- package/dist-es/MediaPackageVodClient.js +1 -0
- package/dist-es/models/models_0.js +18 -12
- 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
|
@@ -160,7 +160,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
160
160
|
}, "resolveRuntimeExtensions");
|
|
161
161
|
|
|
162
162
|
// src/MediaPackageVodClient.ts
|
|
163
|
-
var
|
|
163
|
+
var MediaPackageVodClient = class extends import_smithy_client.Client {
|
|
164
|
+
static {
|
|
165
|
+
__name(this, "MediaPackageVodClient");
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* The resolved configuration of MediaPackageVodClient class. This is resolved and normalized from the {@link MediaPackageVodClientConfig | constructor configuration interface}.
|
|
169
|
+
*/
|
|
170
|
+
config;
|
|
164
171
|
constructor(...[configuration]) {
|
|
165
172
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
166
173
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -170,7 +177,7 @@ var _MediaPackageVodClient = class _MediaPackageVodClient extends import_smithy_
|
|
|
170
177
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
171
178
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
172
179
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
173
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
180
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
174
181
|
super(_config_8);
|
|
175
182
|
this.config = _config_8;
|
|
176
183
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -198,8 +205,6 @@ var _MediaPackageVodClient = class _MediaPackageVodClient extends import_smithy_
|
|
|
198
205
|
super.destroy();
|
|
199
206
|
}
|
|
200
207
|
};
|
|
201
|
-
__name(_MediaPackageVodClient, "MediaPackageVodClient");
|
|
202
|
-
var MediaPackageVodClient = _MediaPackageVodClient;
|
|
203
208
|
|
|
204
209
|
// src/MediaPackageVod.ts
|
|
205
210
|
|
|
@@ -216,7 +221,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
216
221
|
|
|
217
222
|
// src/models/MediaPackageVodServiceException.ts
|
|
218
223
|
|
|
219
|
-
var
|
|
224
|
+
var MediaPackageVodServiceException = class _MediaPackageVodServiceException extends import_smithy_client.ServiceException {
|
|
225
|
+
static {
|
|
226
|
+
__name(this, "MediaPackageVodServiceException");
|
|
227
|
+
}
|
|
220
228
|
/**
|
|
221
229
|
* @internal
|
|
222
230
|
*/
|
|
@@ -225,8 +233,6 @@ var _MediaPackageVodServiceException = class _MediaPackageVodServiceException ex
|
|
|
225
233
|
Object.setPrototypeOf(this, _MediaPackageVodServiceException.prototype);
|
|
226
234
|
}
|
|
227
235
|
};
|
|
228
|
-
__name(_MediaPackageVodServiceException, "MediaPackageVodServiceException");
|
|
229
|
-
var MediaPackageVodServiceException = _MediaPackageVodServiceException;
|
|
230
236
|
|
|
231
237
|
// src/models/models_0.ts
|
|
232
238
|
var __PeriodTriggersElement = {
|
|
@@ -282,7 +288,13 @@ var EncryptionMethod = {
|
|
|
282
288
|
AES_128: "AES_128",
|
|
283
289
|
SAMPLE_AES: "SAMPLE_AES"
|
|
284
290
|
};
|
|
285
|
-
var
|
|
291
|
+
var ForbiddenException = class _ForbiddenException extends MediaPackageVodServiceException {
|
|
292
|
+
static {
|
|
293
|
+
__name(this, "ForbiddenException");
|
|
294
|
+
}
|
|
295
|
+
name = "ForbiddenException";
|
|
296
|
+
$fault = "client";
|
|
297
|
+
Message;
|
|
286
298
|
/**
|
|
287
299
|
* @internal
|
|
288
300
|
*/
|
|
@@ -292,15 +304,17 @@ var _ForbiddenException = class _ForbiddenException extends MediaPackageVodServi
|
|
|
292
304
|
$fault: "client",
|
|
293
305
|
...opts
|
|
294
306
|
});
|
|
295
|
-
this.name = "ForbiddenException";
|
|
296
|
-
this.$fault = "client";
|
|
297
307
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
298
308
|
this.Message = opts.Message;
|
|
299
309
|
}
|
|
300
310
|
};
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
311
|
+
var InternalServerErrorException = class _InternalServerErrorException extends MediaPackageVodServiceException {
|
|
312
|
+
static {
|
|
313
|
+
__name(this, "InternalServerErrorException");
|
|
314
|
+
}
|
|
315
|
+
name = "InternalServerErrorException";
|
|
316
|
+
$fault = "server";
|
|
317
|
+
Message;
|
|
304
318
|
/**
|
|
305
319
|
* @internal
|
|
306
320
|
*/
|
|
@@ -310,15 +324,17 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
310
324
|
$fault: "server",
|
|
311
325
|
...opts
|
|
312
326
|
});
|
|
313
|
-
this.name = "InternalServerErrorException";
|
|
314
|
-
this.$fault = "server";
|
|
315
327
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
316
328
|
this.Message = opts.Message;
|
|
317
329
|
}
|
|
318
330
|
};
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
331
|
+
var NotFoundException = class _NotFoundException extends MediaPackageVodServiceException {
|
|
332
|
+
static {
|
|
333
|
+
__name(this, "NotFoundException");
|
|
334
|
+
}
|
|
335
|
+
name = "NotFoundException";
|
|
336
|
+
$fault = "client";
|
|
337
|
+
Message;
|
|
322
338
|
/**
|
|
323
339
|
* @internal
|
|
324
340
|
*/
|
|
@@ -328,15 +344,17 @@ var _NotFoundException = class _NotFoundException extends MediaPackageVodService
|
|
|
328
344
|
$fault: "client",
|
|
329
345
|
...opts
|
|
330
346
|
});
|
|
331
|
-
this.name = "NotFoundException";
|
|
332
|
-
this.$fault = "client";
|
|
333
347
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
334
348
|
this.Message = opts.Message;
|
|
335
349
|
}
|
|
336
350
|
};
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
351
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends MediaPackageVodServiceException {
|
|
352
|
+
static {
|
|
353
|
+
__name(this, "ServiceUnavailableException");
|
|
354
|
+
}
|
|
355
|
+
name = "ServiceUnavailableException";
|
|
356
|
+
$fault = "server";
|
|
357
|
+
Message;
|
|
340
358
|
/**
|
|
341
359
|
* @internal
|
|
342
360
|
*/
|
|
@@ -346,15 +364,17 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Me
|
|
|
346
364
|
$fault: "server",
|
|
347
365
|
...opts
|
|
348
366
|
});
|
|
349
|
-
this.name = "ServiceUnavailableException";
|
|
350
|
-
this.$fault = "server";
|
|
351
367
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
352
368
|
this.Message = opts.Message;
|
|
353
369
|
}
|
|
354
370
|
};
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
371
|
+
var TooManyRequestsException = class _TooManyRequestsException extends MediaPackageVodServiceException {
|
|
372
|
+
static {
|
|
373
|
+
__name(this, "TooManyRequestsException");
|
|
374
|
+
}
|
|
375
|
+
name = "TooManyRequestsException";
|
|
376
|
+
$fault = "client";
|
|
377
|
+
Message;
|
|
358
378
|
/**
|
|
359
379
|
* @internal
|
|
360
380
|
*/
|
|
@@ -364,15 +384,17 @@ var _TooManyRequestsException = class _TooManyRequestsException extends MediaPac
|
|
|
364
384
|
$fault: "client",
|
|
365
385
|
...opts
|
|
366
386
|
});
|
|
367
|
-
this.name = "TooManyRequestsException";
|
|
368
|
-
this.$fault = "client";
|
|
369
387
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
370
388
|
this.Message = opts.Message;
|
|
371
389
|
}
|
|
372
390
|
};
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
391
|
+
var UnprocessableEntityException = class _UnprocessableEntityException extends MediaPackageVodServiceException {
|
|
392
|
+
static {
|
|
393
|
+
__name(this, "UnprocessableEntityException");
|
|
394
|
+
}
|
|
395
|
+
name = "UnprocessableEntityException";
|
|
396
|
+
$fault = "client";
|
|
397
|
+
Message;
|
|
376
398
|
/**
|
|
377
399
|
* @internal
|
|
378
400
|
*/
|
|
@@ -382,14 +404,10 @@ var _UnprocessableEntityException = class _UnprocessableEntityException extends
|
|
|
382
404
|
$fault: "client",
|
|
383
405
|
...opts
|
|
384
406
|
});
|
|
385
|
-
this.name = "UnprocessableEntityException";
|
|
386
|
-
this.$fault = "client";
|
|
387
407
|
Object.setPrototypeOf(this, _UnprocessableEntityException.prototype);
|
|
388
408
|
this.Message = opts.Message;
|
|
389
409
|
}
|
|
390
410
|
};
|
|
391
|
-
__name(_UnprocessableEntityException, "UnprocessableEntityException");
|
|
392
|
-
var UnprocessableEntityException = _UnprocessableEntityException;
|
|
393
411
|
|
|
394
412
|
// src/protocols/Aws_restJson1.ts
|
|
395
413
|
var se_ConfigureLogsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1361,239 +1379,256 @@ var _pGI = "packagingGroupId";
|
|
|
1361
1379
|
var _tK = "tagKeys";
|
|
1362
1380
|
|
|
1363
1381
|
// src/commands/ConfigureLogsCommand.ts
|
|
1364
|
-
var
|
|
1382
|
+
var ConfigureLogsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1365
1383
|
return [
|
|
1366
1384
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1367
1385
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1368
1386
|
];
|
|
1369
1387
|
}).s("MediaPackageVod", "ConfigureLogs", {}).n("MediaPackageVodClient", "ConfigureLogsCommand").f(void 0, void 0).ser(se_ConfigureLogsCommand).de(de_ConfigureLogsCommand).build() {
|
|
1388
|
+
static {
|
|
1389
|
+
__name(this, "ConfigureLogsCommand");
|
|
1390
|
+
}
|
|
1370
1391
|
};
|
|
1371
|
-
__name(_ConfigureLogsCommand, "ConfigureLogsCommand");
|
|
1372
|
-
var ConfigureLogsCommand = _ConfigureLogsCommand;
|
|
1373
1392
|
|
|
1374
1393
|
// src/commands/CreateAssetCommand.ts
|
|
1375
1394
|
|
|
1376
1395
|
|
|
1377
1396
|
|
|
1378
|
-
var
|
|
1397
|
+
var CreateAssetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1379
1398
|
return [
|
|
1380
1399
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1381
1400
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1382
1401
|
];
|
|
1383
1402
|
}).s("MediaPackageVod", "CreateAsset", {}).n("MediaPackageVodClient", "CreateAssetCommand").f(void 0, void 0).ser(se_CreateAssetCommand).de(de_CreateAssetCommand).build() {
|
|
1403
|
+
static {
|
|
1404
|
+
__name(this, "CreateAssetCommand");
|
|
1405
|
+
}
|
|
1384
1406
|
};
|
|
1385
|
-
__name(_CreateAssetCommand, "CreateAssetCommand");
|
|
1386
|
-
var CreateAssetCommand = _CreateAssetCommand;
|
|
1387
1407
|
|
|
1388
1408
|
// src/commands/CreatePackagingConfigurationCommand.ts
|
|
1389
1409
|
|
|
1390
1410
|
|
|
1391
1411
|
|
|
1392
|
-
var
|
|
1412
|
+
var CreatePackagingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1393
1413
|
return [
|
|
1394
1414
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1395
1415
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1396
1416
|
];
|
|
1397
1417
|
}).s("MediaPackageVod", "CreatePackagingConfiguration", {}).n("MediaPackageVodClient", "CreatePackagingConfigurationCommand").f(void 0, void 0).ser(se_CreatePackagingConfigurationCommand).de(de_CreatePackagingConfigurationCommand).build() {
|
|
1418
|
+
static {
|
|
1419
|
+
__name(this, "CreatePackagingConfigurationCommand");
|
|
1420
|
+
}
|
|
1398
1421
|
};
|
|
1399
|
-
__name(_CreatePackagingConfigurationCommand, "CreatePackagingConfigurationCommand");
|
|
1400
|
-
var CreatePackagingConfigurationCommand = _CreatePackagingConfigurationCommand;
|
|
1401
1422
|
|
|
1402
1423
|
// src/commands/CreatePackagingGroupCommand.ts
|
|
1403
1424
|
|
|
1404
1425
|
|
|
1405
1426
|
|
|
1406
|
-
var
|
|
1427
|
+
var CreatePackagingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1407
1428
|
return [
|
|
1408
1429
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1409
1430
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1410
1431
|
];
|
|
1411
1432
|
}).s("MediaPackageVod", "CreatePackagingGroup", {}).n("MediaPackageVodClient", "CreatePackagingGroupCommand").f(void 0, void 0).ser(se_CreatePackagingGroupCommand).de(de_CreatePackagingGroupCommand).build() {
|
|
1433
|
+
static {
|
|
1434
|
+
__name(this, "CreatePackagingGroupCommand");
|
|
1435
|
+
}
|
|
1412
1436
|
};
|
|
1413
|
-
__name(_CreatePackagingGroupCommand, "CreatePackagingGroupCommand");
|
|
1414
|
-
var CreatePackagingGroupCommand = _CreatePackagingGroupCommand;
|
|
1415
1437
|
|
|
1416
1438
|
// src/commands/DeleteAssetCommand.ts
|
|
1417
1439
|
|
|
1418
1440
|
|
|
1419
1441
|
|
|
1420
|
-
var
|
|
1442
|
+
var DeleteAssetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1421
1443
|
return [
|
|
1422
1444
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1423
1445
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1424
1446
|
];
|
|
1425
1447
|
}).s("MediaPackageVod", "DeleteAsset", {}).n("MediaPackageVodClient", "DeleteAssetCommand").f(void 0, void 0).ser(se_DeleteAssetCommand).de(de_DeleteAssetCommand).build() {
|
|
1448
|
+
static {
|
|
1449
|
+
__name(this, "DeleteAssetCommand");
|
|
1450
|
+
}
|
|
1426
1451
|
};
|
|
1427
|
-
__name(_DeleteAssetCommand, "DeleteAssetCommand");
|
|
1428
|
-
var DeleteAssetCommand = _DeleteAssetCommand;
|
|
1429
1452
|
|
|
1430
1453
|
// src/commands/DeletePackagingConfigurationCommand.ts
|
|
1431
1454
|
|
|
1432
1455
|
|
|
1433
1456
|
|
|
1434
|
-
var
|
|
1457
|
+
var DeletePackagingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1435
1458
|
return [
|
|
1436
1459
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1437
1460
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1438
1461
|
];
|
|
1439
1462
|
}).s("MediaPackageVod", "DeletePackagingConfiguration", {}).n("MediaPackageVodClient", "DeletePackagingConfigurationCommand").f(void 0, void 0).ser(se_DeletePackagingConfigurationCommand).de(de_DeletePackagingConfigurationCommand).build() {
|
|
1463
|
+
static {
|
|
1464
|
+
__name(this, "DeletePackagingConfigurationCommand");
|
|
1465
|
+
}
|
|
1440
1466
|
};
|
|
1441
|
-
__name(_DeletePackagingConfigurationCommand, "DeletePackagingConfigurationCommand");
|
|
1442
|
-
var DeletePackagingConfigurationCommand = _DeletePackagingConfigurationCommand;
|
|
1443
1467
|
|
|
1444
1468
|
// src/commands/DeletePackagingGroupCommand.ts
|
|
1445
1469
|
|
|
1446
1470
|
|
|
1447
1471
|
|
|
1448
|
-
var
|
|
1472
|
+
var DeletePackagingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1449
1473
|
return [
|
|
1450
1474
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1451
1475
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1452
1476
|
];
|
|
1453
1477
|
}).s("MediaPackageVod", "DeletePackagingGroup", {}).n("MediaPackageVodClient", "DeletePackagingGroupCommand").f(void 0, void 0).ser(se_DeletePackagingGroupCommand).de(de_DeletePackagingGroupCommand).build() {
|
|
1478
|
+
static {
|
|
1479
|
+
__name(this, "DeletePackagingGroupCommand");
|
|
1480
|
+
}
|
|
1454
1481
|
};
|
|
1455
|
-
__name(_DeletePackagingGroupCommand, "DeletePackagingGroupCommand");
|
|
1456
|
-
var DeletePackagingGroupCommand = _DeletePackagingGroupCommand;
|
|
1457
1482
|
|
|
1458
1483
|
// src/commands/DescribeAssetCommand.ts
|
|
1459
1484
|
|
|
1460
1485
|
|
|
1461
1486
|
|
|
1462
|
-
var
|
|
1487
|
+
var DescribeAssetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1463
1488
|
return [
|
|
1464
1489
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1465
1490
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1466
1491
|
];
|
|
1467
1492
|
}).s("MediaPackageVod", "DescribeAsset", {}).n("MediaPackageVodClient", "DescribeAssetCommand").f(void 0, void 0).ser(se_DescribeAssetCommand).de(de_DescribeAssetCommand).build() {
|
|
1493
|
+
static {
|
|
1494
|
+
__name(this, "DescribeAssetCommand");
|
|
1495
|
+
}
|
|
1468
1496
|
};
|
|
1469
|
-
__name(_DescribeAssetCommand, "DescribeAssetCommand");
|
|
1470
|
-
var DescribeAssetCommand = _DescribeAssetCommand;
|
|
1471
1497
|
|
|
1472
1498
|
// src/commands/DescribePackagingConfigurationCommand.ts
|
|
1473
1499
|
|
|
1474
1500
|
|
|
1475
1501
|
|
|
1476
|
-
var
|
|
1502
|
+
var DescribePackagingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1477
1503
|
return [
|
|
1478
1504
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1479
1505
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1480
1506
|
];
|
|
1481
1507
|
}).s("MediaPackageVod", "DescribePackagingConfiguration", {}).n("MediaPackageVodClient", "DescribePackagingConfigurationCommand").f(void 0, void 0).ser(se_DescribePackagingConfigurationCommand).de(de_DescribePackagingConfigurationCommand).build() {
|
|
1508
|
+
static {
|
|
1509
|
+
__name(this, "DescribePackagingConfigurationCommand");
|
|
1510
|
+
}
|
|
1482
1511
|
};
|
|
1483
|
-
__name(_DescribePackagingConfigurationCommand, "DescribePackagingConfigurationCommand");
|
|
1484
|
-
var DescribePackagingConfigurationCommand = _DescribePackagingConfigurationCommand;
|
|
1485
1512
|
|
|
1486
1513
|
// src/commands/DescribePackagingGroupCommand.ts
|
|
1487
1514
|
|
|
1488
1515
|
|
|
1489
1516
|
|
|
1490
|
-
var
|
|
1517
|
+
var DescribePackagingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1491
1518
|
return [
|
|
1492
1519
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1493
1520
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1494
1521
|
];
|
|
1495
1522
|
}).s("MediaPackageVod", "DescribePackagingGroup", {}).n("MediaPackageVodClient", "DescribePackagingGroupCommand").f(void 0, void 0).ser(se_DescribePackagingGroupCommand).de(de_DescribePackagingGroupCommand).build() {
|
|
1523
|
+
static {
|
|
1524
|
+
__name(this, "DescribePackagingGroupCommand");
|
|
1525
|
+
}
|
|
1496
1526
|
};
|
|
1497
|
-
__name(_DescribePackagingGroupCommand, "DescribePackagingGroupCommand");
|
|
1498
|
-
var DescribePackagingGroupCommand = _DescribePackagingGroupCommand;
|
|
1499
1527
|
|
|
1500
1528
|
// src/commands/ListAssetsCommand.ts
|
|
1501
1529
|
|
|
1502
1530
|
|
|
1503
1531
|
|
|
1504
|
-
var
|
|
1532
|
+
var ListAssetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1505
1533
|
return [
|
|
1506
1534
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1507
1535
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1508
1536
|
];
|
|
1509
1537
|
}).s("MediaPackageVod", "ListAssets", {}).n("MediaPackageVodClient", "ListAssetsCommand").f(void 0, void 0).ser(se_ListAssetsCommand).de(de_ListAssetsCommand).build() {
|
|
1538
|
+
static {
|
|
1539
|
+
__name(this, "ListAssetsCommand");
|
|
1540
|
+
}
|
|
1510
1541
|
};
|
|
1511
|
-
__name(_ListAssetsCommand, "ListAssetsCommand");
|
|
1512
|
-
var ListAssetsCommand = _ListAssetsCommand;
|
|
1513
1542
|
|
|
1514
1543
|
// src/commands/ListPackagingConfigurationsCommand.ts
|
|
1515
1544
|
|
|
1516
1545
|
|
|
1517
1546
|
|
|
1518
|
-
var
|
|
1547
|
+
var ListPackagingConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1519
1548
|
return [
|
|
1520
1549
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1521
1550
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1522
1551
|
];
|
|
1523
1552
|
}).s("MediaPackageVod", "ListPackagingConfigurations", {}).n("MediaPackageVodClient", "ListPackagingConfigurationsCommand").f(void 0, void 0).ser(se_ListPackagingConfigurationsCommand).de(de_ListPackagingConfigurationsCommand).build() {
|
|
1553
|
+
static {
|
|
1554
|
+
__name(this, "ListPackagingConfigurationsCommand");
|
|
1555
|
+
}
|
|
1524
1556
|
};
|
|
1525
|
-
__name(_ListPackagingConfigurationsCommand, "ListPackagingConfigurationsCommand");
|
|
1526
|
-
var ListPackagingConfigurationsCommand = _ListPackagingConfigurationsCommand;
|
|
1527
1557
|
|
|
1528
1558
|
// src/commands/ListPackagingGroupsCommand.ts
|
|
1529
1559
|
|
|
1530
1560
|
|
|
1531
1561
|
|
|
1532
|
-
var
|
|
1562
|
+
var ListPackagingGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1533
1563
|
return [
|
|
1534
1564
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1535
1565
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1536
1566
|
];
|
|
1537
1567
|
}).s("MediaPackageVod", "ListPackagingGroups", {}).n("MediaPackageVodClient", "ListPackagingGroupsCommand").f(void 0, void 0).ser(se_ListPackagingGroupsCommand).de(de_ListPackagingGroupsCommand).build() {
|
|
1568
|
+
static {
|
|
1569
|
+
__name(this, "ListPackagingGroupsCommand");
|
|
1570
|
+
}
|
|
1538
1571
|
};
|
|
1539
|
-
__name(_ListPackagingGroupsCommand, "ListPackagingGroupsCommand");
|
|
1540
|
-
var ListPackagingGroupsCommand = _ListPackagingGroupsCommand;
|
|
1541
1572
|
|
|
1542
1573
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1543
1574
|
|
|
1544
1575
|
|
|
1545
1576
|
|
|
1546
|
-
var
|
|
1577
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1547
1578
|
return [
|
|
1548
1579
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1549
1580
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1550
1581
|
];
|
|
1551
1582
|
}).s("MediaPackageVod", "ListTagsForResource", {}).n("MediaPackageVodClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1583
|
+
static {
|
|
1584
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1585
|
+
}
|
|
1552
1586
|
};
|
|
1553
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1554
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1555
1587
|
|
|
1556
1588
|
// src/commands/TagResourceCommand.ts
|
|
1557
1589
|
|
|
1558
1590
|
|
|
1559
1591
|
|
|
1560
|
-
var
|
|
1592
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1561
1593
|
return [
|
|
1562
1594
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1563
1595
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1564
1596
|
];
|
|
1565
1597
|
}).s("MediaPackageVod", "TagResource", {}).n("MediaPackageVodClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1598
|
+
static {
|
|
1599
|
+
__name(this, "TagResourceCommand");
|
|
1600
|
+
}
|
|
1566
1601
|
};
|
|
1567
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1568
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1569
1602
|
|
|
1570
1603
|
// src/commands/UntagResourceCommand.ts
|
|
1571
1604
|
|
|
1572
1605
|
|
|
1573
1606
|
|
|
1574
|
-
var
|
|
1607
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1575
1608
|
return [
|
|
1576
1609
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1577
1610
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1578
1611
|
];
|
|
1579
1612
|
}).s("MediaPackageVod", "UntagResource", {}).n("MediaPackageVodClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1613
|
+
static {
|
|
1614
|
+
__name(this, "UntagResourceCommand");
|
|
1615
|
+
}
|
|
1580
1616
|
};
|
|
1581
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1582
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1583
1617
|
|
|
1584
1618
|
// src/commands/UpdatePackagingGroupCommand.ts
|
|
1585
1619
|
|
|
1586
1620
|
|
|
1587
1621
|
|
|
1588
|
-
var
|
|
1622
|
+
var UpdatePackagingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1589
1623
|
return [
|
|
1590
1624
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1591
1625
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1592
1626
|
];
|
|
1593
1627
|
}).s("MediaPackageVod", "UpdatePackagingGroup", {}).n("MediaPackageVodClient", "UpdatePackagingGroupCommand").f(void 0, void 0).ser(se_UpdatePackagingGroupCommand).de(de_UpdatePackagingGroupCommand).build() {
|
|
1628
|
+
static {
|
|
1629
|
+
__name(this, "UpdatePackagingGroupCommand");
|
|
1630
|
+
}
|
|
1594
1631
|
};
|
|
1595
|
-
__name(_UpdatePackagingGroupCommand, "UpdatePackagingGroupCommand");
|
|
1596
|
-
var UpdatePackagingGroupCommand = _UpdatePackagingGroupCommand;
|
|
1597
1632
|
|
|
1598
1633
|
// src/MediaPackageVod.ts
|
|
1599
1634
|
var commands = {
|
|
@@ -1615,10 +1650,11 @@ var commands = {
|
|
|
1615
1650
|
UntagResourceCommand,
|
|
1616
1651
|
UpdatePackagingGroupCommand
|
|
1617
1652
|
};
|
|
1618
|
-
var
|
|
1653
|
+
var MediaPackageVod = class extends MediaPackageVodClient {
|
|
1654
|
+
static {
|
|
1655
|
+
__name(this, "MediaPackageVod");
|
|
1656
|
+
}
|
|
1619
1657
|
};
|
|
1620
|
-
__name(_MediaPackageVod, "MediaPackageVod");
|
|
1621
|
-
var MediaPackageVod = _MediaPackageVod;
|
|
1622
1658
|
(0, import_smithy_client.createAggregatedClient)(commands, MediaPackageVod);
|
|
1623
1659
|
|
|
1624
1660
|
// src/pagination/ListAssetsPaginator.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 MediaPackageVodClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -53,79 +53,85 @@ export const EncryptionMethod = {
|
|
|
53
53
|
SAMPLE_AES: "SAMPLE_AES",
|
|
54
54
|
};
|
|
55
55
|
export class ForbiddenException extends __BaseException {
|
|
56
|
+
name = "ForbiddenException";
|
|
57
|
+
$fault = "client";
|
|
58
|
+
Message;
|
|
56
59
|
constructor(opts) {
|
|
57
60
|
super({
|
|
58
61
|
name: "ForbiddenException",
|
|
59
62
|
$fault: "client",
|
|
60
63
|
...opts,
|
|
61
64
|
});
|
|
62
|
-
this.name = "ForbiddenException";
|
|
63
|
-
this.$fault = "client";
|
|
64
65
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
65
66
|
this.Message = opts.Message;
|
|
66
67
|
}
|
|
67
68
|
}
|
|
68
69
|
export class InternalServerErrorException extends __BaseException {
|
|
70
|
+
name = "InternalServerErrorException";
|
|
71
|
+
$fault = "server";
|
|
72
|
+
Message;
|
|
69
73
|
constructor(opts) {
|
|
70
74
|
super({
|
|
71
75
|
name: "InternalServerErrorException",
|
|
72
76
|
$fault: "server",
|
|
73
77
|
...opts,
|
|
74
78
|
});
|
|
75
|
-
this.name = "InternalServerErrorException";
|
|
76
|
-
this.$fault = "server";
|
|
77
79
|
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
78
80
|
this.Message = opts.Message;
|
|
79
81
|
}
|
|
80
82
|
}
|
|
81
83
|
export class NotFoundException extends __BaseException {
|
|
84
|
+
name = "NotFoundException";
|
|
85
|
+
$fault = "client";
|
|
86
|
+
Message;
|
|
82
87
|
constructor(opts) {
|
|
83
88
|
super({
|
|
84
89
|
name: "NotFoundException",
|
|
85
90
|
$fault: "client",
|
|
86
91
|
...opts,
|
|
87
92
|
});
|
|
88
|
-
this.name = "NotFoundException";
|
|
89
|
-
this.$fault = "client";
|
|
90
93
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
91
94
|
this.Message = opts.Message;
|
|
92
95
|
}
|
|
93
96
|
}
|
|
94
97
|
export class ServiceUnavailableException extends __BaseException {
|
|
98
|
+
name = "ServiceUnavailableException";
|
|
99
|
+
$fault = "server";
|
|
100
|
+
Message;
|
|
95
101
|
constructor(opts) {
|
|
96
102
|
super({
|
|
97
103
|
name: "ServiceUnavailableException",
|
|
98
104
|
$fault: "server",
|
|
99
105
|
...opts,
|
|
100
106
|
});
|
|
101
|
-
this.name = "ServiceUnavailableException";
|
|
102
|
-
this.$fault = "server";
|
|
103
107
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
104
108
|
this.Message = opts.Message;
|
|
105
109
|
}
|
|
106
110
|
}
|
|
107
111
|
export class TooManyRequestsException extends __BaseException {
|
|
112
|
+
name = "TooManyRequestsException";
|
|
113
|
+
$fault = "client";
|
|
114
|
+
Message;
|
|
108
115
|
constructor(opts) {
|
|
109
116
|
super({
|
|
110
117
|
name: "TooManyRequestsException",
|
|
111
118
|
$fault: "client",
|
|
112
119
|
...opts,
|
|
113
120
|
});
|
|
114
|
-
this.name = "TooManyRequestsException";
|
|
115
|
-
this.$fault = "client";
|
|
116
121
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
117
122
|
this.Message = opts.Message;
|
|
118
123
|
}
|
|
119
124
|
}
|
|
120
125
|
export class UnprocessableEntityException extends __BaseException {
|
|
126
|
+
name = "UnprocessableEntityException";
|
|
127
|
+
$fault = "client";
|
|
128
|
+
Message;
|
|
121
129
|
constructor(opts) {
|
|
122
130
|
super({
|
|
123
131
|
name: "UnprocessableEntityException",
|
|
124
132
|
$fault: "client",
|
|
125
133
|
...opts,
|
|
126
134
|
});
|
|
127
|
-
this.name = "UnprocessableEntityException";
|
|
128
|
-
this.$fault = "client";
|
|
129
135
|
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
130
136
|
this.Message = opts.Message;
|
|
131
137
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MediaPackageVodClientConfig) =>
|
|
|
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: MediaPackageVodClientConfig) =>
|
|
|
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: MediaPackageVodClientConfig) =>
|
|
|
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: MediaPackageVodClientConfig) =>
|
|
|
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;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackage-vod",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage Vod 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-mediapackage-vod",
|
|
@@ -20,56 +20,56 @@
|
|
|
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
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|