@aws-sdk/client-codestar-connections 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/CreateConnectionCommand.js +1 -3
- package/dist-es/commands/CreateHostCommand.js +1 -3
- package/dist-es/commands/CreateRepositoryLinkCommand.js +1 -3
- package/dist-es/commands/CreateSyncConfigurationCommand.js +1 -3
- package/dist-es/commands/DeleteConnectionCommand.js +1 -3
- package/dist-es/commands/DeleteHostCommand.js +1 -3
- package/dist-es/commands/DeleteRepositoryLinkCommand.js +1 -3
- package/dist-es/commands/DeleteSyncConfigurationCommand.js +1 -3
- package/dist-es/commands/GetConnectionCommand.js +1 -3
- package/dist-es/commands/GetHostCommand.js +1 -3
- package/dist-es/commands/GetRepositoryLinkCommand.js +1 -3
- package/dist-es/commands/GetRepositorySyncStatusCommand.js +1 -3
- package/dist-es/commands/GetResourceSyncStatusCommand.js +1 -3
- package/dist-es/commands/GetSyncBlockerSummaryCommand.js +1 -3
- package/dist-es/commands/GetSyncConfigurationCommand.js +1 -3
- package/dist-es/commands/ListConnectionsCommand.js +1 -3
- package/dist-es/commands/ListHostsCommand.js +1 -3
- package/dist-es/commands/ListRepositoryLinksCommand.js +1 -3
- package/dist-es/commands/ListRepositorySyncDefinitionsCommand.js +1 -3
- package/dist-es/commands/ListSyncConfigurationsCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateHostCommand.js +1 -3
- package/dist-es/commands/UpdateRepositoryLinkCommand.js +1 -3
- package/dist-es/commands/UpdateSyncBlockerCommand.js +1 -3
- package/dist-es/commands/UpdateSyncConfigurationCommand.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
|
@@ -1462,9 +1462,7 @@ function sharedHeaders(operation) {
|
|
|
1462
1462
|
__name(sharedHeaders, "sharedHeaders");
|
|
1463
1463
|
|
|
1464
1464
|
// src/commands/CreateConnectionCommand.ts
|
|
1465
|
-
var _CreateConnectionCommand = class _CreateConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1466
|
-
...commonParams
|
|
1467
|
-
}).m(function(Command, cs, config, o) {
|
|
1465
|
+
var _CreateConnectionCommand = class _CreateConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1468
1466
|
return [
|
|
1469
1467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1470
1468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1478,9 +1476,7 @@ var CreateConnectionCommand = _CreateConnectionCommand;
|
|
|
1478
1476
|
|
|
1479
1477
|
|
|
1480
1478
|
|
|
1481
|
-
var _CreateHostCommand = class _CreateHostCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1482
|
-
...commonParams
|
|
1483
|
-
}).m(function(Command, cs, config, o) {
|
|
1479
|
+
var _CreateHostCommand = class _CreateHostCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1484
1480
|
return [
|
|
1485
1481
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1486
1482
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1494,9 +1490,7 @@ var CreateHostCommand = _CreateHostCommand;
|
|
|
1494
1490
|
|
|
1495
1491
|
|
|
1496
1492
|
|
|
1497
|
-
var _CreateRepositoryLinkCommand = class _CreateRepositoryLinkCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1498
|
-
...commonParams
|
|
1499
|
-
}).m(function(Command, cs, config, o) {
|
|
1493
|
+
var _CreateRepositoryLinkCommand = class _CreateRepositoryLinkCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1500
1494
|
return [
|
|
1501
1495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1502
1496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1510,9 +1504,7 @@ var CreateRepositoryLinkCommand = _CreateRepositoryLinkCommand;
|
|
|
1510
1504
|
|
|
1511
1505
|
|
|
1512
1506
|
|
|
1513
|
-
var _CreateSyncConfigurationCommand = class _CreateSyncConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1514
|
-
...commonParams
|
|
1515
|
-
}).m(function(Command, cs, config, o) {
|
|
1507
|
+
var _CreateSyncConfigurationCommand = class _CreateSyncConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1516
1508
|
return [
|
|
1517
1509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1518
1510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1526,9 +1518,7 @@ var CreateSyncConfigurationCommand = _CreateSyncConfigurationCommand;
|
|
|
1526
1518
|
|
|
1527
1519
|
|
|
1528
1520
|
|
|
1529
|
-
var _DeleteConnectionCommand = class _DeleteConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1530
|
-
...commonParams
|
|
1531
|
-
}).m(function(Command, cs, config, o) {
|
|
1521
|
+
var _DeleteConnectionCommand = class _DeleteConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1532
1522
|
return [
|
|
1533
1523
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1534
1524
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1542,9 +1532,7 @@ var DeleteConnectionCommand = _DeleteConnectionCommand;
|
|
|
1542
1532
|
|
|
1543
1533
|
|
|
1544
1534
|
|
|
1545
|
-
var _DeleteHostCommand = class _DeleteHostCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1546
|
-
...commonParams
|
|
1547
|
-
}).m(function(Command, cs, config, o) {
|
|
1535
|
+
var _DeleteHostCommand = class _DeleteHostCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1548
1536
|
return [
|
|
1549
1537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1550
1538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1558,9 +1546,7 @@ var DeleteHostCommand = _DeleteHostCommand;
|
|
|
1558
1546
|
|
|
1559
1547
|
|
|
1560
1548
|
|
|
1561
|
-
var _DeleteRepositoryLinkCommand = class _DeleteRepositoryLinkCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1562
|
-
...commonParams
|
|
1563
|
-
}).m(function(Command, cs, config, o) {
|
|
1549
|
+
var _DeleteRepositoryLinkCommand = class _DeleteRepositoryLinkCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1564
1550
|
return [
|
|
1565
1551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1566
1552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1574,9 +1560,7 @@ var DeleteRepositoryLinkCommand = _DeleteRepositoryLinkCommand;
|
|
|
1574
1560
|
|
|
1575
1561
|
|
|
1576
1562
|
|
|
1577
|
-
var _DeleteSyncConfigurationCommand = class _DeleteSyncConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1578
|
-
...commonParams
|
|
1579
|
-
}).m(function(Command, cs, config, o) {
|
|
1563
|
+
var _DeleteSyncConfigurationCommand = class _DeleteSyncConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1580
1564
|
return [
|
|
1581
1565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1582
1566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1590,9 +1574,7 @@ var DeleteSyncConfigurationCommand = _DeleteSyncConfigurationCommand;
|
|
|
1590
1574
|
|
|
1591
1575
|
|
|
1592
1576
|
|
|
1593
|
-
var _GetConnectionCommand = class _GetConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1594
|
-
...commonParams
|
|
1595
|
-
}).m(function(Command, cs, config, o) {
|
|
1577
|
+
var _GetConnectionCommand = class _GetConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1596
1578
|
return [
|
|
1597
1579
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1598
1580
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1606,9 +1588,7 @@ var GetConnectionCommand = _GetConnectionCommand;
|
|
|
1606
1588
|
|
|
1607
1589
|
|
|
1608
1590
|
|
|
1609
|
-
var _GetHostCommand = class _GetHostCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1610
|
-
...commonParams
|
|
1611
|
-
}).m(function(Command, cs, config, o) {
|
|
1591
|
+
var _GetHostCommand = class _GetHostCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1612
1592
|
return [
|
|
1613
1593
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1614
1594
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1622,9 +1602,7 @@ var GetHostCommand = _GetHostCommand;
|
|
|
1622
1602
|
|
|
1623
1603
|
|
|
1624
1604
|
|
|
1625
|
-
var _GetRepositoryLinkCommand = class _GetRepositoryLinkCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1626
|
-
...commonParams
|
|
1627
|
-
}).m(function(Command, cs, config, o) {
|
|
1605
|
+
var _GetRepositoryLinkCommand = class _GetRepositoryLinkCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1628
1606
|
return [
|
|
1629
1607
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1630
1608
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1638,9 +1616,7 @@ var GetRepositoryLinkCommand = _GetRepositoryLinkCommand;
|
|
|
1638
1616
|
|
|
1639
1617
|
|
|
1640
1618
|
|
|
1641
|
-
var _GetRepositorySyncStatusCommand = class _GetRepositorySyncStatusCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1642
|
-
...commonParams
|
|
1643
|
-
}).m(function(Command, cs, config, o) {
|
|
1619
|
+
var _GetRepositorySyncStatusCommand = class _GetRepositorySyncStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1644
1620
|
return [
|
|
1645
1621
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1646
1622
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1654,9 +1630,7 @@ var GetRepositorySyncStatusCommand = _GetRepositorySyncStatusCommand;
|
|
|
1654
1630
|
|
|
1655
1631
|
|
|
1656
1632
|
|
|
1657
|
-
var _GetResourceSyncStatusCommand = class _GetResourceSyncStatusCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1658
|
-
...commonParams
|
|
1659
|
-
}).m(function(Command, cs, config, o) {
|
|
1633
|
+
var _GetResourceSyncStatusCommand = class _GetResourceSyncStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1660
1634
|
return [
|
|
1661
1635
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1662
1636
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1670,9 +1644,7 @@ var GetResourceSyncStatusCommand = _GetResourceSyncStatusCommand;
|
|
|
1670
1644
|
|
|
1671
1645
|
|
|
1672
1646
|
|
|
1673
|
-
var _GetSyncBlockerSummaryCommand = class _GetSyncBlockerSummaryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1674
|
-
...commonParams
|
|
1675
|
-
}).m(function(Command, cs, config, o) {
|
|
1647
|
+
var _GetSyncBlockerSummaryCommand = class _GetSyncBlockerSummaryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1676
1648
|
return [
|
|
1677
1649
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1678
1650
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1686,9 +1658,7 @@ var GetSyncBlockerSummaryCommand = _GetSyncBlockerSummaryCommand;
|
|
|
1686
1658
|
|
|
1687
1659
|
|
|
1688
1660
|
|
|
1689
|
-
var _GetSyncConfigurationCommand = class _GetSyncConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1690
|
-
...commonParams
|
|
1691
|
-
}).m(function(Command, cs, config, o) {
|
|
1661
|
+
var _GetSyncConfigurationCommand = class _GetSyncConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1692
1662
|
return [
|
|
1693
1663
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1694
1664
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1702,9 +1672,7 @@ var GetSyncConfigurationCommand = _GetSyncConfigurationCommand;
|
|
|
1702
1672
|
|
|
1703
1673
|
|
|
1704
1674
|
|
|
1705
|
-
var _ListConnectionsCommand = class _ListConnectionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1706
|
-
...commonParams
|
|
1707
|
-
}).m(function(Command, cs, config, o) {
|
|
1675
|
+
var _ListConnectionsCommand = class _ListConnectionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1708
1676
|
return [
|
|
1709
1677
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1710
1678
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1718,9 +1686,7 @@ var ListConnectionsCommand = _ListConnectionsCommand;
|
|
|
1718
1686
|
|
|
1719
1687
|
|
|
1720
1688
|
|
|
1721
|
-
var _ListHostsCommand = class _ListHostsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1722
|
-
...commonParams
|
|
1723
|
-
}).m(function(Command, cs, config, o) {
|
|
1689
|
+
var _ListHostsCommand = class _ListHostsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1724
1690
|
return [
|
|
1725
1691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1726
1692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1734,9 +1700,7 @@ var ListHostsCommand = _ListHostsCommand;
|
|
|
1734
1700
|
|
|
1735
1701
|
|
|
1736
1702
|
|
|
1737
|
-
var _ListRepositoryLinksCommand = class _ListRepositoryLinksCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1738
|
-
...commonParams
|
|
1739
|
-
}).m(function(Command, cs, config, o) {
|
|
1703
|
+
var _ListRepositoryLinksCommand = class _ListRepositoryLinksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1740
1704
|
return [
|
|
1741
1705
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1742
1706
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1750,9 +1714,7 @@ var ListRepositoryLinksCommand = _ListRepositoryLinksCommand;
|
|
|
1750
1714
|
|
|
1751
1715
|
|
|
1752
1716
|
|
|
1753
|
-
var _ListRepositorySyncDefinitionsCommand = class _ListRepositorySyncDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1754
|
-
...commonParams
|
|
1755
|
-
}).m(function(Command, cs, config, o) {
|
|
1717
|
+
var _ListRepositorySyncDefinitionsCommand = class _ListRepositorySyncDefinitionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1756
1718
|
return [
|
|
1757
1719
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1758
1720
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1766,9 +1728,7 @@ var ListRepositorySyncDefinitionsCommand = _ListRepositorySyncDefinitionsCommand
|
|
|
1766
1728
|
|
|
1767
1729
|
|
|
1768
1730
|
|
|
1769
|
-
var _ListSyncConfigurationsCommand = class _ListSyncConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1770
|
-
...commonParams
|
|
1771
|
-
}).m(function(Command, cs, config, o) {
|
|
1731
|
+
var _ListSyncConfigurationsCommand = class _ListSyncConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1772
1732
|
return [
|
|
1773
1733
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1774
1734
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1782,9 +1742,7 @@ var ListSyncConfigurationsCommand = _ListSyncConfigurationsCommand;
|
|
|
1782
1742
|
|
|
1783
1743
|
|
|
1784
1744
|
|
|
1785
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1786
|
-
...commonParams
|
|
1787
|
-
}).m(function(Command, cs, config, o) {
|
|
1745
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1788
1746
|
return [
|
|
1789
1747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1790
1748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1798,9 +1756,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
1798
1756
|
|
|
1799
1757
|
|
|
1800
1758
|
|
|
1801
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1802
|
-
...commonParams
|
|
1803
|
-
}).m(function(Command, cs, config, o) {
|
|
1759
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1804
1760
|
return [
|
|
1805
1761
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1806
1762
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1814,9 +1770,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
1814
1770
|
|
|
1815
1771
|
|
|
1816
1772
|
|
|
1817
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1818
|
-
...commonParams
|
|
1819
|
-
}).m(function(Command, cs, config, o) {
|
|
1773
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1820
1774
|
return [
|
|
1821
1775
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1822
1776
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1830,9 +1784,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
1830
1784
|
|
|
1831
1785
|
|
|
1832
1786
|
|
|
1833
|
-
var _UpdateHostCommand = class _UpdateHostCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1834
|
-
...commonParams
|
|
1835
|
-
}).m(function(Command, cs, config, o) {
|
|
1787
|
+
var _UpdateHostCommand = class _UpdateHostCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1836
1788
|
return [
|
|
1837
1789
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1838
1790
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1846,9 +1798,7 @@ var UpdateHostCommand = _UpdateHostCommand;
|
|
|
1846
1798
|
|
|
1847
1799
|
|
|
1848
1800
|
|
|
1849
|
-
var _UpdateRepositoryLinkCommand = class _UpdateRepositoryLinkCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1850
|
-
...commonParams
|
|
1851
|
-
}).m(function(Command, cs, config, o) {
|
|
1801
|
+
var _UpdateRepositoryLinkCommand = class _UpdateRepositoryLinkCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1852
1802
|
return [
|
|
1853
1803
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1854
1804
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1862,9 +1812,7 @@ var UpdateRepositoryLinkCommand = _UpdateRepositoryLinkCommand;
|
|
|
1862
1812
|
|
|
1863
1813
|
|
|
1864
1814
|
|
|
1865
|
-
var _UpdateSyncBlockerCommand = class _UpdateSyncBlockerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1866
|
-
...commonParams
|
|
1867
|
-
}).m(function(Command, cs, config, o) {
|
|
1815
|
+
var _UpdateSyncBlockerCommand = class _UpdateSyncBlockerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1868
1816
|
return [
|
|
1869
1817
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1870
1818
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -1878,9 +1826,7 @@ var UpdateSyncBlockerCommand = _UpdateSyncBlockerCommand;
|
|
|
1878
1826
|
|
|
1879
1827
|
|
|
1880
1828
|
|
|
1881
|
-
var _UpdateSyncConfigurationCommand = class _UpdateSyncConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
1882
|
-
...commonParams
|
|
1883
|
-
}).m(function(Command, cs, config, o) {
|
|
1829
|
+
var _UpdateSyncConfigurationCommand = class _UpdateSyncConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1884
1830
|
return [
|
|
1885
1831
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1886
1832
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_CreateConnectionCommand, se_CreateConnectionCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateConnectionCommand 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_CreateHostCommand, se_CreateHostCommand } from "../protocols/Aws_jso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateHostCommand 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_CreateRepositoryLinkCommand, se_CreateRepositoryLinkCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateRepositoryLinkCommand 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_CreateSyncConfigurationCommand, se_CreateSyncConfigurationCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateSyncConfigurationCommand 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_DeleteConnectionCommand, se_DeleteConnectionCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteConnectionCommand 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_DeleteHostCommand, se_DeleteHostCommand } from "../protocols/Aws_jso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteHostCommand 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_DeleteRepositoryLinkCommand, se_DeleteRepositoryLinkCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteRepositoryLinkCommand 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_DeleteSyncConfigurationCommand, se_DeleteSyncConfigurationCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteSyncConfigurationCommand 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_GetConnectionCommand, se_GetConnectionCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetConnectionCommand 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_GetHostCommand, se_GetHostCommand } from "../protocols/Aws_json1_0";
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetHostCommand 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_GetRepositoryLinkCommand, se_GetRepositoryLinkCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetRepositoryLinkCommand 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_GetRepositorySyncStatusCommand, se_GetRepositorySyncStatusCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetRepositorySyncStatusCommand 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_GetResourceSyncStatusCommand, se_GetResourceSyncStatusCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetResourceSyncStatusCommand 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_GetSyncBlockerSummaryCommand, se_GetSyncBlockerSummaryCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetSyncBlockerSummaryCommand 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_GetSyncConfigurationCommand, se_GetSyncConfigurationCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class GetSyncConfigurationCommand 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_ListConnectionsCommand, se_ListConnectionsCommand } from "../protoco
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListConnectionsCommand 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_ListHostsCommand, se_ListHostsCommand } from "../protocols/Aws_json1
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListHostsCommand 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_ListRepositoryLinksCommand, se_ListRepositoryLinksCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListRepositoryLinksCommand 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_ListRepositorySyncDefinitionsCommand, se_ListRepositorySyncDefinitio
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListRepositorySyncDefinitionsCommand 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_ListSyncConfigurationsCommand, se_ListSyncConfigurationsCommand } fr
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class ListSyncConfigurationsCommand 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_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_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_UpdateHostCommand, se_UpdateHostCommand } from "../protocols/Aws_jso
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateHostCommand 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_UpdateRepositoryLinkCommand, se_UpdateRepositoryLinkCommand } from "
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateRepositoryLinkCommand 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_UpdateSyncBlockerCommand, se_UpdateSyncBlockerCommand } from "../pro
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateSyncBlockerCommand 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_UpdateSyncConfigurationCommand, se_UpdateSyncConfigurationCommand }
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateSyncConfigurationCommand 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: CodeStarConnectionsClientConfig)
|
|
|
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: CodeStarConnectionsClientConfig)
|
|
|
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").CodeStarConnectionsHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: CodeStarConnectionsClientConfig)
|
|
|
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: CodeStarConnectionsClientConfig)
|
|
|
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").CodeStarConnectionsHttpAuthSchemeProvider;
|
|
39
41
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: CodeStarConnectionsClientConfig)
|
|
|
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: CodeStarConnectionsClientConfig)
|
|
|
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").CodeStarConnectionsHttpAuthSchemeProvider;
|
|
38
40
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (
|
|
|
25
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
27
|
apiVersion: string;
|
|
28
|
+
cacheMiddleware?: boolean | undefined;
|
|
28
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
29
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
30
31
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -63,6 +64,7 @@ export declare const getRuntimeConfig: (
|
|
|
63
64
|
}
|
|
64
65
|
) => import("@smithy/types").EndpointV2;
|
|
65
66
|
tls?: boolean | undefined;
|
|
67
|
+
serviceConfiguredEndpoint?: undefined;
|
|
66
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeStarConnectionsHttpAuthSchemeProvider;
|
|
68
70
|
credentials?:
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (
|
|
|
29
29
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
30
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
31
|
apiVersion: string;
|
|
32
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
33
|
urlParser: import("@smithy/types").UrlParser;
|
|
33
34
|
base64Decoder: import("@smithy/types").Decoder;
|
|
34
35
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -67,6 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
67
68
|
}
|
|
68
69
|
) => import("@smithy/types").EndpointV2;
|
|
69
70
|
tls?: boolean | undefined;
|
|
71
|
+
serviceConfiguredEndpoint?: undefined;
|
|
70
72
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
71
73
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeStarConnectionsHttpAuthSchemeProvider;
|
|
72
74
|
credentials?:
|
|
@@ -11,6 +11,7 @@ export declare const getRuntimeConfig: (
|
|
|
11
11
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
12
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
13
|
apiVersion: string;
|
|
14
|
+
cacheMiddleware?: boolean | undefined;
|
|
14
15
|
urlParser: import("@smithy/types").UrlParser;
|
|
15
16
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
16
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -57,6 +58,7 @@ export declare const getRuntimeConfig: (
|
|
|
57
58
|
}
|
|
58
59
|
) => import("@smithy/types").EndpointV2;
|
|
59
60
|
tls?: boolean | undefined;
|
|
61
|
+
serviceConfiguredEndpoint?: undefined;
|
|
60
62
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
61
63
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeStarConnectionsHttpAuthSchemeProvider;
|
|
62
64
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-connections",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Connections 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-codestar-connections",
|
|
@@ -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
|
},
|