@aws-sdk/client-groundstation 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 (43) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +33 -99
  3. package/dist-es/commands/CancelContactCommand.js +1 -3
  4. package/dist-es/commands/CreateConfigCommand.js +1 -3
  5. package/dist-es/commands/CreateDataflowEndpointGroupCommand.js +1 -3
  6. package/dist-es/commands/CreateEphemerisCommand.js +1 -3
  7. package/dist-es/commands/CreateMissionProfileCommand.js +1 -3
  8. package/dist-es/commands/DeleteConfigCommand.js +1 -3
  9. package/dist-es/commands/DeleteDataflowEndpointGroupCommand.js +1 -3
  10. package/dist-es/commands/DeleteEphemerisCommand.js +1 -3
  11. package/dist-es/commands/DeleteMissionProfileCommand.js +1 -3
  12. package/dist-es/commands/DescribeContactCommand.js +1 -3
  13. package/dist-es/commands/DescribeEphemerisCommand.js +1 -3
  14. package/dist-es/commands/GetAgentConfigurationCommand.js +1 -3
  15. package/dist-es/commands/GetConfigCommand.js +1 -3
  16. package/dist-es/commands/GetDataflowEndpointGroupCommand.js +1 -3
  17. package/dist-es/commands/GetMinuteUsageCommand.js +1 -3
  18. package/dist-es/commands/GetMissionProfileCommand.js +1 -3
  19. package/dist-es/commands/GetSatelliteCommand.js +1 -3
  20. package/dist-es/commands/ListConfigsCommand.js +1 -3
  21. package/dist-es/commands/ListContactsCommand.js +1 -3
  22. package/dist-es/commands/ListDataflowEndpointGroupsCommand.js +1 -3
  23. package/dist-es/commands/ListEphemeridesCommand.js +1 -3
  24. package/dist-es/commands/ListGroundStationsCommand.js +1 -3
  25. package/dist-es/commands/ListMissionProfilesCommand.js +1 -3
  26. package/dist-es/commands/ListSatellitesCommand.js +1 -3
  27. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  28. package/dist-es/commands/RegisterAgentCommand.js +1 -3
  29. package/dist-es/commands/ReserveContactCommand.js +1 -3
  30. package/dist-es/commands/TagResourceCommand.js +1 -3
  31. package/dist-es/commands/UntagResourceCommand.js +1 -3
  32. package/dist-es/commands/UpdateAgentStatusCommand.js +1 -3
  33. package/dist-es/commands/UpdateConfigCommand.js +1 -3
  34. package/dist-es/commands/UpdateEphemerisCommand.js +1 -3
  35. package/dist-es/commands/UpdateMissionProfileCommand.js +1 -3
  36. package/dist-es/endpoint/endpointResolver.js +7 -3
  37. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  38. package/dist-types/runtimeConfig.d.ts +2 -0
  39. package/dist-types/runtimeConfig.native.d.ts +2 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  43. package/package.json +36 -36
@@ -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
@@ -1850,9 +1850,7 @@ var _sI = "satelliteId";
1850
1850
  var _tK = "tagKeys";
1851
1851
 
1852
1852
  // src/commands/CancelContactCommand.ts
