@aws-sdk/client-finspace-data 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 (41) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +31 -93
  3. package/dist-es/commands/AssociateUserToPermissionGroupCommand.js +1 -3
  4. package/dist-es/commands/CreateChangesetCommand.js +1 -3
  5. package/dist-es/commands/CreateDataViewCommand.js +1 -3
  6. package/dist-es/commands/CreateDatasetCommand.js +1 -3
  7. package/dist-es/commands/CreatePermissionGroupCommand.js +1 -3
  8. package/dist-es/commands/CreateUserCommand.js +1 -3
  9. package/dist-es/commands/DeleteDatasetCommand.js +1 -3
  10. package/dist-es/commands/DeletePermissionGroupCommand.js +1 -3
  11. package/dist-es/commands/DisableUserCommand.js +1 -3
  12. package/dist-es/commands/DisassociateUserFromPermissionGroupCommand.js +1 -3
  13. package/dist-es/commands/EnableUserCommand.js +1 -3
  14. package/dist-es/commands/GetChangesetCommand.js +1 -3
  15. package/dist-es/commands/GetDataViewCommand.js +1 -3
  16. package/dist-es/commands/GetDatasetCommand.js +1 -3
  17. package/dist-es/commands/GetExternalDataViewAccessDetailsCommand.js +1 -3
  18. package/dist-es/commands/GetPermissionGroupCommand.js +1 -3
  19. package/dist-es/commands/GetProgrammaticAccessCredentialsCommand.js +1 -3
  20. package/dist-es/commands/GetUserCommand.js +1 -3
  21. package/dist-es/commands/GetWorkingLocationCommand.js +1 -3
  22. package/dist-es/commands/ListChangesetsCommand.js +1 -3
  23. package/dist-es/commands/ListDataViewsCommand.js +1 -3
  24. package/dist-es/commands/ListDatasetsCommand.js +1 -3
  25. package/dist-es/commands/ListPermissionGroupsByUserCommand.js +1 -3
  26. package/dist-es/commands/ListPermissionGroupsCommand.js +1 -3
  27. package/dist-es/commands/ListUsersByPermissionGroupCommand.js +1 -3
  28. package/dist-es/commands/ListUsersCommand.js +1 -3
  29. package/dist-es/commands/ResetUserPasswordCommand.js +1 -3
  30. package/dist-es/commands/UpdateChangesetCommand.js +1 -3
  31. package/dist-es/commands/UpdateDatasetCommand.js +1 -3
  32. package/dist-es/commands/UpdatePermissionGroupCommand.js +1 -3
  33. package/dist-es/commands/UpdateUserCommand.js +1 -3
  34. package/dist-es/endpoint/endpointResolver.js +7 -3
  35. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  36. package/dist-types/runtimeConfig.d.ts +2 -0
  37. package/dist-types/runtimeConfig.native.d.ts +2 -0
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  41. 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
@@ -1687,9 +1687,7 @@ var _mR = "maxResults";
1687
1687
  var _nT = "nextToken";
1688
1688
 
1689
1689
  // src/commands/AssociateUserToPermissionGroupCommand.ts
