@aws-sdk/client-servicediscovery 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.
Files changed (37) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +27 -81
  3. package/dist-es/commands/CreateHttpNamespaceCommand.js +1 -3
  4. package/dist-es/commands/CreatePrivateDnsNamespaceCommand.js +1 -3
  5. package/dist-es/commands/CreatePublicDnsNamespaceCommand.js +1 -3
  6. package/dist-es/commands/CreateServiceCommand.js +1 -3
  7. package/dist-es/commands/DeleteNamespaceCommand.js +1 -3
  8. package/dist-es/commands/DeleteServiceCommand.js +1 -3
  9. package/dist-es/commands/DeregisterInstanceCommand.js +1 -3
  10. package/dist-es/commands/DiscoverInstancesCommand.js +1 -3
  11. package/dist-es/commands/DiscoverInstancesRevisionCommand.js +1 -3
  12. package/dist-es/commands/GetInstanceCommand.js +1 -3
  13. package/dist-es/commands/GetInstancesHealthStatusCommand.js +1 -3
  14. package/dist-es/commands/GetNamespaceCommand.js +1 -3
  15. package/dist-es/commands/GetOperationCommand.js +1 -3
  16. package/dist-es/commands/GetServiceCommand.js +1 -3
  17. package/dist-es/commands/ListInstancesCommand.js +1 -3
  18. package/dist-es/commands/ListNamespacesCommand.js +1 -3
  19. package/dist-es/commands/ListOperationsCommand.js +1 -3
  20. package/dist-es/commands/ListServicesCommand.js +1 -3
  21. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  22. package/dist-es/commands/RegisterInstanceCommand.js +1 -3
  23. package/dist-es/commands/TagResourceCommand.js +1 -3
  24. package/dist-es/commands/UntagResourceCommand.js +1 -3
  25. package/dist-es/commands/UpdateHttpNamespaceCommand.js +1 -3
  26. package/dist-es/commands/UpdateInstanceCustomHealthStatusCommand.js +1 -3
  27. package/dist-es/commands/UpdatePrivateDnsNamespaceCommand.js +1 -3
  28. package/dist-es/commands/UpdatePublicDnsNamespaceCommand.js +1 -3
  29. package/dist-es/commands/UpdateServiceCommand.js +1 -3
  30. package/dist-es/endpoint/endpointResolver.js +7 -3
  31. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  32. package/dist-types/runtimeConfig.d.ts +2 -0
  33. package/dist-types/runtimeConfig.native.d.ts +2 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  37. 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