1853
- var _CancelContactCommand = class _CancelContactCommand extends import_smithy_client.Command.classBuilder().ep({
1854
- ...commonParams
1855
- }).m(function(Command, cs, config, o) {
1853
+ var _CancelContactCommand = class _CancelContactCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1856
1854
  return [
1857
1855
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1858
1856
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1866,9 +1864,7 @@ var CancelContactCommand = _CancelContactCommand;
1866
1864
 
1867
1865
 
1868
1866
 
1869
- var _CreateConfigCommand = class _CreateConfigCommand extends import_smithy_client.Command.classBuilder().ep({
1870
- ...commonParams
1871
- }).m(function(Command, cs, config, o) {
1867
+ var _CreateConfigCommand = class _CreateConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1872
1868
  return [
1873
1869
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1874
1870
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1882,9 +1878,7 @@ var CreateConfigCommand = _CreateConfigCommand;
1882
1878
 
1883
1879
 
1884
1880
 
1885
- var _CreateDataflowEndpointGroupCommand = class _CreateDataflowEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
1886
- ...commonParams
1887
- }).m(function(Command, cs, config, o) {
1881
+ var _CreateDataflowEndpointGroupCommand = class _CreateDataflowEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1888
1882
  return [
1889
1883
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1890
1884
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1898,9 +1892,7 @@ var CreateDataflowEndpointGroupCommand = _CreateDataflowEndpointGroupCommand;
1898
1892
 
1899
1893
 
1900
1894
 
1901
- var _CreateEphemerisCommand = class _CreateEphemerisCommand extends import_smithy_client.Command.classBuilder().ep({
1902
- ...commonParams
1903
- }).m(function(Command, cs, config, o) {
1895
+ var _CreateEphemerisCommand = class _CreateEphemerisCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1904
1896
  return [
1905
1897
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1906
1898
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1914,9 +1906,7 @@ var CreateEphemerisCommand = _CreateEphemerisCommand;
1914
1906
 
1915
1907
 
1916
1908
 
1917
- var _CreateMissionProfileCommand = class _CreateMissionProfileCommand extends import_smithy_client.Command.classBuilder().ep({
1918
- ...commonParams
1919
- }).m(function(Command, cs, config, o) {
1909
+ var _CreateMissionProfileCommand = class _CreateMissionProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1920
1910
  return [
1921
1911
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1922
1912
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1930,9 +1920,7 @@ var CreateMissionProfileCommand = _CreateMissionProfileCommand;
1930
1920
 
1931
1921
 
1932
1922
 
1933
- var _DeleteConfigCommand = class _DeleteConfigCommand extends import_smithy_client.Command.classBuilder().ep({
1934
- ...commonParams
1935
- }).m(function(Command, cs, config, o) {
1923
+ var _DeleteConfigCommand = class _DeleteConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1936
1924
  return [
1937
1925
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1938
1926
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1946,9 +1934,7 @@ var DeleteConfigCommand = _DeleteConfigCommand;
1946
1934
 
1947
1935
 
1948
1936
 
1949
- var _DeleteDataflowEndpointGroupCommand = class _DeleteDataflowEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
1950
- ...commonParams
1951
- }).m(function(Command, cs, config, o) {
1937
+ var _DeleteDataflowEndpointGroupCommand = class _DeleteDataflowEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1952
1938
  return [
1953
1939
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1954
1940
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1962,9 +1948,7 @@ var DeleteDataflowEndpointGroupCommand = _DeleteDataflowEndpointGroupCommand;
1962
1948
 
1963
1949
 
1964
1950
 
1965
- var _DeleteEphemerisCommand = class _DeleteEphemerisCommand extends import_smithy_client.Command.classBuilder().ep({
1966
- ...commonParams
1967
- }).m(function(Command, cs, config, o) {
1951
+ var _DeleteEphemerisCommand = class _DeleteEphemerisCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1968
1952
  return [
1969
1953
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1970
1954
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1978,9 +1962,7 @@ var DeleteEphemerisCommand = _DeleteEphemerisCommand;
1978
1962
 
1979
1963
 
1980
1964
 
1981
- var _DeleteMissionProfileCommand = class _DeleteMissionProfileCommand extends import_smithy_client.Command.classBuilder().ep({
1982
- ...commonParams
1983
- }).m(function(Command, cs, config, o) {
1965
+ var _DeleteMissionProfileCommand = class _DeleteMissionProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1984
1966
  return [
1985
1967
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1986
1968
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1994,9 +1976,7 @@ var DeleteMissionProfileCommand = _DeleteMissionProfileCommand;
1994
1976
 
1995
1977
 
1996
1978
 
1997
- var _DescribeContactCommand = class _DescribeContactCommand extends import_smithy_client.Command.classBuilder().ep({
1998
- ...commonParams
1999
- }).m(function(Command, cs, config, o) {
1979
+ var _DescribeContactCommand = class _DescribeContactCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2000
1980
  return [
2001
1981
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2002
1982
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2010,9 +1990,7 @@ var DescribeContactCommand = _DescribeContactCommand;
2010
1990
 
2011
1991
 
2012
1992
 
2013
- var _DescribeEphemerisCommand = class _DescribeEphemerisCommand extends import_smithy_client.Command.classBuilder().ep({
2014
- ...commonParams
2015
- }).m(function(Command, cs, config, o) {
1993
+ var _DescribeEphemerisCommand = class _DescribeEphemerisCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2016
1994
  return [
2017
1995
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2018
1996
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2026,9 +2004,7 @@ var DescribeEphemerisCommand = _DescribeEphemerisCommand;
2026
2004
 
2027
2005
 
2028
2006
 
2029
- var _GetAgentConfigurationCommand = class _GetAgentConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
2030
- ...commonParams
2031
- }).m(function(Command, cs, config, o) {
2007
+ var _GetAgentConfigurationCommand = class _GetAgentConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2032
2008
  return [
2033
2009
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2034
2010
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2042,9 +2018,7 @@ var GetAgentConfigurationCommand = _GetAgentConfigurationCommand;
2042
2018
 
2043
2019
 
2044
2020
 
2045
- var _GetConfigCommand = class _GetConfigCommand extends import_smithy_client.Command.classBuilder().ep({
2046
- ...commonParams
2047
- }).m(function(Command, cs, config, o) {
2021
+ var _GetConfigCommand = class _GetConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2048
2022
  return [
2049
2023
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2050
2024
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2058,9 +2032,7 @@ var GetConfigCommand = _GetConfigCommand;
2058
2032
 
2059
2033
 
2060
2034
 
2061
- var _GetDataflowEndpointGroupCommand = class _GetDataflowEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep({
2062
- ...commonParams
2063
- }).m(function(Command, cs, config, o) {
2035
+ var _GetDataflowEndpointGroupCommand = class _GetDataflowEndpointGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2064
2036
  return [
2065
2037
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2066
2038
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2074,9 +2046,7 @@ var GetDataflowEndpointGroupCommand = _GetDataflowEndpointGroupCommand;
2074
2046
 
2075
2047
 
2076
2048
 
2077
- var _GetMinuteUsageCommand = class _GetMinuteUsageCommand extends import_smithy_client.Command.classBuilder().ep({
2078
- ...commonParams
2079
- }).m(function(Command, cs, config, o) {
2049
+ var _GetMinuteUsageCommand = class _GetMinuteUsageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2080
2050
  return [
2081
2051
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2082
2052
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2090,9 +2060,7 @@ var GetMinuteUsageCommand = _GetMinuteUsageCommand;
2090
2060
 
2091
2061
 
2092
2062
 
2093
- var _GetMissionProfileCommand = class _GetMissionProfileCommand extends import_smithy_client.Command.classBuilder().ep({
2094
- ...commonParams
2095
- }).m(function(Command, cs, config, o) {
2063
+ var _GetMissionProfileCommand = class _GetMissionProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2096
2064
  return [
2097
2065
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2098
2066
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2106,9 +2074,7 @@ var GetMissionProfileCommand = _GetMissionProfileCommand;
2106
2074
 
2107
2075
 
2108
2076
 
2109
- var _GetSatelliteCommand = class _GetSatelliteCommand extends import_smithy_client.Command.classBuilder().ep({
2110
- ...commonParams
2111
- }).m(function(Command, cs, config, o) {
2077
+ var _GetSatelliteCommand = class _GetSatelliteCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2112
2078
  return [
2113
2079
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2114
2080
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2122,9 +2088,7 @@ var GetSatelliteCommand = _GetSatelliteCommand;
2122
2088
 
2123
2089
 
2124
2090
 
2125
- var _ListConfigsCommand = class _ListConfigsCommand extends import_smithy_client.Command.classBuilder().ep({
2126
- ...commonParams
2127
- }).m(function(Command, cs, config, o) {
2091
+ var _ListConfigsCommand = class _ListConfigsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2128
2092
  return [
2129
2093
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2130
2094
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2138,9 +2102,7 @@ var ListConfigsCommand = _ListConfigsCommand;
2138
2102
 
2139
2103
 
2140
2104
 
2141
- var _ListContactsCommand = class _ListContactsCommand extends import_smithy_client.Command.classBuilder().ep({
2142
- ...commonParams
2143
- }).m(function(Command, cs, config, o) {
2105
+ var _ListContactsCommand = class _ListContactsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2144
2106
  return [
2145
2107
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2146
2108
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2154,9 +2116,7 @@ var ListContactsCommand = _ListContactsCommand;
2154
2116
 
2155
2117
 
2156
2118
 
2157
- var _ListDataflowEndpointGroupsCommand = class _ListDataflowEndpointGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
2158
- ...commonParams
2159
- }).m(function(Command, cs, config, o) {
2119
+ var _ListDataflowEndpointGroupsCommand = class _ListDataflowEndpointGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2160
2120
  return [
2161
2121
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2162
2122
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2170,9 +2130,7 @@ var ListDataflowEndpointGroupsCommand = _ListDataflowEndpointGroupsCommand;
2170
2130
 
2171
2131
 
2172
2132
 
2173
- var _ListEphemeridesCommand = class _ListEphemeridesCommand extends import_smithy_client.Command.classBuilder().ep({
2174
- ...commonParams
2175
- }).m(function(Command, cs, config, o) {
2133
+ var _ListEphemeridesCommand = class _ListEphemeridesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2176
2134
  return [
2177
2135
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2178
2136
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2186,9 +2144,7 @@ var ListEphemeridesCommand = _ListEphemeridesCommand;
2186
2144
 
2187
2145
 
2188
2146
 
2189
- var _ListGroundStationsCommand = class _ListGroundStationsCommand extends import_smithy_client.Command.classBuilder().ep({
2190
- ...commonParams
2191
- }).m(function(Command, cs, config, o) {
2147
+ var _ListGroundStationsCommand = class _ListGroundStationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2192
2148
  return [
2193
2149
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2194
2150
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2202,9 +2158,7 @@ var ListGroundStationsCommand = _ListGroundStationsCommand;
2202
2158
 
2203
2159
 
2204
2160
 
2205
- var _ListMissionProfilesCommand = class _ListMissionProfilesCommand extends import_smithy_client.Command.classBuilder().ep({
2206
- ...commonParams
2207
- }).m(function(Command, cs, config, o) {
2161
+ var _ListMissionProfilesCommand = class _ListMissionProfilesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2208
2162
  return [
2209
2163
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2210
2164
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2218,9 +2172,7 @@ var ListMissionProfilesCommand = _ListMissionProfilesCommand;
2218
2172
 
2219
2173
 
2220
2174
 
2221
- var _ListSatellitesCommand = class _ListSatellitesCommand extends import_smithy_client.Command.classBuilder().ep({
2222
- ...commonParams
2223
- }).m(function(Command, cs, config, o) {
2175
+ var _ListSatellitesCommand = class _ListSatellitesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2224
2176
  return [
2225
2177
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2226
2178
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2234,9 +2186,7 @@ var ListSatellitesCommand = _ListSatellitesCommand;
2234
2186
 
2235
2187
 
2236
2188
 
2237
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2238
- ...commonParams
2239
- }).m(function(Command, cs, config, o) {
2189
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2240
2190
  return [
2241
2191
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2242
2192
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2250,9 +2200,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2250
2200
 
2251
2201
 
2252
2202
 
2253
- var _RegisterAgentCommand = class _RegisterAgentCommand extends import_smithy_client.Command.classBuilder().ep({
2254
- ...commonParams
2255
- }).m(function(Command, cs, config, o) {
2203
+ var _RegisterAgentCommand = class _RegisterAgentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2256
2204
  return [
2257
2205
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2258
2206
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2266,9 +2214,7 @@ var RegisterAgentCommand = _RegisterAgentCommand;
2266
2214
 
2267
2215
 
2268
2216
 
2269
- var _ReserveContactCommand = class _ReserveContactCommand extends import_smithy_client.Command.classBuilder().ep({
2270
- ...commonParams
2271
- }).m(function(Command, cs, config, o) {
2217
+ var _ReserveContactCommand = class _ReserveContactCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2272
2218
  return [
2273
2219
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2274
2220
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2282,9 +2228,7 @@ var ReserveContactCommand = _ReserveContactCommand;
2282
2228
 
2283
2229
 
2284
2230
 
2285
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2286
- ...commonParams
2287
- }).m(function(Command, cs, config, o) {
2231
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2288
2232
  return [
2289
2233
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2290
2234
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2298,9 +2242,7 @@ var TagResourceCommand = _TagResourceCommand;
2298
2242
 
2299
2243
 
2300
2244
 
2301
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2302
- ...commonParams
2303
- }).m(function(Command, cs, config, o) {
2245
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2304
2246
  return [
2305
2247
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2306
2248
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2314,9 +2256,7 @@ var UntagResourceCommand = _UntagResourceCommand;
2314
2256
 
2315
2257
 
2316
2258
 
2317
- var _UpdateAgentStatusCommand = class _UpdateAgentStatusCommand extends import_smithy_client.Command.classBuilder().ep({
2318
- ...commonParams
2319
- }).m(function(Command, cs, config, o) {
2259
+ var _UpdateAgentStatusCommand = class _UpdateAgentStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2320
2260
  return [
2321
2261
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2322
2262
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2330,9 +2270,7 @@ var UpdateAgentStatusCommand = _UpdateAgentStatusCommand;
2330
2270
 
2331
2271
 
2332
2272
 
2333
- var _UpdateConfigCommand = class _UpdateConfigCommand extends import_smithy_client.Command.classBuilder().ep({
2334
- ...commonParams
2335
- }).m(function(Command, cs, config, o) {
2273
+ var _UpdateConfigCommand = class _UpdateConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2336
2274
  return [
2337
2275
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2338
2276
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2346,9 +2284,7 @@ var UpdateConfigCommand = _UpdateConfigCommand;
2346
2284
 
2347
2285
 
2348
2286
 
2349
- var _UpdateEphemerisCommand = class _UpdateEphemerisCommand extends import_smithy_client.Command.classBuilder().ep({
2350
- ...commonParams
2351
- }).m(function(Command, cs, config, o) {
2287
+ var _UpdateEphemerisCommand = class _UpdateEphemerisCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2352
2288
  return [
2353
2289
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2354
2290
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2362,9 +2298,7 @@ var UpdateEphemerisCommand = _UpdateEphemerisCommand;
2362
2298
 
2363
2299
 
2364
2300
 
2365
- var _UpdateMissionProfileCommand = class _UpdateMissionProfileCommand extends import_smithy_client.Command.classBuilder().ep({
2366
- ...commonParams
2367
- }).m(function(Command, cs, config, o) {
2301
+ var _UpdateMissionProfileCommand = class _UpdateMissionProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2368
2302
  return [
2369
2303
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2370
2304
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_CancelContactCommand, se_CancelContactCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class CancelContactCommand 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_CreateConfigCommand, se_CreateConfigCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class CreateConfigCommand 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_CreateDataflowEndpointGroupCommand, se_CreateDataflowEndpointGroupCo
6
6
  export { $Command };
7
7
  export class CreateDataflowEndpointGroupCommand 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_CreateEphemerisCommand, se_CreateEphemerisCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class CreateEphemerisCommand 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_CreateMissionProfileCommand, se_CreateMissionProfileCommand } from "
6
6
  export { $Command };
7
7
  export class CreateMissionProfileCommand 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_DeleteConfigCommand, se_DeleteConfigCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class DeleteConfigCommand 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_DeleteDataflowEndpointGroupCommand, se_DeleteDataflowEndpointGroupCo
6
6
  export { $Command };
7
7
  export class DeleteDataflowEndpointGroupCommand 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_DeleteEphemerisCommand, se_DeleteEphemerisCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class DeleteEphemerisCommand 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_DeleteMissionProfileCommand, se_DeleteMissionProfileCommand } from "
6
6
  export { $Command };
7
7
  export class DeleteMissionProfileCommand 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_DescribeContactCommand, se_DescribeContactCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class DescribeContactCommand 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_DescribeEphemerisCommand, se_DescribeEphemerisCommand } from "../pro
6
6
  export { $Command };
7
7
  export class DescribeEphemerisCommand 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_GetAgentConfigurationCommand, se_GetAgentConfigurationCommand } from
6
6
  export { $Command };
7
7
  export class GetAgentConfigurationCommand 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_GetConfigCommand, se_GetConfigCommand } from "../protocols/Aws_restJ
6
6
  export { $Command };
7
7
  export class GetConfigCommand 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_GetDataflowEndpointGroupCommand, se_GetDataflowEndpointGroupCommand
6
6
  export { $Command };
7
7
  export class GetDataflowEndpointGroupCommand 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_GetMinuteUsageCommand, se_GetMinuteUsageCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class GetMinuteUsageCommand 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_GetMissionProfileCommand, se_GetMissionProfileCommand } from "../pro
6
6
  export { $Command };
7
7
  export class GetMissionProfileCommand 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_GetSatelliteCommand, se_GetSatelliteCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class GetSatelliteCommand 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_ListConfigsCommand, se_ListConfigsCommand } from "../protocols/Aws_r
6
6
  export { $Command };
7
7
  export class ListConfigsCommand 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_ListContactsCommand, se_ListContactsCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class ListContactsCommand 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_ListDataflowEndpointGroupsCommand, se_ListDataflowEndpointGroupsComm
6
6
  export { $Command };
7
7
  export class ListDataflowEndpointGroupsCommand 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_ListEphemeridesCommand, se_ListEphemeridesCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class ListEphemeridesCommand 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_ListGroundStationsCommand, se_ListGroundStationsCommand } from "../p
6
6
  export { $Command };
7
7
  export class ListGroundStationsCommand 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_ListMissionProfilesCommand, se_ListMissionProfilesCommand } from "..
6
6
  export { $Command };
7
7
  export class ListMissionProfilesCommand 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_ListSatellitesCommand, se_ListSatellitesCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class ListSatellitesCommand 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_RegisterAgentCommand, se_RegisterAgentCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class RegisterAgentCommand 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_ReserveContactCommand, se_ReserveContactCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class ReserveContactCommand 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_r
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_UpdateAgentStatusCommand, se_UpdateAgentStatusCommand } from "../pro
6
6
  export { $Command };
7
7
  export class UpdateAgentStatusCommand 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_UpdateConfigCommand, se_UpdateConfigCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class UpdateConfigCommand 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_UpdateEphemerisCommand, se_UpdateEphemerisCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class UpdateEphemerisCommand 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_UpdateMissionProfileCommand, se_UpdateMissionProfileCommand } from "
6
6
  export { $Command };
7
7
  export class UpdateMissionProfileCommand 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: GroundStationClientConfig) => {
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: GroundStationClientConfig) => {
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").GroundStationHttpAuthSchemeProvider;
39
41
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -18,6 +18,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
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: GroundStationClientConfig) => {
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").GroundStationHttpAuthSchemeProvider;
39
41
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -7,6 +7,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
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: GroundStationClientConfig) => {
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").GroundStationHttpAuthSchemeProvider;
38
40
  credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
@@ -23,6 +23,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
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: GroundStationClientConfig) => {
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").GroundStationHttpAuthSchemeProvider;
66
68
  credentials?:
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
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: GroundStationClientConfig) => {
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").GroundStationHttpAuthSchemeProvider;
70
72
  credentials?:
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
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: GroundStationClientConfig) => {
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").GroundStationHttpAuthSchemeProvider;
60
62
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-groundstation",
3
3
  "description": "AWS SDK for JavaScript Groundstation 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-groundstation",
@@ -20,45 +20,45 @@
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
- "@smithy/util-waiter": "^3.1.2",
61
+ "@smithy/util-waiter": "^3.1.3",
62
62
  "tslib": "^2.6.2"
63
63
  },
64
64
  "devDependencies": {