1690
- var _AssociateUserToPermissionGroupCommand = class _AssociateUserToPermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep({
1691
- ...commonParams
1692
- }).m(function(Command, cs, config, o) {
1690
+ var _AssociateUserToPermissionGroupCommand = class _AssociateUserToPermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1693
1691
  return [
1694
1692
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1695
1693
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1703,9 +1701,7 @@ var AssociateUserToPermissionGroupCommand = _AssociateUserToPermissionGroupComma
1703
1701
 
1704
1702
 
1705
1703
 
1706
- var _CreateChangesetCommand = class _CreateChangesetCommand extends import_smithy_client.Command.classBuilder().ep({
1707
- ...commonParams
1708
- }).m(function(Command, cs, config, o) {
1704
+ var _CreateChangesetCommand = class _CreateChangesetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1709
1705
  return [
1710
1706
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1711
1707
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1719,9 +1715,7 @@ var CreateChangesetCommand = _CreateChangesetCommand;
1719
1715
 
1720
1716
 
1721
1717
 
1722
- var _CreateDatasetCommand = class _CreateDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
1723
- ...commonParams
1724
- }).m(function(Command, cs, config, o) {
1718
+ var _CreateDatasetCommand = class _CreateDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1725
1719
  return [
1726
1720
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1727
1721
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1735,9 +1729,7 @@ var CreateDatasetCommand = _CreateDatasetCommand;
1735
1729
 
1736
1730
 
1737
1731
 
1738
- var _CreateDataViewCommand = class _CreateDataViewCommand extends import_smithy_client.Command.classBuilder().ep({
1739
- ...commonParams
1740
- }).m(function(Command, cs, config, o) {
1732
+ var _CreateDataViewCommand = class _CreateDataViewCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1741
1733
  return [
1742
1734
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1743
1735
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1751,9 +1743,7 @@ var CreateDataViewCommand = _CreateDataViewCommand;
1751
1743
 
1752
1744
 
1753
1745
 
1754
- var _CreatePermissionGroupCommand = class _CreatePermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep({
1755
- ...commonParams
1756
- }).m(function(Command, cs, config, o) {
1746
+ var _CreatePermissionGroupCommand = class _CreatePermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1757
1747
  return [
1758
1748
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1759
1749
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1767,9 +1757,7 @@ var CreatePermissionGroupCommand = _CreatePermissionGroupCommand;
1767
1757
 
1768
1758
 
1769
1759
 
1770
- var _CreateUserCommand = class _CreateUserCommand extends import_smithy_client.Command.classBuilder().ep({
1771
- ...commonParams
1772
- }).m(function(Command, cs, config, o) {
1760
+ var _CreateUserCommand = class _CreateUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1773
1761
  return [
1774
1762
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1775
1763
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1783,9 +1771,7 @@ var CreateUserCommand = _CreateUserCommand;
1783
1771
 
1784
1772
 
1785
1773
 
1786
- var _DeleteDatasetCommand = class _DeleteDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
1787
- ...commonParams
1788
- }).m(function(Command, cs, config, o) {
1774
+ var _DeleteDatasetCommand = class _DeleteDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1789
1775
  return [
1790
1776
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1791
1777
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1799,9 +1785,7 @@ var DeleteDatasetCommand = _DeleteDatasetCommand;
1799
1785
 
1800
1786
 
1801
1787
 
1802
- var _DeletePermissionGroupCommand = class _DeletePermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep({
1803
- ...commonParams
1804
- }).m(function(Command, cs, config, o) {
1788
+ var _DeletePermissionGroupCommand = class _DeletePermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1805
1789
  return [
1806
1790
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1807
1791
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1815,9 +1799,7 @@ var DeletePermissionGroupCommand = _DeletePermissionGroupCommand;
1815
1799
 
1816
1800
 
1817
1801
 
1818
- var _DisableUserCommand = class _DisableUserCommand extends import_smithy_client.Command.classBuilder().ep({
1819
- ...commonParams
1820
- }).m(function(Command, cs, config, o) {
1802
+ var _DisableUserCommand = class _DisableUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1821
1803
  return [
1822
1804
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1823
1805
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1831,9 +1813,7 @@ var DisableUserCommand = _DisableUserCommand;
1831
1813
 
1832
1814
 
1833
1815
 
1834
- var _DisassociateUserFromPermissionGroupCommand = class _DisassociateUserFromPermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep({
1835
- ...commonParams
1836
- }).m(function(Command, cs, config, o) {
1816
+ var _DisassociateUserFromPermissionGroupCommand = class _DisassociateUserFromPermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1837
1817
  return [
1838
1818
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1839
1819
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1847,9 +1827,7 @@ var DisassociateUserFromPermissionGroupCommand = _DisassociateUserFromPermission
1847
1827
 
1848
1828
 
1849
1829
 
1850
- var _EnableUserCommand = class _EnableUserCommand extends import_smithy_client.Command.classBuilder().ep({
1851
- ...commonParams
1852
- }).m(function(Command, cs, config, o) {
1830
+ var _EnableUserCommand = class _EnableUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1853
1831
  return [
1854
1832
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1855
1833
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1863,9 +1841,7 @@ var EnableUserCommand = _EnableUserCommand;
1863
1841
 
1864
1842
 
1865
1843
 
1866
- var _GetChangesetCommand = class _GetChangesetCommand extends import_smithy_client.Command.classBuilder().ep({
1867
- ...commonParams
1868
- }).m(function(Command, cs, config, o) {
1844
+ var _GetChangesetCommand = class _GetChangesetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1869
1845
  return [
1870
1846
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1871
1847
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1879,9 +1855,7 @@ var GetChangesetCommand = _GetChangesetCommand;
1879
1855
 
1880
1856
 
1881
1857
 
1882
- var _GetDatasetCommand = class _GetDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
1883
- ...commonParams
1884
- }).m(function(Command, cs, config, o) {
1858
+ var _GetDatasetCommand = class _GetDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1885
1859
  return [
1886
1860
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1887
1861
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1895,9 +1869,7 @@ var GetDatasetCommand = _GetDatasetCommand;
1895
1869
 
1896
1870
 
1897
1871
 
1898
- var _GetDataViewCommand = class _GetDataViewCommand extends import_smithy_client.Command.classBuilder().ep({
1899
- ...commonParams
1900
- }).m(function(Command, cs, config, o) {
1872
+ var _GetDataViewCommand = class _GetDataViewCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1901
1873
  return [
1902
1874
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1903
1875
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1911,9 +1883,7 @@ var GetDataViewCommand = _GetDataViewCommand;
1911
1883
 
1912
1884
 
1913
1885
 
1914
- var _GetExternalDataViewAccessDetailsCommand = class _GetExternalDataViewAccessDetailsCommand extends import_smithy_client.Command.classBuilder().ep({
1915
- ...commonParams
1916
- }).m(function(Command, cs, config, o) {
1886
+ var _GetExternalDataViewAccessDetailsCommand = class _GetExternalDataViewAccessDetailsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1917
1887
  return [
1918
1888
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1919
1889
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1927,9 +1897,7 @@ var GetExternalDataViewAccessDetailsCommand = _GetExternalDataViewAccessDetailsC
1927
1897
 
1928
1898
 
1929
1899
 
1930
- var _GetPermissionGroupCommand = class _GetPermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep({
1931
- ...commonParams
1932
- }).m(function(Command, cs, config, o) {
1900
+ var _GetPermissionGroupCommand = class _GetPermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1933
1901
  return [
1934
1902
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1935
1903
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1943,9 +1911,7 @@ var GetPermissionGroupCommand = _GetPermissionGroupCommand;
1943
1911
 
1944
1912
 
1945
1913
 
1946
- var _GetProgrammaticAccessCredentialsCommand = class _GetProgrammaticAccessCredentialsCommand extends import_smithy_client.Command.classBuilder().ep({
1947
- ...commonParams
1948
- }).m(function(Command, cs, config, o) {
1914
+ var _GetProgrammaticAccessCredentialsCommand = class _GetProgrammaticAccessCredentialsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1949
1915
  return [
1950
1916
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1951
1917
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1959,9 +1925,7 @@ var GetProgrammaticAccessCredentialsCommand = _GetProgrammaticAccessCredentialsC
1959
1925
 
1960
1926
 
1961
1927
 
1962
- var _GetUserCommand = class _GetUserCommand extends import_smithy_client.Command.classBuilder().ep({
1963
- ...commonParams
1964
- }).m(function(Command, cs, config, o) {
1928
+ var _GetUserCommand = class _GetUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1965
1929
  return [
1966
1930
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1967
1931
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1975,9 +1939,7 @@ var GetUserCommand = _GetUserCommand;
1975
1939
 
1976
1940
 
1977
1941
 
1978
- var _GetWorkingLocationCommand = class _GetWorkingLocationCommand extends import_smithy_client.Command.classBuilder().ep({
1979
- ...commonParams
1980
- }).m(function(Command, cs, config, o) {
1942
+ var _GetWorkingLocationCommand = class _GetWorkingLocationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1981
1943
  return [
1982
1944
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1983
1945
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1991,9 +1953,7 @@ var GetWorkingLocationCommand = _GetWorkingLocationCommand;
1991
1953
 
1992
1954
 
1993
1955
 
1994
- var _ListChangesetsCommand = class _ListChangesetsCommand extends import_smithy_client.Command.classBuilder().ep({
1995
- ...commonParams
1996
- }).m(function(Command, cs, config, o) {
1956
+ var _ListChangesetsCommand = class _ListChangesetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1997
1957
  return [
1998
1958
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1999
1959
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2007,9 +1967,7 @@ var ListChangesetsCommand = _ListChangesetsCommand;
2007
1967
 
2008
1968
 
2009
1969
 
2010
- var _ListDatasetsCommand = class _ListDatasetsCommand extends import_smithy_client.Command.classBuilder().ep({
2011
- ...commonParams
2012
- }).m(function(Command, cs, config, o) {
1970
+ var _ListDatasetsCommand = class _ListDatasetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2013
1971
  return [
2014
1972
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2015
1973
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2023,9 +1981,7 @@ var ListDatasetsCommand = _ListDatasetsCommand;
2023
1981
 
2024
1982
 
2025
1983
 
2026
- var _ListDataViewsCommand = class _ListDataViewsCommand extends import_smithy_client.Command.classBuilder().ep({
2027
- ...commonParams
2028
- }).m(function(Command, cs, config, o) {
1984
+ var _ListDataViewsCommand = class _ListDataViewsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2029
1985
  return [
2030
1986
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2031
1987
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2039,9 +1995,7 @@ var ListDataViewsCommand = _ListDataViewsCommand;
2039
1995
 
2040
1996
 
2041
1997
 
2042
- var _ListPermissionGroupsByUserCommand = class _ListPermissionGroupsByUserCommand extends import_smithy_client.Command.classBuilder().ep({
2043
- ...commonParams
2044
- }).m(function(Command, cs, config, o) {
1998
+ var _ListPermissionGroupsByUserCommand = class _ListPermissionGroupsByUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2045
1999
  return [
2046
2000
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2047
2001
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2055,9 +2009,7 @@ var ListPermissionGroupsByUserCommand = _ListPermissionGroupsByUserCommand;
2055
2009
 
2056
2010
 
2057
2011
 
2058
- var _ListPermissionGroupsCommand = class _ListPermissionGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
2059
- ...commonParams
2060
- }).m(function(Command, cs, config, o) {
2012
+ var _ListPermissionGroupsCommand = class _ListPermissionGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2061
2013
  return [
2062
2014
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2063
2015
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2071,9 +2023,7 @@ var ListPermissionGroupsCommand = _ListPermissionGroupsCommand;
2071
2023
 
2072
2024
 
2073
2025
 
2074
- var _ListUsersByPermissionGroupCommand = class _ListUsersByPermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep({
2075
- ...commonParams
2076
- }).m(function(Command, cs, config, o) {
2026
+ var _ListUsersByPermissionGroupCommand = class _ListUsersByPermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2077
2027
  return [
2078
2028
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2079
2029
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2087,9 +2037,7 @@ var ListUsersByPermissionGroupCommand = _ListUsersByPermissionGroupCommand;
2087
2037
 
2088
2038
 
2089
2039
 
2090
- var _ListUsersCommand = class _ListUsersCommand extends import_smithy_client.Command.classBuilder().ep({
2091
- ...commonParams
2092
- }).m(function(Command, cs, config, o) {
2040
+ var _ListUsersCommand = class _ListUsersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2093
2041
  return [
2094
2042
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2095
2043
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2103,9 +2051,7 @@ var ListUsersCommand = _ListUsersCommand;
2103
2051
 
2104
2052
 
2105
2053
 
2106
- var _ResetUserPasswordCommand = class _ResetUserPasswordCommand extends import_smithy_client.Command.classBuilder().ep({
2107
- ...commonParams
2108
- }).m(function(Command, cs, config, o) {
2054
+ var _ResetUserPasswordCommand = class _ResetUserPasswordCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2109
2055
  return [
2110
2056
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2111
2057
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2119,9 +2065,7 @@ var ResetUserPasswordCommand = _ResetUserPasswordCommand;
2119
2065
 
2120
2066
 
2121
2067
 
2122
- var _UpdateChangesetCommand = class _UpdateChangesetCommand extends import_smithy_client.Command.classBuilder().ep({
2123
- ...commonParams
2124
- }).m(function(Command, cs, config, o) {
2068
+ var _UpdateChangesetCommand = class _UpdateChangesetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2125
2069
  return [
2126
2070
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2127
2071
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2135,9 +2079,7 @@ var UpdateChangesetCommand = _UpdateChangesetCommand;
2135
2079
 
2136
2080
 
2137
2081
 
2138
- var _UpdateDatasetCommand = class _UpdateDatasetCommand extends import_smithy_client.Command.classBuilder().ep({
2139
- ...commonParams
2140
- }).m(function(Command, cs, config, o) {
2082
+ var _UpdateDatasetCommand = class _UpdateDatasetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2141
2083
  return [
2142
2084
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2143
2085
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2151,9 +2093,7 @@ var UpdateDatasetCommand = _UpdateDatasetCommand;
2151
2093
 
2152
2094
 
2153
2095
 
2154
- var _UpdatePermissionGroupCommand = class _UpdatePermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep({
2155
- ...commonParams
2156
- }).m(function(Command, cs, config, o) {
2096
+ var _UpdatePermissionGroupCommand = class _UpdatePermissionGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2157
2097
  return [
2158
2098
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2159
2099
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2167,9 +2107,7 @@ var UpdatePermissionGroupCommand = _UpdatePermissionGroupCommand;
2167
2107
 
2168
2108
 
2169
2109
 
2170
- var _UpdateUserCommand = class _UpdateUserCommand extends import_smithy_client.Command.classBuilder().ep({
2171
- ...commonParams
2172
- }).m(function(Command, cs, config, o) {
2110
+ var _UpdateUserCommand = class _UpdateUserCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2173
2111
  return [
2174
2112
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2175
2113
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_AssociateUserToPermissionGroupCommand, se_AssociateUserToPermissionG
6
6
  export { $Command };
7
7
  export class AssociateUserToPermissionGroupCommand 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_CreateChangesetCommand, se_CreateChangesetCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class CreateChangesetCommand 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_CreateDataViewCommand, se_CreateDataViewCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class CreateDataViewCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateDatasetCommand, se_CreateDatasetCommand } from "../protocols/A
7
7
  export { $Command };
8
8
  export class CreateDatasetCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreatePermissionGroupCommand, se_CreatePermissionGroupCommand } from
7
7
  export { $Command };
8
8
  export class CreatePermissionGroupCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateUserCommand, se_CreateUserCommand } from "../protocols/Aws_res
7
7
  export { $Command };
8
8
  export class CreateUserCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteDatasetCommand, se_DeleteDatasetCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class DeleteDatasetCommand 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_DeletePermissionGroupCommand, se_DeletePermissionGroupCommand } from
6
6
  export { $Command };
7
7
  export class DeletePermissionGroupCommand 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_DisableUserCommand, se_DisableUserCommand } from "../protocols/Aws_r
6
6
  export { $Command };
7
7
  export class DisableUserCommand 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_DisassociateUserFromPermissionGroupCommand, se_DisassociateUserFromP
6
6
  export { $Command };
7
7
  export class DisassociateUserFromPermissionGroupCommand 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_EnableUserCommand, se_EnableUserCommand } from "../protocols/Aws_res
6
6
  export { $Command };
7
7
  export class EnableUserCommand 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_GetChangesetCommand, se_GetChangesetCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class GetChangesetCommand 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_GetDataViewCommand, se_GetDataViewCommand } from "../protocols/Aws_r
6
6
  export { $Command };
7
7
  export class GetDataViewCommand 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_GetDatasetCommand, se_GetDatasetCommand } from "../protocols/Aws_res
6
6
  export { $Command };
7
7
  export class GetDatasetCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_GetExternalDataViewAccessDetailsCommand, se_GetExternalDataViewAcces
7
7
  export { $Command };
8
8
  export class GetExternalDataViewAccessDetailsCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_GetPermissionGroupCommand, se_GetPermissionGroupCommand } from "../p
7
7
  export { $Command };
8
8
  export class GetPermissionGroupCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_GetProgrammaticAccessCredentialsCommand, se_GetProgrammaticAccessCre
7
7
  export { $Command };
8
8
  export class GetProgrammaticAccessCredentialsCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_GetUserCommand, se_GetUserCommand } from "../protocols/Aws_restJson1
7
7
  export { $Command };
8
8
  export class GetUserCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_GetWorkingLocationCommand, se_GetWorkingLocationCommand } from "../p
6
6
  export { $Command };
7
7
  export class GetWorkingLocationCommand 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_ListChangesetsCommand, se_ListChangesetsCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class ListChangesetsCommand 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_ListDataViewsCommand, se_ListDataViewsCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class ListDataViewsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_ListDatasetsCommand, se_ListDatasetsCommand } from "../protocols/Aws
7
7
  export { $Command };
8
8
  export class ListDatasetsCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_ListPermissionGroupsByUserCommand, se_ListPermissionGroupsByUserComm
7
7
  export { $Command };
8
8
  export class ListPermissionGroupsByUserCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_ListPermissionGroupsCommand, se_ListPermissionGroupsCommand } from "
7
7
  export { $Command };
8
8
  export class ListPermissionGroupsCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_ListUsersByPermissionGroupCommand, se_ListUsersByPermissionGroupComm
7
7
  export { $Command };
8
8
  export class ListUsersByPermissionGroupCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_ListUsersCommand, se_ListUsersCommand } from "../protocols/Aws_restJ
7
7
  export { $Command };
8
8
  export class ListUsersCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_ResetUserPasswordCommand, se_ResetUserPasswordCommand } from "../pro
7
7
  export { $Command };
8
8
  export class ResetUserPasswordCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UpdateChangesetCommand, se_UpdateChangesetCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class UpdateChangesetCommand 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_UpdateDatasetCommand, se_UpdateDatasetCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class UpdateDatasetCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_UpdatePermissionGroupCommand, se_UpdatePermissionGroupCommand } from
7
7
  export { $Command };
8
8
  export class UpdatePermissionGroupCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_UpdateUserCommand, se_UpdateUserCommand } from "../protocols/Aws_res
7
7
  export { $Command };
8
8
  export class UpdateUserCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -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: FinspaceDataClientConfig) => {
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: FinspaceDataClientConfig) => {
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").FinspaceDataHttpAuthSchemeProvider;
39
41
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
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: FinspaceDataClientConfig) => {
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").FinspaceDataHttpAuthSchemeProvider;
39
41
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
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: FinspaceDataClientConfig) => {
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").FinspaceDataHttpAuthSchemeProvider;
38
40
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
23
23
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
24
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
25
25
  apiVersion: string;
26
+ cacheMiddleware?: boolean | undefined;
26
27
  urlParser: import("@smithy/types").UrlParser;
27
28
  base64Decoder: import("@smithy/types").Decoder;
28
29
  base64Encoder: (_input: string | Uint8Array) => string;
@@ -61,6 +62,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
61
62
  }
62
63
  ) => import("@smithy/types").EndpointV2;
63
64
  tls?: boolean | undefined;
65
+ serviceConfiguredEndpoint?: undefined;
64
66
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
65
67
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").FinspaceDataHttpAuthSchemeProvider;
66
68
  credentials?:
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
27
27
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
28
28
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
29
  apiVersion: string;
30
+ cacheMiddleware?: boolean | undefined;
30
31
  urlParser: import("@smithy/types").UrlParser;
31
32
  base64Decoder: import("@smithy/types").Decoder;
32
33
  base64Encoder: (_input: string | Uint8Array) => string;
@@ -65,6 +66,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
65
66
  }
66
67
  ) => import("@smithy/types").EndpointV2;
67
68
  tls?: boolean | undefined;
69
+ serviceConfiguredEndpoint?: undefined;
68
70
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
69
71
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").FinspaceDataHttpAuthSchemeProvider;
70
72
  credentials?:
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
9
9
  | import("@smithy/protocol-http").HttpHandler<any>
10
10
  | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
11
  apiVersion: string;
12
+ cacheMiddleware?: boolean | undefined;
12
13
  urlParser: import("@smithy/types").UrlParser;
13
14
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
14
15
  streamCollector: import("@smithy/types").StreamCollector;
@@ -55,6 +56,7 @@ export declare const getRuntimeConfig: (config: FinspaceDataClientConfig) => {
55
56
  }
56
57
  ) => import("@smithy/types").EndpointV2;
57
58
  tls?: boolean | undefined;
59
+ serviceConfiguredEndpoint?: undefined;
58
60
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
59
61
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").FinspaceDataHttpAuthSchemeProvider;
60
62
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-finspace-data",
3
3
  "description": "AWS SDK for JavaScript Finspace Data 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-finspace-data",
@@ -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"