@@ -1521,9 +1521,7 @@ function sharedHeaders(operation) {
1521
1521
  __name(sharedHeaders, "sharedHeaders");
1522
1522
 
1523
1523
  // src/commands/CreateHttpNamespaceCommand.ts
1524
- var _CreateHttpNamespaceCommand = class _CreateHttpNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
1525
- ...commonParams
1526
- }).m(function(Command, cs, config, o) {
1524
+ var _CreateHttpNamespaceCommand = class _CreateHttpNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1527
1525
  return [
1528
1526
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1529
1527
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1537,9 +1535,7 @@ var CreateHttpNamespaceCommand = _CreateHttpNamespaceCommand;
1537
1535
 
1538
1536
 
1539
1537
 
1540
- var _CreatePrivateDnsNamespaceCommand = class _CreatePrivateDnsNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
1541
- ...commonParams
1542
- }).m(function(Command, cs, config, o) {
1538
+ var _CreatePrivateDnsNamespaceCommand = class _CreatePrivateDnsNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1543
1539
  return [
1544
1540
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1545
1541
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1553,9 +1549,7 @@ var CreatePrivateDnsNamespaceCommand = _CreatePrivateDnsNamespaceCommand;
1553
1549
 
1554
1550
 
1555
1551
 
1556
- var _CreatePublicDnsNamespaceCommand = class _CreatePublicDnsNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
1557
- ...commonParams
1558
- }).m(function(Command, cs, config, o) {
1552
+ var _CreatePublicDnsNamespaceCommand = class _CreatePublicDnsNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1559
1553
  return [
1560
1554
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1561
1555
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1569,9 +1563,7 @@ var CreatePublicDnsNamespaceCommand = _CreatePublicDnsNamespaceCommand;
1569
1563
 
1570
1564
 
1571
1565
 
1572
- var _CreateServiceCommand = class _CreateServiceCommand extends import_smithy_client.Command.classBuilder().ep({
1573
- ...commonParams
1574
- }).m(function(Command, cs, config, o) {
1566
+ var _CreateServiceCommand = class _CreateServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1575
1567
  return [
1576
1568
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1577
1569
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1585,9 +1577,7 @@ var CreateServiceCommand = _CreateServiceCommand;
1585
1577
 
1586
1578
 
1587
1579
 
1588
- var _DeleteNamespaceCommand = class _DeleteNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
1589
- ...commonParams
1590
- }).m(function(Command, cs, config, o) {
1580
+ var _DeleteNamespaceCommand = class _DeleteNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1591
1581
  return [
1592
1582
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1593
1583
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1601,9 +1591,7 @@ var DeleteNamespaceCommand = _DeleteNamespaceCommand;
1601
1591
 
1602
1592
 
1603
1593
 
1604
- var _DeleteServiceCommand = class _DeleteServiceCommand extends import_smithy_client.Command.classBuilder().ep({
1605
- ...commonParams
1606
- }).m(function(Command, cs, config, o) {
1594
+ var _DeleteServiceCommand = class _DeleteServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1607
1595
  return [
1608
1596
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1609
1597
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1617,9 +1605,7 @@ var DeleteServiceCommand = _DeleteServiceCommand;
1617
1605
 
1618
1606
 
1619
1607
 
1620
- var _DeregisterInstanceCommand = class _DeregisterInstanceCommand extends import_smithy_client.Command.classBuilder().ep({
1621
- ...commonParams
1622
- }).m(function(Command, cs, config, o) {
1608
+ var _DeregisterInstanceCommand = class _DeregisterInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1623
1609
  return [
1624
1610
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1625
1611
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1633,9 +1619,7 @@ var DeregisterInstanceCommand = _DeregisterInstanceCommand;
1633
1619
 
1634
1620
 
1635
1621
 
1636
- var _DiscoverInstancesCommand = class _DiscoverInstancesCommand extends import_smithy_client.Command.classBuilder().ep({
1637
- ...commonParams
1638
- }).m(function(Command, cs, config, o) {
1622
+ var _DiscoverInstancesCommand = class _DiscoverInstancesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1639
1623
  return [
1640
1624
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1641
1625
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1649,9 +1633,7 @@ var DiscoverInstancesCommand = _DiscoverInstancesCommand;
1649
1633
 
1650
1634
 
1651
1635
 
1652
- var _DiscoverInstancesRevisionCommand = class _DiscoverInstancesRevisionCommand extends import_smithy_client.Command.classBuilder().ep({
1653
- ...commonParams
1654
- }).m(function(Command, cs, config, o) {
1636
+ var _DiscoverInstancesRevisionCommand = class _DiscoverInstancesRevisionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1655
1637
  return [
1656
1638
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1657
1639
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1665,9 +1647,7 @@ var DiscoverInstancesRevisionCommand = _DiscoverInstancesRevisionCommand;
1665
1647
 
1666
1648
 
1667
1649
 
1668
- var _GetInstanceCommand = class _GetInstanceCommand extends import_smithy_client.Command.classBuilder().ep({
1669
- ...commonParams
1670
- }).m(function(Command, cs, config, o) {
1650
+ var _GetInstanceCommand = class _GetInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1671
1651
  return [
1672
1652
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1673
1653
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1681,9 +1661,7 @@ var GetInstanceCommand = _GetInstanceCommand;
1681
1661
 
1682
1662
 
1683
1663
 
1684
- var _GetInstancesHealthStatusCommand = class _GetInstancesHealthStatusCommand extends import_smithy_client.Command.classBuilder().ep({
1685
- ...commonParams
1686
- }).m(function(Command, cs, config, o) {
1664
+ var _GetInstancesHealthStatusCommand = class _GetInstancesHealthStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1687
1665
  return [
1688
1666
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1689
1667
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1697,9 +1675,7 @@ var GetInstancesHealthStatusCommand = _GetInstancesHealthStatusCommand;
1697
1675
 
1698
1676
 
1699
1677
 
1700
- var _GetNamespaceCommand = class _GetNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
1701
- ...commonParams
1702
- }).m(function(Command, cs, config, o) {
1678
+ var _GetNamespaceCommand = class _GetNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1703
1679
  return [
1704
1680
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1705
1681
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1713,9 +1689,7 @@ var GetNamespaceCommand = _GetNamespaceCommand;
1713
1689
 
1714
1690
 
1715
1691
 
1716
- var _GetOperationCommand = class _GetOperationCommand extends import_smithy_client.Command.classBuilder().ep({
1717
- ...commonParams
1718
- }).m(function(Command, cs, config, o) {
1692
+ var _GetOperationCommand = class _GetOperationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1719
1693
  return [
1720
1694
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1721
1695
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1729,9 +1703,7 @@ var GetOperationCommand = _GetOperationCommand;
1729
1703
 
1730
1704
 
1731
1705
 
1732
- var _GetServiceCommand = class _GetServiceCommand extends import_smithy_client.Command.classBuilder().ep({
1733
- ...commonParams
1734
- }).m(function(Command, cs, config, o) {
1706
+ var _GetServiceCommand = class _GetServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1735
1707
  return [
1736
1708
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1737
1709
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1745,9 +1717,7 @@ var GetServiceCommand = _GetServiceCommand;
1745
1717
 
1746
1718
 
1747
1719
 
1748
- var _ListInstancesCommand = class _ListInstancesCommand extends import_smithy_client.Command.classBuilder().ep({
1749
- ...commonParams
1750
- }).m(function(Command, cs, config, o) {
1720
+ var _ListInstancesCommand = class _ListInstancesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1751
1721
  return [
1752
1722
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1753
1723
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1761,9 +1731,7 @@ var ListInstancesCommand = _ListInstancesCommand;
1761
1731
 
1762
1732
 
1763
1733
 
1764
- var _ListNamespacesCommand = class _ListNamespacesCommand extends import_smithy_client.Command.classBuilder().ep({
1765
- ...commonParams
1766
- }).m(function(Command, cs, config, o) {
1734
+ var _ListNamespacesCommand = class _ListNamespacesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1767
1735
  return [
1768
1736
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1769
1737
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1777,9 +1745,7 @@ var ListNamespacesCommand = _ListNamespacesCommand;
1777
1745
 
1778
1746
 
1779
1747
 
1780
- var _ListOperationsCommand = class _ListOperationsCommand extends import_smithy_client.Command.classBuilder().ep({
1781
- ...commonParams
1782
- }).m(function(Command, cs, config, o) {
1748
+ var _ListOperationsCommand = class _ListOperationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1783
1749
  return [
1784
1750
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1785
1751
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1793,9 +1759,7 @@ var ListOperationsCommand = _ListOperationsCommand;
1793
1759
 
1794
1760
 
1795
1761
 
1796
- var _ListServicesCommand = class _ListServicesCommand extends import_smithy_client.Command.classBuilder().ep({
1797
- ...commonParams
1798
- }).m(function(Command, cs, config, o) {
1762
+ var _ListServicesCommand = class _ListServicesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1799
1763
  return [
1800
1764
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1801
1765
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1809,9 +1773,7 @@ var ListServicesCommand = _ListServicesCommand;
1809
1773
 
1810
1774
 
1811
1775
 
1812
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
1813
- ...commonParams
1814
- }).m(function(Command, cs, config, o) {
1776
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1815
1777
  return [
1816
1778
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1817
1779
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1825,9 +1787,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
1825
1787
 
1826
1788
 
1827
1789
 
1828
- var _RegisterInstanceCommand = class _RegisterInstanceCommand extends import_smithy_client.Command.classBuilder().ep({
1829
- ...commonParams
1830
- }).m(function(Command, cs, config, o) {
1790
+ var _RegisterInstanceCommand = class _RegisterInstanceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1831
1791
  return [
1832
1792
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1833
1793
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1841,9 +1801,7 @@ var RegisterInstanceCommand = _RegisterInstanceCommand;
1841
1801
 
1842
1802
 
1843
1803
 
1844
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
1845
- ...commonParams
1846
- }).m(function(Command, cs, config, o) {
1804
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1847
1805
  return [
1848
1806
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1849
1807
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1857,9 +1815,7 @@ var TagResourceCommand = _TagResourceCommand;
1857
1815
 
1858
1816
 
1859
1817
 
1860
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
1861
- ...commonParams
1862
- }).m(function(Command, cs, config, o) {
1818
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1863
1819
  return [
1864
1820
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1865
1821
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1873,9 +1829,7 @@ var UntagResourceCommand = _UntagResourceCommand;
1873
1829
 
1874
1830
 
1875
1831
 
1876
- var _UpdateHttpNamespaceCommand = class _UpdateHttpNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
1877
- ...commonParams
1878
- }).m(function(Command, cs, config, o) {
1832
+ var _UpdateHttpNamespaceCommand = class _UpdateHttpNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1879
1833
  return [
1880
1834
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1881
1835
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1889,9 +1843,7 @@ var UpdateHttpNamespaceCommand = _UpdateHttpNamespaceCommand;
1889
1843
 
1890
1844
 
1891
1845
 
1892
- var _UpdateInstanceCustomHealthStatusCommand = class _UpdateInstanceCustomHealthStatusCommand extends import_smithy_client.Command.classBuilder().ep({
1893
- ...commonParams
1894
- }).m(function(Command, cs, config, o) {
1846
+ var _UpdateInstanceCustomHealthStatusCommand = class _UpdateInstanceCustomHealthStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1895
1847
  return [
1896
1848
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1897
1849
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1905,9 +1857,7 @@ var UpdateInstanceCustomHealthStatusCommand = _UpdateInstanceCustomHealthStatusC
1905
1857
 
1906
1858
 
1907
1859
 
1908
- var _UpdatePrivateDnsNamespaceCommand = class _UpdatePrivateDnsNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
1909
- ...commonParams
1910
- }).m(function(Command, cs, config, o) {
1860
+ var _UpdatePrivateDnsNamespaceCommand = class _UpdatePrivateDnsNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1911
1861
  return [
1912
1862
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1913
1863
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1921,9 +1871,7 @@ var UpdatePrivateDnsNamespaceCommand = _UpdatePrivateDnsNamespaceCommand;
1921
1871
 
1922
1872
 
1923
1873
 
1924
- var _UpdatePublicDnsNamespaceCommand = class _UpdatePublicDnsNamespaceCommand extends import_smithy_client.Command.classBuilder().ep({
1925
- ...commonParams
1926
- }).m(function(Command, cs, config, o) {
1874
+ var _UpdatePublicDnsNamespaceCommand = class _UpdatePublicDnsNamespaceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1927
1875
  return [
1928
1876
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1929
1877
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1937,9 +1885,7 @@ var UpdatePublicDnsNamespaceCommand = _UpdatePublicDnsNamespaceCommand;
1937
1885
 
1938
1886
 
1939
1887
 
1940
- var _UpdateServiceCommand = class _UpdateServiceCommand extends import_smithy_client.Command.classBuilder().ep({
1941
- ...commonParams
1942
- }).m(function(Command, cs, config, o) {
1888
+ var _UpdateServiceCommand = class _UpdateServiceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1943
1889
  return [
1944
1890
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1945
1891
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_CreateHttpNamespaceCommand, se_CreateHttpNamespaceCommand } from "..
6
6
  export { $Command };
7
7
  export class CreateHttpNamespaceCommand 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_CreatePrivateDnsNamespaceCommand, se_CreatePrivateDnsNamespaceComman
6
6
  export { $Command };
7
7
  export class CreatePrivateDnsNamespaceCommand 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_CreatePublicDnsNamespaceCommand, se_CreatePublicDnsNamespaceCommand
6
6
  export { $Command };
7
7
  export class CreatePublicDnsNamespaceCommand 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_CreateServiceCommand, se_CreateServiceCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class CreateServiceCommand 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_DeleteNamespaceCommand, se_DeleteNamespaceCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class DeleteNamespaceCommand 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_DeleteServiceCommand, se_DeleteServiceCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class DeleteServiceCommand 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_DeregisterInstanceCommand, se_DeregisterInstanceCommand } from "../p
6
6
  export { $Command };
7
7
  export class DeregisterInstanceCommand 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_DiscoverInstancesCommand, se_DiscoverInstancesCommand } from "../pro
6
6
  export { $Command };
7
7
  export class DiscoverInstancesCommand 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_DiscoverInstancesRevisionCommand, se_DiscoverInstancesRevisionComman
6
6
  export { $Command };
7
7
  export class DiscoverInstancesRevisionCommand 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_GetInstanceCommand, se_GetInstanceCommand } from "../protocols/Aws_j
6
6
  export { $Command };
7
7
  export class GetInstanceCommand 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_GetInstancesHealthStatusCommand, se_GetInstancesHealthStatusCommand
6
6
  export { $Command };
7
7
  export class GetInstancesHealthStatusCommand 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_GetNamespaceCommand, se_GetNamespaceCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class GetNamespaceCommand 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_GetOperationCommand, se_GetOperationCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class GetOperationCommand 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_GetServiceCommand, se_GetServiceCommand } from "../protocols/Aws_jso
6
6
  export { $Command };
7
7
  export class GetServiceCommand 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_ListInstancesCommand, se_ListInstancesCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class ListInstancesCommand 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_ListNamespacesCommand, se_ListNamespacesCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class ListNamespacesCommand 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_ListOperationsCommand, se_ListOperationsCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class ListOperationsCommand 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_ListServicesCommand, se_ListServicesCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class ListServicesCommand 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_RegisterInstanceCommand, se_RegisterInstanceCommand } from "../proto
6
6
  export { $Command };
7
7
  export class RegisterInstanceCommand 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_UpdateHttpNamespaceCommand, se_UpdateHttpNamespaceCommand } from "..
6
6
  export { $Command };
7
7
  export class UpdateHttpNamespaceCommand 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_UpdateInstanceCustomHealthStatusCommand, se_UpdateInstanceCustomHeal
6
6
  export { $Command };
7
7
  export class UpdateInstanceCustomHealthStatusCommand 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_UpdatePrivateDnsNamespaceCommand, se_UpdatePrivateDnsNamespaceComman
6
6
  export { $Command };
7
7
  export class UpdatePrivateDnsNamespaceCommand 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_UpdatePublicDnsNamespaceCommand, se_UpdatePublicDnsNamespaceCommand
6
6
  export { $Command };
7
7
  export class UpdatePublicDnsNamespaceCommand 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_UpdateServiceCommand, se_UpdateServiceCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class UpdateServiceCommand 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: ServiceDiscoveryClientConfig) =>
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: ServiceDiscoveryClientConfig) =>
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").ServiceDiscoveryHttpAuthSchemeProvider;
39
41
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
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: ServiceDiscoveryClientConfig) =>
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").ServiceDiscoveryHttpAuthSchemeProvider;
39
41
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: ServiceDiscoveryClientConfig) =>
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: ServiceDiscoveryClientConfig) =>
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").ServiceDiscoveryHttpAuthSchemeProvider;
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").ServiceDiscoveryHttpAuthSchemeProvider;
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").ServiceDiscoveryHttpAuthSchemeProvider;
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").ServiceDiscoveryHttpAuthSchemeProvider;
62
64
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-servicediscovery",
3
3
  "description": "AWS SDK for JavaScript Servicediscovery Client for Node.js, Browser and React Native",
4
- "version": "3.645.0",
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-servicediscovery",
@@ -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.645.0",
24
- "@aws-sdk/client-sts": "3.645.0",
25
- "@aws-sdk/core": "3.635.0",
26
- "@aws-sdk/credential-provider-node": "3.645.0",
27
- "@aws-sdk/middleware-host-header": "3.620.0",
28
- "@aws-sdk/middleware-logger": "3.609.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.620.0",
30
- "@aws-sdk/middleware-user-agent": "3.645.0",
31
- "@aws-sdk/region-config-resolver": "3.614.0",
32
- "@aws-sdk/types": "3.609.0",
33
- "@aws-sdk/util-endpoints": "3.645.0",
34
- "@aws-sdk/util-user-agent-browser": "3.609.0",
35
- "@aws-sdk/util-user-agent-node": "3.614.0",
36
- "@smithy/config-resolver": "^3.0.5",
37
- "@smithy/core": "^2.4.0",
38
- "@smithy/fetch-http-handler": "^3.2.4",
39
- "@smithy/hash-node": "^3.0.3",
40
- "@smithy/invalid-dependency": "^3.0.3",
41
- "@smithy/middleware-content-length": "^3.0.5",
42
- "@smithy/middleware-endpoint": "^3.1.0",
43
- "@smithy/middleware-retry": "^3.0.15",
44
- "@smithy/middleware-serde": "^3.0.3",
45
- "@smithy/middleware-stack": "^3.0.3",
46
- "@smithy/node-config-provider": "^3.1.4",
47
- "@smithy/node-http-handler": "^3.1.4",
48
- "@smithy/protocol-http": "^4.1.0",
49
- "@smithy/smithy-client": "^3.2.0",
50
- "@smithy/types": "^3.3.0",
51
- "@smithy/url-parser": "^3.0.3",
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.15",
56
- "@smithy/util-defaults-mode-node": "^3.0.15",
57
- "@smithy/util-endpoints": "^2.0.5",
58
- "@smithy/util-middleware": "^3.0.3",
59
- "@smithy/util-retry": "^3.0.3",
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"