@aws-sdk/client-b2bi 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +27 -81
- package/dist-es/commands/CreateCapabilityCommand.js +1 -3
- package/dist-es/commands/CreatePartnershipCommand.js +1 -3
- package/dist-es/commands/CreateProfileCommand.js +1 -3
- package/dist-es/commands/CreateTransformerCommand.js +1 -3
- package/dist-es/commands/DeleteCapabilityCommand.js +1 -3
- package/dist-es/commands/DeletePartnershipCommand.js +1 -3
- package/dist-es/commands/DeleteProfileCommand.js +1 -3
- package/dist-es/commands/DeleteTransformerCommand.js +1 -3
- package/dist-es/commands/GetCapabilityCommand.js +1 -3
- package/dist-es/commands/GetPartnershipCommand.js +1 -3
- package/dist-es/commands/GetProfileCommand.js +1 -3
- package/dist-es/commands/GetTransformerCommand.js +1 -3
- package/dist-es/commands/GetTransformerJobCommand.js +1 -3
- package/dist-es/commands/ListCapabilitiesCommand.js +1 -3
- package/dist-es/commands/ListPartnershipsCommand.js +1 -3
- package/dist-es/commands/ListProfilesCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/ListTransformersCommand.js +1 -3
- package/dist-es/commands/StartTransformerJobCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/TestMappingCommand.js +1 -3
- package/dist-es/commands/TestParsingCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateCapabilityCommand.js +1 -3
- package/dist-es/commands/UpdatePartnershipCommand.js +1 -3
- package/dist-es/commands/UpdateProfileCommand.js +1 -3
- package/dist-es/commands/UpdateTransformerCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1475,9 +1475,7 @@ function sharedHeaders(operation) {
|
|
|
1475
1475
|
__name(sharedHeaders, "sharedHeaders");
|
|
1476
1476
|
|
|
1477
1477
|
// src/commands/CreateCapabilityCommand.ts
|
|
1478
|
-
var _CreateCapabilityCommand = class _CreateCapabilityCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1479
|
-
...commonParams
|
|
1480
|
-
}).m(function(Command, cs, config, o) {
|
|
1478
|
+
var _CreateCapabilityCommand = class _CreateCapabilityCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1481
1479
|
return [
|
|
1482
1480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1483
1481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1491,9 +1489,7 @@ var CreateCapabilityCommand = _CreateCapabilityCommand;
|
|
|
1491
1489
|
|
|
1492
1490
|
|
|
1493
1491
|
|
|
1494
|
-
var _CreatePartnershipCommand = class _CreatePartnershipCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1495
|
-
...commonParams
|
|
1496
|
-
}).m(function(Command, cs, config, o) {
|
|
1492
|
+
var _CreatePartnershipCommand = class _CreatePartnershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1497
1493
|
return [
|
|
1498
1494
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1499
1495
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1507,9 +1503,7 @@ var CreatePartnershipCommand = _CreatePartnershipCommand;
|
|
|
1507
1503
|
|
|
1508
1504
|
|
|
1509
1505
|
|
|
1510
|
-
var _CreateProfileCommand = class _CreateProfileCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1511
|
-
...commonParams
|
|
1512
|
-
}).m(function(Command, cs, config, o) {
|
|
1506
|
+
var _CreateProfileCommand = class _CreateProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1513
1507
|
return [
|
|
1514
1508
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1515
1509
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1523,9 +1517,7 @@ var CreateProfileCommand = _CreateProfileCommand;
|
|
|
1523
1517
|
|
|
1524
1518
|
|
|
1525
1519
|
|
|
1526
|
-
var _CreateTransformerCommand = class _CreateTransformerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1527
|
-
...commonParams
|
|
1528
|
-
}).m(function(Command, cs, config, o) {
|
|
1520
|
+
var _CreateTransformerCommand = class _CreateTransformerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1529
1521
|
return [
|
|
1530
1522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1531
1523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1539,9 +1531,7 @@ var CreateTransformerCommand = _CreateTransformerCommand;
|
|
|
1539
1531
|
|
|
1540
1532
|
|
|
1541
1533
|
|
|
1542
|
-
var _DeleteCapabilityCommand = class _DeleteCapabilityCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1543
|
-
...commonParams
|
|
1544
|
-
}).m(function(Command, cs, config, o) {
|
|
1534
|
+
var _DeleteCapabilityCommand = class _DeleteCapabilityCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1545
1535
|
return [
|
|
1546
1536
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1547
1537
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1555,9 +1545,7 @@ var DeleteCapabilityCommand = _DeleteCapabilityCommand;
|
|
|
1555
1545
|
|
|
1556
1546
|
|
|
1557
1547
|
|
|
1558
|
-
var _DeletePartnershipCommand = class _DeletePartnershipCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1559
|
-
...commonParams
|
|
1560
|
-
}).m(function(Command, cs, config, o) {
|
|
1548
|
+
var _DeletePartnershipCommand = class _DeletePartnershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1561
1549
|
return [
|
|
1562
1550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1563
1551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1571,9 +1559,7 @@ var DeletePartnershipCommand = _DeletePartnershipCommand;
|
|
|
1571
1559
|
|
|
1572
1560
|
|
|
1573
1561
|
|
|
1574
|
-
var _DeleteProfileCommand = class _DeleteProfileCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1575
|
-
...commonParams
|
|
1576
|
-
}).m(function(Command, cs, config, o) {
|
|
1562
|
+
var _DeleteProfileCommand = class _DeleteProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1577
1563
|
return [
|
|
1578
1564
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1579
1565
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1587,9 +1573,7 @@ var DeleteProfileCommand = _DeleteProfileCommand;
|
|
|
1587
1573
|
|
|
1588
1574
|
|
|
1589
1575
|
|
|
1590
|
-
var _DeleteTransformerCommand = class _DeleteTransformerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1591
|
-
...commonParams
|
|
1592
|
-
}).m(function(Command, cs, config, o) {
|
|
1576
|
+
var _DeleteTransformerCommand = class _DeleteTransformerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1593
1577
|
return [
|
|
1594
1578
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1595
1579
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1603,9 +1587,7 @@ var DeleteTransformerCommand = _DeleteTransformerCommand;
|
|
|
1603
1587
|
|
|
1604
1588
|
|
|
1605
1589
|
|
|
1606
|
-
var _GetCapabilityCommand = class _GetCapabilityCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1607
|
-
...commonParams
|
|
1608
|
-
}).m(function(Command, cs, config, o) {
|
|
1590
|
+
var _GetCapabilityCommand = class _GetCapabilityCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1609
1591
|
return [
|
|
1610
1592
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1611
1593
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1619,9 +1601,7 @@ var GetCapabilityCommand = _GetCapabilityCommand;
|
|
|
1619
1601
|
|
|
1620
1602
|
|
|
1621
1603
|
|
|
1622
|
-
var _GetPartnershipCommand = class _GetPartnershipCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1623
|
-
...commonParams
|
|
1624
|
-
}).m(function(Command, cs, config, o) {
|
|
1604
|
+
var _GetPartnershipCommand = class _GetPartnershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1625
1605
|
return [
|
|
1626
1606
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1627
1607
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1635,9 +1615,7 @@ var GetPartnershipCommand = _GetPartnershipCommand;
|
|
|
1635
1615
|
|
|
1636
1616
|
|
|
1637
1617
|
|
|
1638
|
-
var _GetProfileCommand = class _GetProfileCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1639
|
-
...commonParams
|
|
1640
|
-
}).m(function(Command, cs, config, o) {
|
|
1618
|
+
var _GetProfileCommand = class _GetProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1641
1619
|
return [
|
|
1642
1620
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1643
1621
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1651,9 +1629,7 @@ var GetProfileCommand = _GetProfileCommand;
|
|
|
1651
1629
|
|
|
1652
1630
|
|
|
1653
1631
|
|
|
1654
|
-
var _GetTransformerCommand = class _GetTransformerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1655
|
-
...commonParams
|
|
1656
|
-
}).m(function(Command, cs, config, o) {
|
|
1632
|
+
var _GetTransformerCommand = class _GetTransformerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1657
1633
|
return [
|
|
1658
1634
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1659
1635
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1667,9 +1643,7 @@ var GetTransformerCommand = _GetTransformerCommand;
|
|
|
1667
1643
|
|
|
1668
1644
|
|
|
1669
1645
|
|
|
1670
|
-
var _GetTransformerJobCommand = class _GetTransformerJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1671
|
-
...commonParams
|
|
1672
|
-
}).m(function(Command, cs, config, o) {
|
|
1646
|
+
var _GetTransformerJobCommand = class _GetTransformerJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1673
1647
|
return [
|
|
1674
1648
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1675
1649
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1683,9 +1657,7 @@ var GetTransformerJobCommand = _GetTransformerJobCommand;
|
|
|
1683
1657
|
|
|
1684
1658
|
|
|
1685
1659
|
|
|
1686
|
-
var _ListCapabilitiesCommand = class _ListCapabilitiesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1687
|
-
...commonParams
|
|
1688
|
-
}).m(function(Command, cs, config, o) {
|
|
1660
|
+
var _ListCapabilitiesCommand = class _ListCapabilitiesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1689
1661
|
return [
|
|
1690
1662
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1691
1663
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1699,9 +1671,7 @@ var ListCapabilitiesCommand = _ListCapabilitiesCommand;
|
|
|
1699
1671
|
|
|
1700
1672
|
|
|
1701
1673
|
|
|
1702
|
-
var _ListPartnershipsCommand = class _ListPartnershipsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1703
|
-
...commonParams
|
|
1704
|
-
}).m(function(Command, cs, config, o) {
|
|
1674
|
+
var _ListPartnershipsCommand = class _ListPartnershipsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1705
1675
|
return [
|
|
1706
1676
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1707
1677
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1715,9 +1685,7 @@ var ListPartnershipsCommand = _ListPartnershipsCommand;
|
|
|
1715
1685
|
|
|
1716
1686
|
|
|
1717
1687
|
|
|
1718
|
-
var _ListProfilesCommand = class _ListProfilesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1719
|
-
...commonParams
|
|
1720
|
-
}).m(function(Command, cs, config, o) {
|
|
1688
|
+
var _ListProfilesCommand = class _ListProfilesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1721
1689
|
return [
|
|
1722
1690
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1723
1691
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1731,9 +1699,7 @@ var ListProfilesCommand = _ListProfilesCommand;
|
|
|
1731
1699
|
|
|
1732
1700
|
|
|
1733
1701
|
|
|
1734
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1735
|
-
...commonParams
|
|
1736
|
-
}).m(function(Command, cs, config, o) {
|
|
1702
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1737
1703
|
return [
|
|
1738
1704
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1739
1705
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1747,9 +1713,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
1747
1713
|
|
|
1748
1714
|
|
|
1749
1715
|
|
|
1750
|
-
var _ListTransformersCommand = class _ListTransformersCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1751
|
-
...commonParams
|
|
1752
|
-
}).m(function(Command, cs, config, o) {
|
|
1716
|
+
var _ListTransformersCommand = class _ListTransformersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1753
1717
|
return [
|
|
1754
1718
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1755
1719
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1763,9 +1727,7 @@ var ListTransformersCommand = _ListTransformersCommand;
|
|
|
1763
1727
|
|
|
1764
1728
|
|
|
1765
1729
|
|
|
1766
|
-
var _StartTransformerJobCommand = class _StartTransformerJobCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1767
|
-
...commonParams
|
|
1768
|
-
}).m(function(Command, cs, config, o) {
|
|
1730
|
+
var _StartTransformerJobCommand = class _StartTransformerJobCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1769
1731
|
return [
|
|
1770
1732
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1771
1733
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1779,9 +1741,7 @@ var StartTransformerJobCommand = _StartTransformerJobCommand;
|
|
|
1779
1741
|
|
|
1780
1742
|
|
|
1781
1743
|
|
|
1782
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1783
|
-
...commonParams
|
|
1784
|
-
}).m(function(Command, cs, config, o) {
|
|
1744
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1785
1745
|
return [
|
|
1786
1746
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1787
1747
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1795,9 +1755,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
1795
1755
|
|
|
1796
1756
|
|
|
1797
1757
|
|
|
1798
|
-
var _TestMappingCommand = class _TestMappingCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1799
|
-
...commonParams
|
|
1800
|
-
}).m(function(Command, cs, config, o) {
|
|
1758
|
+
var _TestMappingCommand = class _TestMappingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1801
1759
|
return [
|
|
1802
1760
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1803
1761
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1811,9 +1769,7 @@ var TestMappingCommand = _TestMappingCommand;
|
|
|
1811
1769
|
|
|
1812
1770
|
|
|
1813
1771
|
|
|
1814
|
-
var _TestParsingCommand = class _TestParsingCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1815
|
-
...commonParams
|
|
1816
|
-
}).m(function(Command, cs, config, o) {
|
|
1772
|
+
var _TestParsingCommand = class _TestParsingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1817
1773
|
return [
|
|
1818
1774
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1819
1775
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1827,9 +1783,7 @@ var TestParsingCommand = _TestParsingCommand;
|
|
|
1827
1783
|
|
|
1828
1784
|
|
|
1829
1785
|
|
|
1830
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1831
|
-
...commonParams
|
|
1832
|
-
}).m(function(Command, cs, config, o) {
|
|
1786
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1833
1787
|
return [
|
|
1834
1788
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1835
1789
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1843,9 +1797,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
1843
1797
|
|
|
1844
1798
|
|
|
1845
1799
|
|
|
1846
|
-
var _UpdateCapabilityCommand = class _UpdateCapabilityCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1847
|
-
...commonParams
|
|
1848
|
-
}).m(function(Command, cs, config, o) {
|
|
1800
|
+
var _UpdateCapabilityCommand = class _UpdateCapabilityCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1849
1801
|
return [
|
|
1850
1802
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1851
1803
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1859,9 +1811,7 @@ var UpdateCapabilityCommand = _UpdateCapabilityCommand;
|
|
|
1859
1811
|
|
|
1860
1812
|
|
|
1861
1813
|
|
|
1862
|
-
var _UpdatePartnershipCommand = class _UpdatePartnershipCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1863
|
-
...commonParams
|
|
1864
|
-
}).m(function(Command, cs, config, o) {
|
|
1814
|
+
var _UpdatePartnershipCommand = class _UpdatePartnershipCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1865
1815
|
return [
|
|
1866
1816
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1867
1817
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1875,9 +1825,7 @@ var UpdatePartnershipCommand = _UpdatePartnershipCommand;
|
|
|
1875
1825
|
|
|
1876
1826
|
|
|
1877
1827
|
|
|
1878
|
-
var _UpdateProfileCommand = class _UpdateProfileCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1879
|
-
...commonParams
|
|
1880
|
-
}).m(function(Command, cs, config, o) {
|
|
1828
|
+
var _UpdateProfileCommand = class _UpdateProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1881
1829
|
return [
|
|
1882
1830
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1883
1831
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1891,9 +1839,7 @@ var UpdateProfileCommand = _UpdateProfileCommand;
|
|
|
1891
1839
|
|
|
1892
1840
|
|
|
1893
1841
|
|
|
1894
|
-
var _UpdateTransformerCommand = class _UpdateTransformerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1895
|
-
...commonParams
|
|
1896
|
-
}).m(function(Command, cs, config, o) {
|
|
1842
|
+
var _UpdateTransformerCommand = class _UpdateTransformerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1897
1843
|
return [
|
|
1898
1844
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1899
1845
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_CreateCapabilityCommand, se_CreateCapabilityCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateCapabilityCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_CreatePartnershipCommand, se_CreatePartnershipCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreatePartnershipCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_CreateProfileCommand, se_CreateProfileCommand } from "../protocols/A
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class CreateProfileCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateTransformerCommand, se_CreateTransformerCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateTransformerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteCapabilityCommand, se_DeleteCapabilityCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteCapabilityCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeletePartnershipCommand, se_DeletePartnershipCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeletePartnershipCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteProfileCommand, se_DeleteProfileCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteProfileCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteTransformerCommand, se_DeleteTransformerCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteTransformerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetCapabilityCommand, se_GetCapabilityCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetCapabilityCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_GetPartnershipCommand, se_GetPartnershipCommand } from "../protocols
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetPartnershipCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_GetProfileCommand, se_GetProfileCommand } from "../protocols/Aws_jso
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class GetProfileCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetTransformerCommand, se_GetTransformerCommand } from "../protocols
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetTransformerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_GetTransformerJobCommand, se_GetTransformerJobCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetTransformerJobCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListCapabilitiesCommand, se_ListCapabilitiesCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListCapabilitiesCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListPartnershipsCommand, se_ListPartnershipsCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListPartnershipsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListProfilesCommand, se_ListProfilesCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListProfilesCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListTagsForResourceCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_ListTransformersCommand, se_ListTransformersCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListTransformersCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_StartTransformerJobCommand, se_StartTransformerJobCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class StartTransformerJobCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class TagResourceCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_TestMappingCommand, se_TestMappingCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class TestMappingCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_TestParsingCommand, se_TestParsingCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class TestParsingCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UntagResourceCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UpdateCapabilityCommand, se_UpdateCapabilityCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateCapabilityCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_UpdatePartnershipCommand, se_UpdatePartnershipCommand } from "../pro
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdatePartnershipCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -7,9 +7,7 @@ import { de_UpdateProfileCommand, se_UpdateProfileCommand } from "../protocols/A
|
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class UpdateProfileCommand extends $Command
|
|
9
9
|
.classBuilder()
|
|
10
|
-
.ep(
|
|
11
|
-
...commonParams,
|
|
12
|
-
})
|
|
10
|
+
.ep(commonParams)
|
|
13
11
|
.m(function (Command, cs, config, o) {
|
|
14
12
|
return [
|
|
15
13
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_UpdateTransformerCommand, se_UpdateTransformerCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateTransformerCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
|
|
3
3
|
import { ruleSet } from "./ruleset";
|
|
4
|
+
const cache = new EndpointCache({
|
|
5
|
+
size: 50,
|
|
6
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
7
|
+
});
|
|
4
8
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
5
|
-
return resolveEndpoint(ruleSet, {
|
|
9
|
+
return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
|
|
6
10
|
endpointParams: endpointParams,
|
|
7
11
|
logger: context.logger,
|
|
8
|
-
});
|
|
12
|
+
}));
|
|
9
13
|
};
|
|
10
14
|
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").B2biHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
19
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
23
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
24
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -34,6 +35,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
34
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
36
|
}) => import("@smithy/types").EndpointV2;
|
|
36
37
|
tls?: boolean | undefined;
|
|
38
|
+
serviceConfiguredEndpoint?: undefined;
|
|
37
39
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
40
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").B2biHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean | undefined;
|
|
10
11
|
urlParser: import("@smithy/types").UrlParser;
|
|
11
12
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
13
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -33,6 +34,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
33
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
34
35
|
}) => import("@smithy/types").EndpointV2;
|
|
35
36
|
tls?: boolean | undefined;
|
|
37
|
+
serviceConfiguredEndpoint?: undefined;
|
|
36
38
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
39
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").B2biHttpAuthSchemeProvider;
|
|
38
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
23
23
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
25
|
apiVersion: string;
|
|
26
|
+
cacheMiddleware?: boolean | undefined;
|
|
26
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
29
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -61,6 +62,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
61
62
|
}
|
|
62
63
|
) => import("@smithy/types").EndpointV2;
|
|
63
64
|
tls?: boolean | undefined;
|
|
65
|
+
serviceConfiguredEndpoint?: undefined;
|
|
64
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").B2biHttpAuthSchemeProvider;
|
|
66
68
|
credentials?:
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
27
27
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
28
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
29
|
apiVersion: string;
|
|
30
|
+
cacheMiddleware?: boolean | undefined;
|
|
30
31
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
32
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
33
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -65,6 +66,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
65
66
|
}
|
|
66
67
|
) => import("@smithy/types").EndpointV2;
|
|
67
68
|
tls?: boolean | undefined;
|
|
69
|
+
serviceConfiguredEndpoint?: undefined;
|
|
68
70
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
71
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").B2biHttpAuthSchemeProvider;
|
|
70
72
|
credentials?:
|
|
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
12
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
13
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -55,6 +56,7 @@ export declare const getRuntimeConfig: (config: B2biClientConfig) => {
|
|
|
55
56
|
}
|
|
56
57
|
) => import("@smithy/types").EndpointV2;
|
|
57
58
|
tls?: boolean | undefined;
|
|
59
|
+
serviceConfiguredEndpoint?: undefined;
|
|
58
60
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
59
61
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").B2biHttpAuthSchemeProvider;
|
|
60
62
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-b2bi",
|
|
3
3
|
"description": "AWS SDK for JavaScript B2bi Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.650.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-b2bi",
|
|
@@ -20,43 +20,43 @@
|
|
|
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": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.650.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.650.0",
|
|
25
|
+
"@aws-sdk/core": "3.649.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.650.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.649.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.649.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.649.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.649.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.649.0",
|
|
32
|
+
"@aws-sdk/types": "3.649.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.649.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.649.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.649.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.6",
|
|
37
|
+
"@smithy/core": "^2.4.1",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.5",
|
|
39
|
+
"@smithy/hash-node": "^3.0.4",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.4",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.6",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.1.1",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.16",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.4",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.4",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.5",
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.1",
|
|
49
|
+
"@smithy/smithy-client": "^3.3.0",
|
|
50
|
+
"@smithy/types": "^3.4.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.4",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.0
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.16",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.16",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.0",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.4",
|
|
59
|
+
"@smithy/util-retry": "^3.0.4",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2",
|
|
62
62
|
"uuid": "^9.0.1"
|