@aws-sdk/client-mediapackage 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 +135 -97
- package/dist-es/MediaPackageClient.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
|
@@ -178,7 +178,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
178
178
|
}, "resolveRuntimeExtensions");
|
|
179
179
|
|
|
180
180
|
// src/MediaPackageClient.ts
|
|
181
|
-
var
|
|
181
|
+
var MediaPackageClient = class extends import_smithy_client.Client {
|
|
182
|
+
static {
|
|
183
|
+
__name(this, "MediaPackageClient");
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* The resolved configuration of MediaPackageClient class. This is resolved and normalized from the {@link MediaPackageClientConfig | constructor configuration interface}.
|
|
187
|
+
*/
|
|
188
|
+
config;
|
|
182
189
|
constructor(...[configuration]) {
|
|
183
190
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
184
191
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -188,7 +195,7 @@ var _MediaPackageClient = class _MediaPackageClient extends import_smithy_client
|
|
|
188
195
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
189
196
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
190
197
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
191
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
198
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
192
199
|
super(_config_8);
|
|
193
200
|
this.config = _config_8;
|
|
194
201
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -216,8 +223,6 @@ var _MediaPackageClient = class _MediaPackageClient extends import_smithy_client
|
|
|
216
223
|
super.destroy();
|
|
217
224
|
}
|
|
218
225
|
};
|
|
219
|
-
__name(_MediaPackageClient, "MediaPackageClient");
|
|
220
|
-
var MediaPackageClient = _MediaPackageClient;
|
|
221
226
|
|
|
222
227
|
// src/MediaPackage.ts
|
|
223
228
|
|
|
@@ -232,7 +237,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
232
237
|
|
|
233
238
|
// src/models/MediaPackageServiceException.ts
|
|
234
239
|
|
|
235
|
-
var
|
|
240
|
+
var MediaPackageServiceException = class _MediaPackageServiceException extends import_smithy_client.ServiceException {
|
|
241
|
+
static {
|
|
242
|
+
__name(this, "MediaPackageServiceException");
|
|
243
|
+
}
|
|
236
244
|
/**
|
|
237
245
|
* @internal
|
|
238
246
|
*/
|
|
@@ -241,8 +249,6 @@ var _MediaPackageServiceException = class _MediaPackageServiceException extends
|
|
|
241
249
|
Object.setPrototypeOf(this, _MediaPackageServiceException.prototype);
|
|
242
250
|
}
|
|
243
251
|
};
|
|
244
|
-
__name(_MediaPackageServiceException, "MediaPackageServiceException");
|
|
245
|
-
var MediaPackageServiceException = _MediaPackageServiceException;
|
|
246
252
|
|
|
247
253
|
// src/models/models_0.ts
|
|
248
254
|
var __AdTriggersElement = {
|
|
@@ -338,7 +344,13 @@ var Origination = {
|
|
|
338
344
|
ALLOW: "ALLOW",
|
|
339
345
|
DENY: "DENY"
|
|
340
346
|
};
|
|
341
|
-
var
|
|
347
|
+
var ForbiddenException = class _ForbiddenException extends MediaPackageServiceException {
|
|
348
|
+
static {
|
|
349
|
+
__name(this, "ForbiddenException");
|
|
350
|
+
}
|
|
351
|
+
name = "ForbiddenException";
|
|
352
|
+
$fault = "client";
|
|
353
|
+
Message;
|
|
342
354
|
/**
|
|
343
355
|
* @internal
|
|
344
356
|
*/
|
|
@@ -348,15 +360,17 @@ var _ForbiddenException = class _ForbiddenException extends MediaPackageServiceE
|
|
|
348
360
|
$fault: "client",
|
|
349
361
|
...opts
|
|
350
362
|
});
|
|
351
|
-
this.name = "ForbiddenException";
|
|
352
|
-
this.$fault = "client";
|
|
353
363
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
354
364
|
this.Message = opts.Message;
|
|
355
365
|
}
|
|
356
366
|
};
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
367
|
+
var InternalServerErrorException = class _InternalServerErrorException extends MediaPackageServiceException {
|
|
368
|
+
static {
|
|
369
|
+
__name(this, "InternalServerErrorException");
|
|
370
|
+
}
|
|
371
|
+
name = "InternalServerErrorException";
|
|
372
|
+
$fault = "server";
|
|
373
|
+
Message;
|
|
360
374
|
/**
|
|
361
375
|
* @internal
|
|
362
376
|
*/
|
|
@@ -366,15 +380,17 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
366
380
|
$fault: "server",
|
|
367
381
|
...opts
|
|
368
382
|
});
|
|
369
|
-
this.name = "InternalServerErrorException";
|
|
370
|
-
this.$fault = "server";
|
|
371
383
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
372
384
|
this.Message = opts.Message;
|
|
373
385
|
}
|
|
374
386
|
};
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
387
|
+
var NotFoundException = class _NotFoundException extends MediaPackageServiceException {
|
|
388
|
+
static {
|
|
389
|
+
__name(this, "NotFoundException");
|
|
390
|
+
}
|
|
391
|
+
name = "NotFoundException";
|
|
392
|
+
$fault = "client";
|
|
393
|
+
Message;
|
|
378
394
|
/**
|
|
379
395
|
* @internal
|
|
380
396
|
*/
|
|
@@ -384,15 +400,17 @@ var _NotFoundException = class _NotFoundException extends MediaPackageServiceExc
|
|
|
384
400
|
$fault: "client",
|
|
385
401
|
...opts
|
|
386
402
|
});
|
|
387
|
-
this.name = "NotFoundException";
|
|
388
|
-
this.$fault = "client";
|
|
389
403
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
390
404
|
this.Message = opts.Message;
|
|
391
405
|
}
|
|
392
406
|
};
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
407
|
+
var ServiceUnavailableException = class _ServiceUnavailableException extends MediaPackageServiceException {
|
|
408
|
+
static {
|
|
409
|
+
__name(this, "ServiceUnavailableException");
|
|
410
|
+
}
|
|
411
|
+
name = "ServiceUnavailableException";
|
|
412
|
+
$fault = "server";
|
|
413
|
+
Message;
|
|
396
414
|
/**
|
|
397
415
|
* @internal
|
|
398
416
|
*/
|
|
@@ -402,15 +420,17 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends Me
|
|
|
402
420
|
$fault: "server",
|
|
403
421
|
...opts
|
|
404
422
|
});
|
|
405
|
-
this.name = "ServiceUnavailableException";
|
|
406
|
-
this.$fault = "server";
|
|
407
423
|
Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
|
|
408
424
|
this.Message = opts.Message;
|
|
409
425
|
}
|
|
410
426
|
};
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
427
|
+
var TooManyRequestsException = class _TooManyRequestsException extends MediaPackageServiceException {
|
|
428
|
+
static {
|
|
429
|
+
__name(this, "TooManyRequestsException");
|
|
430
|
+
}
|
|
431
|
+
name = "TooManyRequestsException";
|
|
432
|
+
$fault = "client";
|
|
433
|
+
Message;
|
|
414
434
|
/**
|
|
415
435
|
* @internal
|
|
416
436
|
*/
|
|
@@ -420,15 +440,17 @@ var _TooManyRequestsException = class _TooManyRequestsException extends MediaPac
|
|
|
420
440
|
$fault: "client",
|
|
421
441
|
...opts
|
|
422
442
|
});
|
|
423
|
-
this.name = "TooManyRequestsException";
|
|
424
|
-
this.$fault = "client";
|
|
425
443
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
426
444
|
this.Message = opts.Message;
|
|
427
445
|
}
|
|
428
446
|
};
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
447
|
+
var UnprocessableEntityException = class _UnprocessableEntityException extends MediaPackageServiceException {
|
|
448
|
+
static {
|
|
449
|
+
__name(this, "UnprocessableEntityException");
|
|
450
|
+
}
|
|
451
|
+
name = "UnprocessableEntityException";
|
|
452
|
+
$fault = "client";
|
|
453
|
+
Message;
|
|
432
454
|
/**
|
|
433
455
|
* @internal
|
|
434
456
|
*/
|
|
@@ -438,14 +460,10 @@ var _UnprocessableEntityException = class _UnprocessableEntityException extends
|
|
|
438
460
|
$fault: "client",
|
|
439
461
|
...opts
|
|
440
462
|
});
|
|
441
|
-
this.name = "UnprocessableEntityException";
|
|
442
|
-
this.$fault = "client";
|
|
443
463
|
Object.setPrototypeOf(this, _UnprocessableEntityException.prototype);
|
|
444
464
|
this.Message = opts.Message;
|
|
445
465
|
}
|
|
446
466
|
};
|
|
447
|
-
__name(_UnprocessableEntityException, "UnprocessableEntityException");
|
|
448
|
-
var UnprocessableEntityException = _UnprocessableEntityException;
|
|
449
467
|
var IngestEndpointFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
450
468
|
...obj,
|
|
451
469
|
...obj.Password && { Password: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -1631,267 +1649,286 @@ var _nT = "nextToken";
|
|
|
1631
1649
|
var _tK = "tagKeys";
|
|
1632
1650
|
|
|
1633
1651
|
// src/commands/ConfigureLogsCommand.ts
|
|
1634
|
-
var
|
|
1652
|
+
var ConfigureLogsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1635
1653
|
return [
|
|
1636
1654
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1637
1655
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1638
1656
|
];
|
|
1639
1657
|
}).s("MediaPackage", "ConfigureLogs", {}).n("MediaPackageClient", "ConfigureLogsCommand").f(void 0, ConfigureLogsResponseFilterSensitiveLog).ser(se_ConfigureLogsCommand).de(de_ConfigureLogsCommand).build() {
|
|
1658
|
+
static {
|
|
1659
|
+
__name(this, "ConfigureLogsCommand");
|
|
1660
|
+
}
|
|
1640
1661
|
};
|
|
1641
|
-
__name(_ConfigureLogsCommand, "ConfigureLogsCommand");
|
|
1642
|
-
var ConfigureLogsCommand = _ConfigureLogsCommand;
|
|
1643
1662
|
|
|
1644
1663
|
// src/commands/CreateChannelCommand.ts
|
|
1645
1664
|
|
|
1646
1665
|
|
|
1647
1666
|
|
|
1648
|
-
var
|
|
1667
|
+
var CreateChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1649
1668
|
return [
|
|
1650
1669
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1651
1670
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1652
1671
|
];
|
|
1653
1672
|
}).s("MediaPackage", "CreateChannel", {}).n("MediaPackageClient", "CreateChannelCommand").f(void 0, CreateChannelResponseFilterSensitiveLog).ser(se_CreateChannelCommand).de(de_CreateChannelCommand).build() {
|
|
1673
|
+
static {
|
|
1674
|
+
__name(this, "CreateChannelCommand");
|
|
1675
|
+
}
|
|
1654
1676
|
};
|
|
1655
|
-
__name(_CreateChannelCommand, "CreateChannelCommand");
|
|
1656
|
-
var CreateChannelCommand = _CreateChannelCommand;
|
|
1657
1677
|
|
|
1658
1678
|
// src/commands/CreateHarvestJobCommand.ts
|
|
1659
1679
|
|
|
1660
1680
|
|
|
1661
1681
|
|
|
1662
|
-
var
|
|
1682
|
+
var CreateHarvestJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1663
1683
|
return [
|
|
1664
1684
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1665
1685
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1666
1686
|
];
|
|
1667
1687
|
}).s("MediaPackage", "CreateHarvestJob", {}).n("MediaPackageClient", "CreateHarvestJobCommand").f(void 0, void 0).ser(se_CreateHarvestJobCommand).de(de_CreateHarvestJobCommand).build() {
|
|
1688
|
+
static {
|
|
1689
|
+
__name(this, "CreateHarvestJobCommand");
|
|
1690
|
+
}
|
|
1668
1691
|
};
|
|
1669
|
-
__name(_CreateHarvestJobCommand, "CreateHarvestJobCommand");
|
|
1670
|
-
var CreateHarvestJobCommand = _CreateHarvestJobCommand;
|
|
1671
1692
|
|
|
1672
1693
|
// src/commands/CreateOriginEndpointCommand.ts
|
|
1673
1694
|
|
|
1674
1695
|
|
|
1675
1696
|
|
|
1676
|
-
var
|
|
1697
|
+
var CreateOriginEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1677
1698
|
return [
|
|
1678
1699
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1679
1700
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1680
1701
|
];
|
|
1681
1702
|
}).s("MediaPackage", "CreateOriginEndpoint", {}).n("MediaPackageClient", "CreateOriginEndpointCommand").f(void 0, void 0).ser(se_CreateOriginEndpointCommand).de(de_CreateOriginEndpointCommand).build() {
|
|
1703
|
+
static {
|
|
1704
|
+
__name(this, "CreateOriginEndpointCommand");
|
|
1705
|
+
}
|
|
1682
1706
|
};
|
|
1683
|
-
__name(_CreateOriginEndpointCommand, "CreateOriginEndpointCommand");
|
|
1684
|
-
var CreateOriginEndpointCommand = _CreateOriginEndpointCommand;
|
|
1685
1707
|
|
|
1686
1708
|
// src/commands/DeleteChannelCommand.ts
|
|
1687
1709
|
|
|
1688
1710
|
|
|
1689
1711
|
|
|
1690
|
-
var
|
|
1712
|
+
var DeleteChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1691
1713
|
return [
|
|
1692
1714
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1693
1715
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1694
1716
|
];
|
|
1695
1717
|
}).s("MediaPackage", "DeleteChannel", {}).n("MediaPackageClient", "DeleteChannelCommand").f(void 0, void 0).ser(se_DeleteChannelCommand).de(de_DeleteChannelCommand).build() {
|
|
1718
|
+
static {
|
|
1719
|
+
__name(this, "DeleteChannelCommand");
|
|
1720
|
+
}
|
|
1696
1721
|
};
|
|
1697
|
-
__name(_DeleteChannelCommand, "DeleteChannelCommand");
|
|
1698
|
-
var DeleteChannelCommand = _DeleteChannelCommand;
|
|
1699
1722
|
|
|
1700
1723
|
// src/commands/DeleteOriginEndpointCommand.ts
|
|
1701
1724
|
|
|
1702
1725
|
|
|
1703
1726
|
|
|
1704
|
-
var
|
|
1727
|
+
var DeleteOriginEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1705
1728
|
return [
|
|
1706
1729
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1707
1730
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1708
1731
|
];
|
|
1709
1732
|
}).s("MediaPackage", "DeleteOriginEndpoint", {}).n("MediaPackageClient", "DeleteOriginEndpointCommand").f(void 0, void 0).ser(se_DeleteOriginEndpointCommand).de(de_DeleteOriginEndpointCommand).build() {
|
|
1733
|
+
static {
|
|
1734
|
+
__name(this, "DeleteOriginEndpointCommand");
|
|
1735
|
+
}
|
|
1710
1736
|
};
|
|
1711
|
-
__name(_DeleteOriginEndpointCommand, "DeleteOriginEndpointCommand");
|
|
1712
|
-
var DeleteOriginEndpointCommand = _DeleteOriginEndpointCommand;
|
|
1713
1737
|
|
|
1714
1738
|
// src/commands/DescribeChannelCommand.ts
|
|
1715
1739
|
|
|
1716
1740
|
|
|
1717
1741
|
|
|
1718
|
-
var
|
|
1742
|
+
var DescribeChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1719
1743
|
return [
|
|
1720
1744
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1721
1745
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1722
1746
|
];
|
|
1723
1747
|
}).s("MediaPackage", "DescribeChannel", {}).n("MediaPackageClient", "DescribeChannelCommand").f(void 0, DescribeChannelResponseFilterSensitiveLog).ser(se_DescribeChannelCommand).de(de_DescribeChannelCommand).build() {
|
|
1748
|
+
static {
|
|
1749
|
+
__name(this, "DescribeChannelCommand");
|
|
1750
|
+
}
|
|
1724
1751
|
};
|
|
1725
|
-
__name(_DescribeChannelCommand, "DescribeChannelCommand");
|
|
1726
|
-
var DescribeChannelCommand = _DescribeChannelCommand;
|
|
1727
1752
|
|
|
1728
1753
|
// src/commands/DescribeHarvestJobCommand.ts
|
|
1729
1754
|
|
|
1730
1755
|
|
|
1731
1756
|
|
|
1732
|
-
var
|
|
1757
|
+
var DescribeHarvestJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1733
1758
|
return [
|
|
1734
1759
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1735
1760
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1736
1761
|
];
|
|
1737
1762
|
}).s("MediaPackage", "DescribeHarvestJob", {}).n("MediaPackageClient", "DescribeHarvestJobCommand").f(void 0, void 0).ser(se_DescribeHarvestJobCommand).de(de_DescribeHarvestJobCommand).build() {
|
|
1763
|
+
static {
|
|
1764
|
+
__name(this, "DescribeHarvestJobCommand");
|
|
1765
|
+
}
|
|
1738
1766
|
};
|
|
1739
|
-
__name(_DescribeHarvestJobCommand, "DescribeHarvestJobCommand");
|
|
1740
|
-
var DescribeHarvestJobCommand = _DescribeHarvestJobCommand;
|
|
1741
1767
|
|
|
1742
1768
|
// src/commands/DescribeOriginEndpointCommand.ts
|
|
1743
1769
|
|
|
1744
1770
|
|
|
1745
1771
|
|
|
1746
|
-
var
|
|
1772
|
+
var DescribeOriginEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1747
1773
|
return [
|
|
1748
1774
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1749
1775
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1750
1776
|
];
|
|
1751
1777
|
}).s("MediaPackage", "DescribeOriginEndpoint", {}).n("MediaPackageClient", "DescribeOriginEndpointCommand").f(void 0, void 0).ser(se_DescribeOriginEndpointCommand).de(de_DescribeOriginEndpointCommand).build() {
|
|
1778
|
+
static {
|
|
1779
|
+
__name(this, "DescribeOriginEndpointCommand");
|
|
1780
|
+
}
|
|
1752
1781
|
};
|
|
1753
|
-
__name(_DescribeOriginEndpointCommand, "DescribeOriginEndpointCommand");
|
|
1754
|
-
var DescribeOriginEndpointCommand = _DescribeOriginEndpointCommand;
|
|
1755
1782
|
|
|
1756
1783
|
// src/commands/ListChannelsCommand.ts
|
|
1757
1784
|
|
|
1758
1785
|
|
|
1759
1786
|
|
|
1760
|
-
var
|
|
1787
|
+
var ListChannelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1761
1788
|
return [
|
|
1762
1789
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1763
1790
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1764
1791
|
];
|
|
1765
1792
|
}).s("MediaPackage", "ListChannels", {}).n("MediaPackageClient", "ListChannelsCommand").f(void 0, ListChannelsResponseFilterSensitiveLog).ser(se_ListChannelsCommand).de(de_ListChannelsCommand).build() {
|
|
1793
|
+
static {
|
|
1794
|
+
__name(this, "ListChannelsCommand");
|
|
1795
|
+
}
|
|
1766
1796
|
};
|
|
1767
|
-
__name(_ListChannelsCommand, "ListChannelsCommand");
|
|
1768
|
-
var ListChannelsCommand = _ListChannelsCommand;
|
|
1769
1797
|
|
|
1770
1798
|
// src/commands/ListHarvestJobsCommand.ts
|
|
1771
1799
|
|
|
1772
1800
|
|
|
1773
1801
|
|
|
1774
|
-
var
|
|
1802
|
+
var ListHarvestJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1775
1803
|
return [
|
|
1776
1804
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1777
1805
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1778
1806
|
];
|
|
1779
1807
|
}).s("MediaPackage", "ListHarvestJobs", {}).n("MediaPackageClient", "ListHarvestJobsCommand").f(void 0, void 0).ser(se_ListHarvestJobsCommand).de(de_ListHarvestJobsCommand).build() {
|
|
1808
|
+
static {
|
|
1809
|
+
__name(this, "ListHarvestJobsCommand");
|
|
1810
|
+
}
|
|
1780
1811
|
};
|
|
1781
|
-
__name(_ListHarvestJobsCommand, "ListHarvestJobsCommand");
|
|
1782
|
-
var ListHarvestJobsCommand = _ListHarvestJobsCommand;
|
|
1783
1812
|
|
|
1784
1813
|
// src/commands/ListOriginEndpointsCommand.ts
|
|
1785
1814
|
|
|
1786
1815
|
|
|
1787
1816
|
|
|
1788
|
-
var
|
|
1817
|
+
var ListOriginEndpointsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1789
1818
|
return [
|
|
1790
1819
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1791
1820
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1792
1821
|
];
|
|
1793
1822
|
}).s("MediaPackage", "ListOriginEndpoints", {}).n("MediaPackageClient", "ListOriginEndpointsCommand").f(void 0, void 0).ser(se_ListOriginEndpointsCommand).de(de_ListOriginEndpointsCommand).build() {
|
|
1823
|
+
static {
|
|
1824
|
+
__name(this, "ListOriginEndpointsCommand");
|
|
1825
|
+
}
|
|
1794
1826
|
};
|
|
1795
|
-
__name(_ListOriginEndpointsCommand, "ListOriginEndpointsCommand");
|
|
1796
|
-
var ListOriginEndpointsCommand = _ListOriginEndpointsCommand;
|
|
1797
1827
|
|
|
1798
1828
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1799
1829
|
|
|
1800
1830
|
|
|
1801
1831
|
|
|
1802
|
-
var
|
|
1832
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1803
1833
|
return [
|
|
1804
1834
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1805
1835
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1806
1836
|
];
|
|
1807
1837
|
}).s("MediaPackage", "ListTagsForResource", {}).n("MediaPackageClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1838
|
+
static {
|
|
1839
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1840
|
+
}
|
|
1808
1841
|
};
|
|
1809
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1810
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1811
1842
|
|
|
1812
1843
|
// src/commands/RotateChannelCredentialsCommand.ts
|
|
1813
1844
|
|
|
1814
1845
|
|
|
1815
1846
|
|
|
1816
|
-
var
|
|
1847
|
+
var RotateChannelCredentialsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1817
1848
|
return [
|
|
1818
1849
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1819
1850
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1820
1851
|
];
|
|
1821
1852
|
}).s("MediaPackage", "RotateChannelCredentials", {}).n("MediaPackageClient", "RotateChannelCredentialsCommand").f(void 0, RotateChannelCredentialsResponseFilterSensitiveLog).ser(se_RotateChannelCredentialsCommand).de(de_RotateChannelCredentialsCommand).build() {
|
|
1853
|
+
static {
|
|
1854
|
+
__name(this, "RotateChannelCredentialsCommand");
|
|
1855
|
+
}
|
|
1822
1856
|
};
|
|
1823
|
-
__name(_RotateChannelCredentialsCommand, "RotateChannelCredentialsCommand");
|
|
1824
|
-
var RotateChannelCredentialsCommand = _RotateChannelCredentialsCommand;
|
|
1825
1857
|
|
|
1826
1858
|
// src/commands/RotateIngestEndpointCredentialsCommand.ts
|
|
1827
1859
|
|
|
1828
1860
|
|
|
1829
1861
|
|
|
1830
|
-
var
|
|
1862
|
+
var RotateIngestEndpointCredentialsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1831
1863
|
return [
|
|
1832
1864
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1833
1865
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1834
1866
|
];
|
|
1835
1867
|
}).s("MediaPackage", "RotateIngestEndpointCredentials", {}).n("MediaPackageClient", "RotateIngestEndpointCredentialsCommand").f(void 0, RotateIngestEndpointCredentialsResponseFilterSensitiveLog).ser(se_RotateIngestEndpointCredentialsCommand).de(de_RotateIngestEndpointCredentialsCommand).build() {
|
|
1868
|
+
static {
|
|
1869
|
+
__name(this, "RotateIngestEndpointCredentialsCommand");
|
|
1870
|
+
}
|
|
1836
1871
|
};
|
|
1837
|
-
__name(_RotateIngestEndpointCredentialsCommand, "RotateIngestEndpointCredentialsCommand");
|
|
1838
|
-
var RotateIngestEndpointCredentialsCommand = _RotateIngestEndpointCredentialsCommand;
|
|
1839
1872
|
|
|
1840
1873
|
// src/commands/TagResourceCommand.ts
|
|
1841
1874
|
|
|
1842
1875
|
|
|
1843
1876
|
|
|
1844
|
-
var
|
|
1877
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1845
1878
|
return [
|
|
1846
1879
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1847
1880
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1848
1881
|
];
|
|
1849
1882
|
}).s("MediaPackage", "TagResource", {}).n("MediaPackageClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1883
|
+
static {
|
|
1884
|
+
__name(this, "TagResourceCommand");
|
|
1885
|
+
}
|
|
1850
1886
|
};
|
|
1851
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1852
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1853
1887
|
|
|
1854
1888
|
// src/commands/UntagResourceCommand.ts
|
|
1855
1889
|
|
|
1856
1890
|
|
|
1857
1891
|
|
|
1858
|
-
var
|
|
1892
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1859
1893
|
return [
|
|
1860
1894
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1861
1895
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1862
1896
|
];
|
|
1863
1897
|
}).s("MediaPackage", "UntagResource", {}).n("MediaPackageClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1898
|
+
static {
|
|
1899
|
+
__name(this, "UntagResourceCommand");
|
|
1900
|
+
}
|
|
1864
1901
|
};
|
|
1865
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1866
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1867
1902
|
|
|
1868
1903
|
// src/commands/UpdateChannelCommand.ts
|
|
1869
1904
|
|
|
1870
1905
|
|
|
1871
1906
|
|
|
1872
|
-
var
|
|
1907
|
+
var UpdateChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1873
1908
|
return [
|
|
1874
1909
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1875
1910
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1876
1911
|
];
|
|
1877
1912
|
}).s("MediaPackage", "UpdateChannel", {}).n("MediaPackageClient", "UpdateChannelCommand").f(void 0, UpdateChannelResponseFilterSensitiveLog).ser(se_UpdateChannelCommand).de(de_UpdateChannelCommand).build() {
|
|
1913
|
+
static {
|
|
1914
|
+
__name(this, "UpdateChannelCommand");
|
|
1915
|
+
}
|
|
1878
1916
|
};
|
|
1879
|
-
__name(_UpdateChannelCommand, "UpdateChannelCommand");
|
|
1880
|
-
var UpdateChannelCommand = _UpdateChannelCommand;
|
|
1881
1917
|
|
|
1882
1918
|
// src/commands/UpdateOriginEndpointCommand.ts
|
|
1883
1919
|
|
|
1884
1920
|
|
|
1885
1921
|
|
|
1886
|
-
var
|
|
1922
|
+
var UpdateOriginEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1887
1923
|
return [
|
|
1888
1924
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1889
1925
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1890
1926
|
];
|
|
1891
1927
|
}).s("MediaPackage", "UpdateOriginEndpoint", {}).n("MediaPackageClient", "UpdateOriginEndpointCommand").f(void 0, void 0).ser(se_UpdateOriginEndpointCommand).de(de_UpdateOriginEndpointCommand).build() {
|
|
1928
|
+
static {
|
|
1929
|
+
__name(this, "UpdateOriginEndpointCommand");
|
|
1930
|
+
}
|
|
1892
1931
|
};
|
|
1893
|
-
__name(_UpdateOriginEndpointCommand, "UpdateOriginEndpointCommand");
|
|
1894
|
-
var UpdateOriginEndpointCommand = _UpdateOriginEndpointCommand;
|
|
1895
1932
|
|
|
1896
1933
|
// src/MediaPackage.ts
|
|
1897
1934
|
var commands = {
|
|
@@ -1915,10 +1952,11 @@ var commands = {
|
|
|
1915
1952
|
UpdateChannelCommand,
|
|
1916
1953
|
UpdateOriginEndpointCommand
|
|
1917
1954
|
};
|
|
1918
|
-
var
|
|
1955
|
+
var MediaPackage = class extends MediaPackageClient {
|
|
1956
|
+
static {
|
|
1957
|
+
__name(this, "MediaPackage");
|
|
1958
|
+
}
|
|
1919
1959
|
};
|
|
1920
|
-
__name(_MediaPackage, "MediaPackage");
|
|
1921
|
-
var MediaPackage = _MediaPackage;
|
|
1922
1960
|
(0, import_smithy_client.createAggregatedClient)(commands, MediaPackage);
|
|
1923
1961
|
|
|
1924
1962
|
// src/pagination/ListChannelsPaginator.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 MediaPackageClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -94,79 +94,85 @@ export const Origination = {
|
|
|
94
94
|
DENY: "DENY",
|
|
95
95
|
};
|
|
96
96
|
export class ForbiddenException extends __BaseException {
|
|
97
|
+
name = "ForbiddenException";
|
|
98
|
+
$fault = "client";
|
|
99
|
+
Message;
|
|
97
100
|
constructor(opts) {
|
|
98
101
|
super({
|
|
99
102
|
name: "ForbiddenException",
|
|
100
103
|
$fault: "client",
|
|
101
104
|
...opts,
|
|
102
105
|
});
|
|
103
|
-
this.name = "ForbiddenException";
|
|
104
|
-
this.$fault = "client";
|
|
105
106
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
106
107
|
this.Message = opts.Message;
|
|
107
108
|
}
|
|
108
109
|
}
|
|
109
110
|
export class InternalServerErrorException extends __BaseException {
|
|
111
|
+
name = "InternalServerErrorException";
|
|
112
|
+
$fault = "server";
|
|
113
|
+
Message;
|
|
110
114
|
constructor(opts) {
|
|
111
115
|
super({
|
|
112
116
|
name: "InternalServerErrorException",
|
|
113
117
|
$fault: "server",
|
|
114
118
|
...opts,
|
|
115
119
|
});
|
|
116
|
-
this.name = "InternalServerErrorException";
|
|
117
|
-
this.$fault = "server";
|
|
118
120
|
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
119
121
|
this.Message = opts.Message;
|
|
120
122
|
}
|
|
121
123
|
}
|
|
122
124
|
export class NotFoundException extends __BaseException {
|
|
125
|
+
name = "NotFoundException";
|
|
126
|
+
$fault = "client";
|
|
127
|
+
Message;
|
|
123
128
|
constructor(opts) {
|
|
124
129
|
super({
|
|
125
130
|
name: "NotFoundException",
|
|
126
131
|
$fault: "client",
|
|
127
132
|
...opts,
|
|
128
133
|
});
|
|
129
|
-
this.name = "NotFoundException";
|
|
130
|
-
this.$fault = "client";
|
|
131
134
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
132
135
|
this.Message = opts.Message;
|
|
133
136
|
}
|
|
134
137
|
}
|
|
135
138
|
export class ServiceUnavailableException extends __BaseException {
|
|
139
|
+
name = "ServiceUnavailableException";
|
|
140
|
+
$fault = "server";
|
|
141
|
+
Message;
|
|
136
142
|
constructor(opts) {
|
|
137
143
|
super({
|
|
138
144
|
name: "ServiceUnavailableException",
|
|
139
145
|
$fault: "server",
|
|
140
146
|
...opts,
|
|
141
147
|
});
|
|
142
|
-
this.name = "ServiceUnavailableException";
|
|
143
|
-
this.$fault = "server";
|
|
144
148
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
145
149
|
this.Message = opts.Message;
|
|
146
150
|
}
|
|
147
151
|
}
|
|
148
152
|
export class TooManyRequestsException extends __BaseException {
|
|
153
|
+
name = "TooManyRequestsException";
|
|
154
|
+
$fault = "client";
|
|
155
|
+
Message;
|
|
149
156
|
constructor(opts) {
|
|
150
157
|
super({
|
|
151
158
|
name: "TooManyRequestsException",
|
|
152
159
|
$fault: "client",
|
|
153
160
|
...opts,
|
|
154
161
|
});
|
|
155
|
-
this.name = "TooManyRequestsException";
|
|
156
|
-
this.$fault = "client";
|
|
157
162
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
158
163
|
this.Message = opts.Message;
|
|
159
164
|
}
|
|
160
165
|
}
|
|
161
166
|
export class UnprocessableEntityException extends __BaseException {
|
|
167
|
+
name = "UnprocessableEntityException";
|
|
168
|
+
$fault = "client";
|
|
169
|
+
Message;
|
|
162
170
|
constructor(opts) {
|
|
163
171
|
super({
|
|
164
172
|
name: "UnprocessableEntityException",
|
|
165
173
|
$fault: "client",
|
|
166
174
|
...opts,
|
|
167
175
|
});
|
|
168
|
-
this.name = "UnprocessableEntityException";
|
|
169
|
-
this.$fault = "client";
|
|
170
176
|
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
171
177
|
this.Message = opts.Message;
|
|
172
178
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MediaPackageClientConfig) => {
|
|
|
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: MediaPackageClientConfig) => {
|
|
|
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: MediaPackageClientConfig) => {
|
|
|
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: MediaPackageClientConfig) => {
|
|
|
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: MediaPackageClientConfig) => {
|
|
|
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: MediaPackageClientConfig) => {
|
|
|
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: MediaPackageClientConfig) => {
|
|
|
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: MediaPackageClientConfig) => {
|
|
|
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-mediapackage",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage 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",
|
|
@@ -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": {
|