@aws-sdk/client-groundstation 3.716.0 → 3.723.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +188 -129
- package/dist-es/GroundStationClient.js +1 -0
- package/dist-es/models/models_0.js +11 -8
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -191,7 +191,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
191
191
|
}, "resolveRuntimeExtensions");
|
|
192
192
|
|
|
193
193
|
// src/GroundStationClient.ts
|
|
194
|
-
var
|
|
194
|
+
var GroundStationClient = class extends import_smithy_client.Client {
|
|
195
|
+
static {
|
|
196
|
+
__name(this, "GroundStationClient");
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* The resolved configuration of GroundStationClient class. This is resolved and normalized from the {@link GroundStationClientConfig | constructor configuration interface}.
|
|
200
|
+
*/
|
|
201
|
+
config;
|
|
195
202
|
constructor(...[configuration]) {
|
|
196
203
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
197
204
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -201,7 +208,7 @@ var _GroundStationClient = class _GroundStationClient extends import_smithy_clie
|
|
|
201
208
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
202
209
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
203
210
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
204
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
211
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
205
212
|
super(_config_8);
|
|
206
213
|
this.config = _config_8;
|
|
207
214
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -229,8 +236,6 @@ var _GroundStationClient = class _GroundStationClient extends import_smithy_clie
|
|
|
229
236
|
super.destroy();
|
|
230
237
|
}
|
|
231
238
|
};
|
|
232
|
-
__name(_GroundStationClient, "GroundStationClient");
|
|
233
|
-
var GroundStationClient = _GroundStationClient;
|
|
234
239
|
|
|
235
240
|
// src/GroundStation.ts
|
|
236
241
|
|
|
@@ -247,7 +252,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
247
252
|
|
|
248
253
|
// src/models/GroundStationServiceException.ts
|
|
249
254
|
|
|
250
|
-
var
|
|
255
|
+
var GroundStationServiceException = class _GroundStationServiceException extends import_smithy_client.ServiceException {
|
|
256
|
+
static {
|
|
257
|
+
__name(this, "GroundStationServiceException");
|
|
258
|
+
}
|
|
251
259
|
/**
|
|
252
260
|
* @internal
|
|
253
261
|
*/
|
|
@@ -256,11 +264,19 @@ var _GroundStationServiceException = class _GroundStationServiceException extend
|
|
|
256
264
|
Object.setPrototypeOf(this, _GroundStationServiceException.prototype);
|
|
257
265
|
}
|
|
258
266
|
};
|
|
259
|
-
__name(_GroundStationServiceException, "GroundStationServiceException");
|
|
260
|
-
var GroundStationServiceException = _GroundStationServiceException;
|
|
261
267
|
|
|
262
268
|
// src/models/models_0.ts
|
|
263
|
-
var
|
|
269
|
+
var DependencyException = class _DependencyException extends GroundStationServiceException {
|
|
270
|
+
static {
|
|
271
|
+
__name(this, "DependencyException");
|
|
272
|
+
}
|
|
273
|
+
name = "DependencyException";
|
|
274
|
+
$fault = "server";
|
|
275
|
+
/**
|
|
276
|
+
* <p/>
|
|
277
|
+
* @public
|
|
278
|
+
*/
|
|
279
|
+
parameterName;
|
|
264
280
|
/**
|
|
265
281
|
* @internal
|
|
266
282
|
*/
|
|
@@ -270,15 +286,21 @@ var _DependencyException = class _DependencyException extends GroundStationServi
|
|
|
270
286
|
$fault: "server",
|
|
271
287
|
...opts
|
|
272
288
|
});
|
|
273
|
-
this.name = "DependencyException";
|
|
274
|
-
this.$fault = "server";
|
|
275
289
|
Object.setPrototypeOf(this, _DependencyException.prototype);
|
|
276
290
|
this.parameterName = opts.parameterName;
|
|
277
291
|
}
|
|
278
292
|
};
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
293
|
+
var InvalidParameterException = class _InvalidParameterException extends GroundStationServiceException {
|
|
294
|
+
static {
|
|
295
|
+
__name(this, "InvalidParameterException");
|
|
296
|
+
}
|
|
297
|
+
name = "InvalidParameterException";
|
|
298
|
+
$fault = "client";
|
|
299
|
+
/**
|
|
300
|
+
* <p/>
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
parameterName;
|
|
282
304
|
/**
|
|
283
305
|
* @internal
|
|
284
306
|
*/
|
|
@@ -288,15 +310,16 @@ var _InvalidParameterException = class _InvalidParameterException extends Ground
|
|
|
288
310
|
$fault: "client",
|
|
289
311
|
...opts
|
|
290
312
|
});
|
|
291
|
-
this.name = "InvalidParameterException";
|
|
292
|
-
this.$fault = "client";
|
|
293
313
|
Object.setPrototypeOf(this, _InvalidParameterException.prototype);
|
|
294
314
|
this.parameterName = opts.parameterName;
|
|
295
315
|
}
|
|
296
316
|
};
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
317
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends GroundStationServiceException {
|
|
318
|
+
static {
|
|
319
|
+
__name(this, "ResourceNotFoundException");
|
|
320
|
+
}
|
|
321
|
+
name = "ResourceNotFoundException";
|
|
322
|
+
$fault = "client";
|
|
300
323
|
/**
|
|
301
324
|
* @internal
|
|
302
325
|
*/
|
|
@@ -306,13 +329,9 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Ground
|
|
|
306
329
|
$fault: "client",
|
|
307
330
|
...opts
|
|
308
331
|
});
|
|
309
|
-
this.name = "ResourceNotFoundException";
|
|
310
|
-
this.$fault = "client";
|
|
311
332
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
312
333
|
}
|
|
313
334
|
};
|
|
314
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
315
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
316
335
|
var AgentStatus = {
|
|
317
336
|
ACTIVE: "ACTIVE",
|
|
318
337
|
FAILED: "FAILED",
|
|
@@ -392,7 +411,17 @@ var ConfigTypeData;
|
|
|
392
411
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
393
412
|
}, "visit");
|
|
394
413
|
})(ConfigTypeData || (ConfigTypeData = {}));
|
|
395
|
-
var
|
|
414
|
+
var ResourceLimitExceededException = class _ResourceLimitExceededException extends GroundStationServiceException {
|
|
415
|
+
static {
|
|
416
|
+
__name(this, "ResourceLimitExceededException");
|
|
417
|
+
}
|
|
418
|
+
name = "ResourceLimitExceededException";
|
|
419
|
+
$fault = "client";
|
|
420
|
+
/**
|
|
421
|
+
* <p/>
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
parameterName;
|
|
396
425
|
/**
|
|
397
426
|
* @internal
|
|
398
427
|
*/
|
|
@@ -402,14 +431,10 @@ var _ResourceLimitExceededException = class _ResourceLimitExceededException exte
|
|
|
402
431
|
$fault: "client",
|
|
403
432
|
...opts
|
|
404
433
|
});
|
|
405
|
-
this.name = "ResourceLimitExceededException";
|
|
406
|
-
this.$fault = "client";
|
|
407
434
|
Object.setPrototypeOf(this, _ResourceLimitExceededException.prototype);
|
|
408
435
|
this.parameterName = opts.parameterName;
|
|
409
436
|
}
|
|
410
437
|
};
|
|
411
|
-
__name(_ResourceLimitExceededException, "ResourceLimitExceededException");
|
|
412
|
-
var ResourceLimitExceededException = _ResourceLimitExceededException;
|
|
413
438
|
var EndpointStatus = {
|
|
414
439
|
created: "created",
|
|
415
440
|
creating: "creating",
|
|
@@ -1847,463 +1872,496 @@ var _sI = "satelliteId";
|
|
|
1847
1872
|
var _tK = "tagKeys";
|
|
1848
1873
|
|
|
1849
1874
|
// src/commands/CancelContactCommand.ts
|
|
1850
|
-
var
|
|
1875
|
+
var CancelContactCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1851
1876
|
return [
|
|
1852
1877
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1853
1878
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1854
1879
|
];
|
|
1855
1880
|
}).s("GroundStation", "CancelContact", {}).n("GroundStationClient", "CancelContactCommand").f(void 0, void 0).ser(se_CancelContactCommand).de(de_CancelContactCommand).build() {
|
|
1881
|
+
static {
|
|
1882
|
+
__name(this, "CancelContactCommand");
|
|
1883
|
+
}
|
|
1856
1884
|
};
|
|
1857
|
-
__name(_CancelContactCommand, "CancelContactCommand");
|
|
1858
|
-
var CancelContactCommand = _CancelContactCommand;
|
|
1859
1885
|
|
|
1860
1886
|
// src/commands/CreateConfigCommand.ts
|
|
1861
1887
|
|
|
1862
1888
|
|
|
1863
1889
|
|
|
1864
|
-
var
|
|
1890
|
+
var CreateConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1865
1891
|
return [
|
|
1866
1892
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1867
1893
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1868
1894
|
];
|
|
1869
1895
|
}).s("GroundStation", "CreateConfig", {}).n("GroundStationClient", "CreateConfigCommand").f(void 0, void 0).ser(se_CreateConfigCommand).de(de_CreateConfigCommand).build() {
|
|
1896
|
+
static {
|
|
1897
|
+
__name(this, "CreateConfigCommand");
|
|
1898
|
+
}
|
|
1870
1899
|
};
|
|
1871
|
-
__name(_CreateConfigCommand, "CreateConfigCommand");
|
|
1872
|
-
var CreateConfigCommand = _CreateConfigCommand;
|
|
1873
1900
|
|
|
1874
1901
|
// src/commands/CreateDataflowEndpointGroupCommand.ts
|
|
1875
1902
|
|
|
1876
1903
|
|
|
1877
1904
|
|
|
1878
|
-
var
|
|
1905
|
+
var CreateDataflowEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1879
1906
|
return [
|
|
1880
1907
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1881
1908
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1882
1909
|
];
|
|
1883
1910
|
}).s("GroundStation", "CreateDataflowEndpointGroup", {}).n("GroundStationClient", "CreateDataflowEndpointGroupCommand").f(void 0, void 0).ser(se_CreateDataflowEndpointGroupCommand).de(de_CreateDataflowEndpointGroupCommand).build() {
|
|
1911
|
+
static {
|
|
1912
|
+
__name(this, "CreateDataflowEndpointGroupCommand");
|
|
1913
|
+
}
|
|
1884
1914
|
};
|
|
1885
|
-
__name(_CreateDataflowEndpointGroupCommand, "CreateDataflowEndpointGroupCommand");
|
|
1886
|
-
var CreateDataflowEndpointGroupCommand = _CreateDataflowEndpointGroupCommand;
|
|
1887
1915
|
|
|
1888
1916
|
// src/commands/CreateEphemerisCommand.ts
|
|
1889
1917
|
|
|
1890
1918
|
|
|
1891
1919
|
|
|
1892
|
-
var
|
|
1920
|
+
var CreateEphemerisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1893
1921
|
return [
|
|
1894
1922
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1895
1923
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1896
1924
|
];
|
|
1897
1925
|
}).s("GroundStation", "CreateEphemeris", {}).n("GroundStationClient", "CreateEphemerisCommand").f(void 0, void 0).ser(se_CreateEphemerisCommand).de(de_CreateEphemerisCommand).build() {
|
|
1926
|
+
static {
|
|
1927
|
+
__name(this, "CreateEphemerisCommand");
|
|
1928
|
+
}
|
|
1898
1929
|
};
|
|
1899
|
-
__name(_CreateEphemerisCommand, "CreateEphemerisCommand");
|
|
1900
|
-
var CreateEphemerisCommand = _CreateEphemerisCommand;
|
|
1901
1930
|
|
|
1902
1931
|
// src/commands/CreateMissionProfileCommand.ts
|
|
1903
1932
|
|
|
1904
1933
|
|
|
1905
1934
|
|
|
1906
|
-
var
|
|
1935
|
+
var CreateMissionProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1907
1936
|
return [
|
|
1908
1937
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1909
1938
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1910
1939
|
];
|
|
1911
1940
|
}).s("GroundStation", "CreateMissionProfile", {}).n("GroundStationClient", "CreateMissionProfileCommand").f(void 0, void 0).ser(se_CreateMissionProfileCommand).de(de_CreateMissionProfileCommand).build() {
|
|
1941
|
+
static {
|
|
1942
|
+
__name(this, "CreateMissionProfileCommand");
|
|
1943
|
+
}
|
|
1912
1944
|
};
|
|
1913
|
-
__name(_CreateMissionProfileCommand, "CreateMissionProfileCommand");
|
|
1914
|
-
var CreateMissionProfileCommand = _CreateMissionProfileCommand;
|
|
1915
1945
|
|
|
1916
1946
|
// src/commands/DeleteConfigCommand.ts
|
|
1917
1947
|
|
|
1918
1948
|
|
|
1919
1949
|
|
|
1920
|
-
var
|
|
1950
|
+
var DeleteConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1921
1951
|
return [
|
|
1922
1952
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1923
1953
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1924
1954
|
];
|
|
1925
1955
|
}).s("GroundStation", "DeleteConfig", {}).n("GroundStationClient", "DeleteConfigCommand").f(void 0, void 0).ser(se_DeleteConfigCommand).de(de_DeleteConfigCommand).build() {
|
|
1956
|
+
static {
|
|
1957
|
+
__name(this, "DeleteConfigCommand");
|
|
1958
|
+
}
|
|
1926
1959
|
};
|
|
1927
|
-
__name(_DeleteConfigCommand, "DeleteConfigCommand");
|
|
1928
|
-
var DeleteConfigCommand = _DeleteConfigCommand;
|
|
1929
1960
|
|
|
1930
1961
|
// src/commands/DeleteDataflowEndpointGroupCommand.ts
|
|
1931
1962
|
|
|
1932
1963
|
|
|
1933
1964
|
|
|
1934
|
-
var
|
|
1965
|
+
var DeleteDataflowEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1935
1966
|
return [
|
|
1936
1967
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1937
1968
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1938
1969
|
];
|
|
1939
1970
|
}).s("GroundStation", "DeleteDataflowEndpointGroup", {}).n("GroundStationClient", "DeleteDataflowEndpointGroupCommand").f(void 0, void 0).ser(se_DeleteDataflowEndpointGroupCommand).de(de_DeleteDataflowEndpointGroupCommand).build() {
|
|
1971
|
+
static {
|
|
1972
|
+
__name(this, "DeleteDataflowEndpointGroupCommand");
|
|
1973
|
+
}
|
|
1940
1974
|
};
|
|
1941
|
-
__name(_DeleteDataflowEndpointGroupCommand, "DeleteDataflowEndpointGroupCommand");
|
|
1942
|
-
var DeleteDataflowEndpointGroupCommand = _DeleteDataflowEndpointGroupCommand;
|
|
1943
1975
|
|
|
1944
1976
|
// src/commands/DeleteEphemerisCommand.ts
|
|
1945
1977
|
|
|
1946
1978
|
|
|
1947
1979
|
|
|
1948
|
-
var
|
|
1980
|
+
var DeleteEphemerisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1949
1981
|
return [
|
|
1950
1982
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1951
1983
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1952
1984
|
];
|
|
1953
1985
|
}).s("GroundStation", "DeleteEphemeris", {}).n("GroundStationClient", "DeleteEphemerisCommand").f(void 0, void 0).ser(se_DeleteEphemerisCommand).de(de_DeleteEphemerisCommand).build() {
|
|
1986
|
+
static {
|
|
1987
|
+
__name(this, "DeleteEphemerisCommand");
|
|
1988
|
+
}
|
|
1954
1989
|
};
|
|
1955
|
-
__name(_DeleteEphemerisCommand, "DeleteEphemerisCommand");
|
|
1956
|
-
var DeleteEphemerisCommand = _DeleteEphemerisCommand;
|
|
1957
1990
|
|
|
1958
1991
|
// src/commands/DeleteMissionProfileCommand.ts
|
|
1959
1992
|
|
|
1960
1993
|
|
|
1961
1994
|
|
|
1962
|
-
var
|
|
1995
|
+
var DeleteMissionProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1963
1996
|
return [
|
|
1964
1997
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1965
1998
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1966
1999
|
];
|
|
1967
2000
|
}).s("GroundStation", "DeleteMissionProfile", {}).n("GroundStationClient", "DeleteMissionProfileCommand").f(void 0, void 0).ser(se_DeleteMissionProfileCommand).de(de_DeleteMissionProfileCommand).build() {
|
|
2001
|
+
static {
|
|
2002
|
+
__name(this, "DeleteMissionProfileCommand");
|
|
2003
|
+
}
|
|
1968
2004
|
};
|
|
1969
|
-
__name(_DeleteMissionProfileCommand, "DeleteMissionProfileCommand");
|
|
1970
|
-
var DeleteMissionProfileCommand = _DeleteMissionProfileCommand;
|
|
1971
2005
|
|
|
1972
2006
|
// src/commands/DescribeContactCommand.ts
|
|
1973
2007
|
|
|
1974
2008
|
|
|
1975
2009
|
|
|
1976
|
-
var
|
|
2010
|
+
var DescribeContactCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1977
2011
|
return [
|
|
1978
2012
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1979
2013
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1980
2014
|
];
|
|
1981
2015
|
}).s("GroundStation", "DescribeContact", {}).n("GroundStationClient", "DescribeContactCommand").f(void 0, void 0).ser(se_DescribeContactCommand).de(de_DescribeContactCommand).build() {
|
|
2016
|
+
static {
|
|
2017
|
+
__name(this, "DescribeContactCommand");
|
|
2018
|
+
}
|
|
1982
2019
|
};
|
|
1983
|
-
__name(_DescribeContactCommand, "DescribeContactCommand");
|
|
1984
|
-
var DescribeContactCommand = _DescribeContactCommand;
|
|
1985
2020
|
|
|
1986
2021
|
// src/commands/DescribeEphemerisCommand.ts
|
|
1987
2022
|
|
|
1988
2023
|
|
|
1989
2024
|
|
|
1990
|
-
var
|
|
2025
|
+
var DescribeEphemerisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1991
2026
|
return [
|
|
1992
2027
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1993
2028
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1994
2029
|
];
|
|
1995
2030
|
}).s("GroundStation", "DescribeEphemeris", {}).n("GroundStationClient", "DescribeEphemerisCommand").f(void 0, void 0).ser(se_DescribeEphemerisCommand).de(de_DescribeEphemerisCommand).build() {
|
|
2031
|
+
static {
|
|
2032
|
+
__name(this, "DescribeEphemerisCommand");
|
|
2033
|
+
}
|
|
1996
2034
|
};
|
|
1997
|
-
__name(_DescribeEphemerisCommand, "DescribeEphemerisCommand");
|
|
1998
|
-
var DescribeEphemerisCommand = _DescribeEphemerisCommand;
|
|
1999
2035
|
|
|
2000
2036
|
// src/commands/GetAgentConfigurationCommand.ts
|
|
2001
2037
|
|
|
2002
2038
|
|
|
2003
2039
|
|
|
2004
|
-
var
|
|
2040
|
+
var GetAgentConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2005
2041
|
return [
|
|
2006
2042
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2007
2043
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2008
2044
|
];
|
|
2009
2045
|
}).s("GroundStation", "GetAgentConfiguration", {}).n("GroundStationClient", "GetAgentConfigurationCommand").f(void 0, void 0).ser(se_GetAgentConfigurationCommand).de(de_GetAgentConfigurationCommand).build() {
|
|
2046
|
+
static {
|
|
2047
|
+
__name(this, "GetAgentConfigurationCommand");
|
|
2048
|
+
}
|
|
2010
2049
|
};
|
|
2011
|
-
__name(_GetAgentConfigurationCommand, "GetAgentConfigurationCommand");
|
|
2012
|
-
var GetAgentConfigurationCommand = _GetAgentConfigurationCommand;
|
|
2013
2050
|
|
|
2014
2051
|
// src/commands/GetConfigCommand.ts
|
|
2015
2052
|
|
|
2016
2053
|
|
|
2017
2054
|
|
|
2018
|
-
var
|
|
2055
|
+
var GetConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2019
2056
|
return [
|
|
2020
2057
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2021
2058
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2022
2059
|
];
|
|
2023
2060
|
}).s("GroundStation", "GetConfig", {}).n("GroundStationClient", "GetConfigCommand").f(void 0, void 0).ser(se_GetConfigCommand).de(de_GetConfigCommand).build() {
|
|
2061
|
+
static {
|
|
2062
|
+
__name(this, "GetConfigCommand");
|
|
2063
|
+
}
|
|
2024
2064
|
};
|
|
2025
|
-
__name(_GetConfigCommand, "GetConfigCommand");
|
|
2026
|
-
var GetConfigCommand = _GetConfigCommand;
|
|
2027
2065
|
|
|
2028
2066
|
// src/commands/GetDataflowEndpointGroupCommand.ts
|
|
2029
2067
|
|
|
2030
2068
|
|
|
2031
2069
|
|
|
2032
|
-
var
|
|
2070
|
+
var GetDataflowEndpointGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2033
2071
|
return [
|
|
2034
2072
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2035
2073
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2036
2074
|
];
|
|
2037
2075
|
}).s("GroundStation", "GetDataflowEndpointGroup", {}).n("GroundStationClient", "GetDataflowEndpointGroupCommand").f(void 0, void 0).ser(se_GetDataflowEndpointGroupCommand).de(de_GetDataflowEndpointGroupCommand).build() {
|
|
2076
|
+
static {
|
|
2077
|
+
__name(this, "GetDataflowEndpointGroupCommand");
|
|
2078
|
+
}
|
|
2038
2079
|
};
|
|
2039
|
-
__name(_GetDataflowEndpointGroupCommand, "GetDataflowEndpointGroupCommand");
|
|
2040
|
-
var GetDataflowEndpointGroupCommand = _GetDataflowEndpointGroupCommand;
|
|
2041
2080
|
|
|
2042
2081
|
// src/commands/GetMinuteUsageCommand.ts
|
|
2043
2082
|
|
|
2044
2083
|
|
|
2045
2084
|
|
|
2046
|
-
var
|
|
2085
|
+
var GetMinuteUsageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2047
2086
|
return [
|
|
2048
2087
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2049
2088
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2050
2089
|
];
|
|
2051
2090
|
}).s("GroundStation", "GetMinuteUsage", {}).n("GroundStationClient", "GetMinuteUsageCommand").f(void 0, void 0).ser(se_GetMinuteUsageCommand).de(de_GetMinuteUsageCommand).build() {
|
|
2091
|
+
static {
|
|
2092
|
+
__name(this, "GetMinuteUsageCommand");
|
|
2093
|
+
}
|
|
2052
2094
|
};
|
|
2053
|
-
__name(_GetMinuteUsageCommand, "GetMinuteUsageCommand");
|
|
2054
|
-
var GetMinuteUsageCommand = _GetMinuteUsageCommand;
|
|
2055
2095
|
|
|
2056
2096
|
// src/commands/GetMissionProfileCommand.ts
|
|
2057
2097
|
|
|
2058
2098
|
|
|
2059
2099
|
|
|
2060
|
-
var
|
|
2100
|
+
var GetMissionProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2061
2101
|
return [
|
|
2062
2102
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2063
2103
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2064
2104
|
];
|
|
2065
2105
|
}).s("GroundStation", "GetMissionProfile", {}).n("GroundStationClient", "GetMissionProfileCommand").f(void 0, void 0).ser(se_GetMissionProfileCommand).de(de_GetMissionProfileCommand).build() {
|
|
2106
|
+
static {
|
|
2107
|
+
__name(this, "GetMissionProfileCommand");
|
|
2108
|
+
}
|
|
2066
2109
|
};
|
|
2067
|
-
__name(_GetMissionProfileCommand, "GetMissionProfileCommand");
|
|
2068
|
-
var GetMissionProfileCommand = _GetMissionProfileCommand;
|
|
2069
2110
|
|
|
2070
2111
|
// src/commands/GetSatelliteCommand.ts
|
|
2071
2112
|
|
|
2072
2113
|
|
|
2073
2114
|
|
|
2074
|
-
var
|
|
2115
|
+
var GetSatelliteCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2075
2116
|
return [
|
|
2076
2117
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2077
2118
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2078
2119
|
];
|
|
2079
2120
|
}).s("GroundStation", "GetSatellite", {}).n("GroundStationClient", "GetSatelliteCommand").f(void 0, void 0).ser(se_GetSatelliteCommand).de(de_GetSatelliteCommand).build() {
|
|
2121
|
+
static {
|
|
2122
|
+
__name(this, "GetSatelliteCommand");
|
|
2123
|
+
}
|
|
2080
2124
|
};
|
|
2081
|
-
__name(_GetSatelliteCommand, "GetSatelliteCommand");
|
|
2082
|
-
var GetSatelliteCommand = _GetSatelliteCommand;
|
|
2083
2125
|
|
|
2084
2126
|
// src/commands/ListConfigsCommand.ts
|
|
2085
2127
|
|
|
2086
2128
|
|
|
2087
2129
|
|
|
2088
|
-
var
|
|
2130
|
+
var ListConfigsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2089
2131
|
return [
|
|
2090
2132
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2091
2133
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2092
2134
|
];
|
|
2093
2135
|
}).s("GroundStation", "ListConfigs", {}).n("GroundStationClient", "ListConfigsCommand").f(void 0, void 0).ser(se_ListConfigsCommand).de(de_ListConfigsCommand).build() {
|
|
2136
|
+
static {
|
|
2137
|
+
__name(this, "ListConfigsCommand");
|
|
2138
|
+
}
|
|
2094
2139
|
};
|
|
2095
|
-
__name(_ListConfigsCommand, "ListConfigsCommand");
|
|
2096
|
-
var ListConfigsCommand = _ListConfigsCommand;
|
|
2097
2140
|
|
|
2098
2141
|
// src/commands/ListContactsCommand.ts
|
|
2099
2142
|
|
|
2100
2143
|
|
|
2101
2144
|
|
|
2102
|
-
var
|
|
2145
|
+
var ListContactsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2103
2146
|
return [
|
|
2104
2147
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2105
2148
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2106
2149
|
];
|
|
2107
2150
|
}).s("GroundStation", "ListContacts", {}).n("GroundStationClient", "ListContactsCommand").f(void 0, void 0).ser(se_ListContactsCommand).de(de_ListContactsCommand).build() {
|
|
2151
|
+
static {
|
|
2152
|
+
__name(this, "ListContactsCommand");
|
|
2153
|
+
}
|
|
2108
2154
|
};
|
|
2109
|
-
__name(_ListContactsCommand, "ListContactsCommand");
|
|
2110
|
-
var ListContactsCommand = _ListContactsCommand;
|
|
2111
2155
|
|
|
2112
2156
|
// src/commands/ListDataflowEndpointGroupsCommand.ts
|
|
2113
2157
|
|
|
2114
2158
|
|
|
2115
2159
|
|
|
2116
|
-
var
|
|
2160
|
+
var ListDataflowEndpointGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2117
2161
|
return [
|
|
2118
2162
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2119
2163
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2120
2164
|
];
|
|
2121
2165
|
}).s("GroundStation", "ListDataflowEndpointGroups", {}).n("GroundStationClient", "ListDataflowEndpointGroupsCommand").f(void 0, void 0).ser(se_ListDataflowEndpointGroupsCommand).de(de_ListDataflowEndpointGroupsCommand).build() {
|
|
2166
|
+
static {
|
|
2167
|
+
__name(this, "ListDataflowEndpointGroupsCommand");
|
|
2168
|
+
}
|
|
2122
2169
|
};
|
|
2123
|
-
__name(_ListDataflowEndpointGroupsCommand, "ListDataflowEndpointGroupsCommand");
|
|
2124
|
-
var ListDataflowEndpointGroupsCommand = _ListDataflowEndpointGroupsCommand;
|
|
2125
2170
|
|
|
2126
2171
|
// src/commands/ListEphemeridesCommand.ts
|
|
2127
2172
|
|
|
2128
2173
|
|
|
2129
2174
|
|
|
2130
|
-
var
|
|
2175
|
+
var ListEphemeridesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2131
2176
|
return [
|
|
2132
2177
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2133
2178
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2134
2179
|
];
|
|
2135
2180
|
}).s("GroundStation", "ListEphemerides", {}).n("GroundStationClient", "ListEphemeridesCommand").f(void 0, void 0).ser(se_ListEphemeridesCommand).de(de_ListEphemeridesCommand).build() {
|
|
2181
|
+
static {
|
|
2182
|
+
__name(this, "ListEphemeridesCommand");
|
|
2183
|
+
}
|
|
2136
2184
|
};
|
|
2137
|
-
__name(_ListEphemeridesCommand, "ListEphemeridesCommand");
|
|
2138
|
-
var ListEphemeridesCommand = _ListEphemeridesCommand;
|
|
2139
2185
|
|
|
2140
2186
|
// src/commands/ListGroundStationsCommand.ts
|
|
2141
2187
|
|
|
2142
2188
|
|
|
2143
2189
|
|
|
2144
|
-
var
|
|
2190
|
+
var ListGroundStationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2145
2191
|
return [
|
|
2146
2192
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2147
2193
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2148
2194
|
];
|
|
2149
2195
|
}).s("GroundStation", "ListGroundStations", {}).n("GroundStationClient", "ListGroundStationsCommand").f(void 0, void 0).ser(se_ListGroundStationsCommand).de(de_ListGroundStationsCommand).build() {
|
|
2196
|
+
static {
|
|
2197
|
+
__name(this, "ListGroundStationsCommand");
|
|
2198
|
+
}
|
|
2150
2199
|
};
|
|
2151
|
-
__name(_ListGroundStationsCommand, "ListGroundStationsCommand");
|
|
2152
|
-
var ListGroundStationsCommand = _ListGroundStationsCommand;
|
|
2153
2200
|
|
|
2154
2201
|
// src/commands/ListMissionProfilesCommand.ts
|
|
2155
2202
|
|
|
2156
2203
|
|
|
2157
2204
|
|
|
2158
|
-
var
|
|
2205
|
+
var ListMissionProfilesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2159
2206
|
return [
|
|
2160
2207
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2161
2208
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2162
2209
|
];
|
|
2163
2210
|
}).s("GroundStation", "ListMissionProfiles", {}).n("GroundStationClient", "ListMissionProfilesCommand").f(void 0, void 0).ser(se_ListMissionProfilesCommand).de(de_ListMissionProfilesCommand).build() {
|
|
2211
|
+
static {
|
|
2212
|
+
__name(this, "ListMissionProfilesCommand");
|
|
2213
|
+
}
|
|
2164
2214
|
};
|
|
2165
|
-
__name(_ListMissionProfilesCommand, "ListMissionProfilesCommand");
|
|
2166
|
-
var ListMissionProfilesCommand = _ListMissionProfilesCommand;
|
|
2167
2215
|
|
|
2168
2216
|
// src/commands/ListSatellitesCommand.ts
|
|
2169
2217
|
|
|
2170
2218
|
|
|
2171
2219
|
|
|
2172
|
-
var
|
|
2220
|
+
var ListSatellitesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2173
2221
|
return [
|
|
2174
2222
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2175
2223
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2176
2224
|
];
|
|
2177
2225
|
}).s("GroundStation", "ListSatellites", {}).n("GroundStationClient", "ListSatellitesCommand").f(void 0, void 0).ser(se_ListSatellitesCommand).de(de_ListSatellitesCommand).build() {
|
|
2226
|
+
static {
|
|
2227
|
+
__name(this, "ListSatellitesCommand");
|
|
2228
|
+
}
|
|
2178
2229
|
};
|
|
2179
|
-
__name(_ListSatellitesCommand, "ListSatellitesCommand");
|
|
2180
|
-
var ListSatellitesCommand = _ListSatellitesCommand;
|
|
2181
2230
|
|
|
2182
2231
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2183
2232
|
|
|
2184
2233
|
|
|
2185
2234
|
|
|
2186
|
-
var
|
|
2235
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2187
2236
|
return [
|
|
2188
2237
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2189
2238
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2190
2239
|
];
|
|
2191
2240
|
}).s("GroundStation", "ListTagsForResource", {}).n("GroundStationClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2241
|
+
static {
|
|
2242
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2243
|
+
}
|
|
2192
2244
|
};
|
|
2193
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2194
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2195
2245
|
|
|
2196
2246
|
// src/commands/RegisterAgentCommand.ts
|
|
2197
2247
|
|
|
2198
2248
|
|
|
2199
2249
|
|
|
2200
|
-
var
|
|
2250
|
+
var RegisterAgentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2201
2251
|
return [
|
|
2202
2252
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2203
2253
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2204
2254
|
];
|
|
2205
2255
|
}).s("GroundStation", "RegisterAgent", {}).n("GroundStationClient", "RegisterAgentCommand").f(void 0, void 0).ser(se_RegisterAgentCommand).de(de_RegisterAgentCommand).build() {
|
|
2256
|
+
static {
|
|
2257
|
+
__name(this, "RegisterAgentCommand");
|
|
2258
|
+
}
|
|
2206
2259
|
};
|
|
2207
|
-
__name(_RegisterAgentCommand, "RegisterAgentCommand");
|
|
2208
|
-
var RegisterAgentCommand = _RegisterAgentCommand;
|
|
2209
2260
|
|
|
2210
2261
|
// src/commands/ReserveContactCommand.ts
|
|
2211
2262
|
|
|
2212
2263
|
|
|
2213
2264
|
|
|
2214
|
-
var
|
|
2265
|
+
var ReserveContactCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2215
2266
|
return [
|
|
2216
2267
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2217
2268
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2218
2269
|
];
|
|
2219
2270
|
}).s("GroundStation", "ReserveContact", {}).n("GroundStationClient", "ReserveContactCommand").f(void 0, void 0).ser(se_ReserveContactCommand).de(de_ReserveContactCommand).build() {
|
|
2271
|
+
static {
|
|
2272
|
+
__name(this, "ReserveContactCommand");
|
|
2273
|
+
}
|
|
2220
2274
|
};
|
|
2221
|
-
__name(_ReserveContactCommand, "ReserveContactCommand");
|
|
2222
|
-
var ReserveContactCommand = _ReserveContactCommand;
|
|
2223
2275
|
|
|
2224
2276
|
// src/commands/TagResourceCommand.ts
|
|
2225
2277
|
|
|
2226
2278
|
|
|
2227
2279
|
|
|
2228
|
-
var
|
|
2280
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2229
2281
|
return [
|
|
2230
2282
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2231
2283
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2232
2284
|
];
|
|
2233
2285
|
}).s("GroundStation", "TagResource", {}).n("GroundStationClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2286
|
+
static {
|
|
2287
|
+
__name(this, "TagResourceCommand");
|
|
2288
|
+
}
|
|
2234
2289
|
};
|
|
2235
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2236
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2237
2290
|
|
|
2238
2291
|
// src/commands/UntagResourceCommand.ts
|
|
2239
2292
|
|
|
2240
2293
|
|
|
2241
2294
|
|
|
2242
|
-
var
|
|
2295
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2243
2296
|
return [
|
|
2244
2297
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2245
2298
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2246
2299
|
];
|
|
2247
2300
|
}).s("GroundStation", "UntagResource", {}).n("GroundStationClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2301
|
+
static {
|
|
2302
|
+
__name(this, "UntagResourceCommand");
|
|
2303
|
+
}
|
|
2248
2304
|
};
|
|
2249
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2250
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2251
2305
|
|
|
2252
2306
|
// src/commands/UpdateAgentStatusCommand.ts
|
|
2253
2307
|
|
|
2254
2308
|
|
|
2255
2309
|
|
|
2256
|
-
var
|
|
2310
|
+
var UpdateAgentStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2257
2311
|
return [
|
|
2258
2312
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2259
2313
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2260
2314
|
];
|
|
2261
2315
|
}).s("GroundStation", "UpdateAgentStatus", {}).n("GroundStationClient", "UpdateAgentStatusCommand").f(void 0, void 0).ser(se_UpdateAgentStatusCommand).de(de_UpdateAgentStatusCommand).build() {
|
|
2316
|
+
static {
|
|
2317
|
+
__name(this, "UpdateAgentStatusCommand");
|
|
2318
|
+
}
|
|
2262
2319
|
};
|
|
2263
|
-
__name(_UpdateAgentStatusCommand, "UpdateAgentStatusCommand");
|
|
2264
|
-
var UpdateAgentStatusCommand = _UpdateAgentStatusCommand;
|
|
2265
2320
|
|
|
2266
2321
|
// src/commands/UpdateConfigCommand.ts
|
|
2267
2322
|
|
|
2268
2323
|
|
|
2269
2324
|
|
|
2270
|
-
var
|
|
2325
|
+
var UpdateConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2271
2326
|
return [
|
|
2272
2327
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2273
2328
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2274
2329
|
];
|
|
2275
2330
|
}).s("GroundStation", "UpdateConfig", {}).n("GroundStationClient", "UpdateConfigCommand").f(void 0, void 0).ser(se_UpdateConfigCommand).de(de_UpdateConfigCommand).build() {
|
|
2331
|
+
static {
|
|
2332
|
+
__name(this, "UpdateConfigCommand");
|
|
2333
|
+
}
|
|
2276
2334
|
};
|
|
2277
|
-
__name(_UpdateConfigCommand, "UpdateConfigCommand");
|
|
2278
|
-
var UpdateConfigCommand = _UpdateConfigCommand;
|
|
2279
2335
|
|
|
2280
2336
|
// src/commands/UpdateEphemerisCommand.ts
|
|
2281
2337
|
|
|
2282
2338
|
|
|
2283
2339
|
|
|
2284
|
-
var
|
|
2340
|
+
var UpdateEphemerisCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2285
2341
|
return [
|
|
2286
2342
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2287
2343
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2288
2344
|
];
|
|
2289
2345
|
}).s("GroundStation", "UpdateEphemeris", {}).n("GroundStationClient", "UpdateEphemerisCommand").f(void 0, void 0).ser(se_UpdateEphemerisCommand).de(de_UpdateEphemerisCommand).build() {
|
|
2346
|
+
static {
|
|
2347
|
+
__name(this, "UpdateEphemerisCommand");
|
|
2348
|
+
}
|
|
2290
2349
|
};
|
|
2291
|
-
__name(_UpdateEphemerisCommand, "UpdateEphemerisCommand");
|
|
2292
|
-
var UpdateEphemerisCommand = _UpdateEphemerisCommand;
|
|
2293
2350
|
|
|
2294
2351
|
// src/commands/UpdateMissionProfileCommand.ts
|
|
2295
2352
|
|
|
2296
2353
|
|
|
2297
2354
|
|
|
2298
|
-
var
|
|
2355
|
+
var UpdateMissionProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2299
2356
|
return [
|
|
2300
2357
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2301
2358
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2302
2359
|
];
|
|
2303
2360
|
}).s("GroundStation", "UpdateMissionProfile", {}).n("GroundStationClient", "UpdateMissionProfileCommand").f(void 0, void 0).ser(se_UpdateMissionProfileCommand).de(de_UpdateMissionProfileCommand).build() {
|
|
2361
|
+
static {
|
|
2362
|
+
__name(this, "UpdateMissionProfileCommand");
|
|
2363
|
+
}
|
|
2304
2364
|
};
|
|
2305
|
-
__name(_UpdateMissionProfileCommand, "UpdateMissionProfileCommand");
|
|
2306
|
-
var UpdateMissionProfileCommand = _UpdateMissionProfileCommand;
|
|
2307
2365
|
|
|
2308
2366
|
// src/GroundStation.ts
|
|
2309
2367
|
var commands = {
|
|
@@ -2341,10 +2399,11 @@ var commands = {
|
|
|
2341
2399
|
UpdateEphemerisCommand,
|
|
2342
2400
|
UpdateMissionProfileCommand
|
|
2343
2401
|
};
|
|
2344
|
-
var
|
|
2402
|
+
var GroundStation = class extends GroundStationClient {
|
|
2403
|
+
static {
|
|
2404
|
+
__name(this, "GroundStation");
|
|
2405
|
+
}
|
|
2345
2406
|
};
|
|
2346
|
-
__name(_GroundStation, "GroundStation");
|
|
2347
|
-
var GroundStation = _GroundStation;
|
|
2348
2407
|
(0, import_smithy_client.createAggregatedClient)(commands, GroundStation);
|
|
2349
2408
|
|
|
2350
2409
|
// src/pagination/ListConfigsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class GroundStationClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,39 +1,41 @@
|
|
|
1
1
|
import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
|
|
2
2
|
export class DependencyException extends __BaseException {
|
|
3
|
+
name = "DependencyException";
|
|
4
|
+
$fault = "server";
|
|
5
|
+
parameterName;
|
|
3
6
|
constructor(opts) {
|
|
4
7
|
super({
|
|
5
8
|
name: "DependencyException",
|
|
6
9
|
$fault: "server",
|
|
7
10
|
...opts,
|
|
8
11
|
});
|
|
9
|
-
this.name = "DependencyException";
|
|
10
|
-
this.$fault = "server";
|
|
11
12
|
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
12
13
|
this.parameterName = opts.parameterName;
|
|
13
14
|
}
|
|
14
15
|
}
|
|
15
16
|
export class InvalidParameterException extends __BaseException {
|
|
17
|
+
name = "InvalidParameterException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
parameterName;
|
|
16
20
|
constructor(opts) {
|
|
17
21
|
super({
|
|
18
22
|
name: "InvalidParameterException",
|
|
19
23
|
$fault: "client",
|
|
20
24
|
...opts,
|
|
21
25
|
});
|
|
22
|
-
this.name = "InvalidParameterException";
|
|
23
|
-
this.$fault = "client";
|
|
24
26
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
25
27
|
this.parameterName = opts.parameterName;
|
|
26
28
|
}
|
|
27
29
|
}
|
|
28
30
|
export class ResourceNotFoundException extends __BaseException {
|
|
31
|
+
name = "ResourceNotFoundException";
|
|
32
|
+
$fault = "client";
|
|
29
33
|
constructor(opts) {
|
|
30
34
|
super({
|
|
31
35
|
name: "ResourceNotFoundException",
|
|
32
36
|
$fault: "client",
|
|
33
37
|
...opts,
|
|
34
38
|
});
|
|
35
|
-
this.name = "ResourceNotFoundException";
|
|
36
|
-
this.$fault = "client";
|
|
37
39
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
38
40
|
}
|
|
39
41
|
}
|
|
@@ -117,14 +119,15 @@ export var ConfigTypeData;
|
|
|
117
119
|
};
|
|
118
120
|
})(ConfigTypeData || (ConfigTypeData = {}));
|
|
119
121
|
export class ResourceLimitExceededException extends __BaseException {
|
|
122
|
+
name = "ResourceLimitExceededException";
|
|
123
|
+
$fault = "client";
|
|
124
|
+
parameterName;
|
|
120
125
|
constructor(opts) {
|
|
121
126
|
super({
|
|
122
127
|
name: "ResourceLimitExceededException",
|
|
123
128
|
$fault: "client",
|
|
124
129
|
...opts,
|
|
125
130
|
});
|
|
126
|
-
this.name = "ResourceLimitExceededException";
|
|
127
|
-
this.$fault = "client";
|
|
128
131
|
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
129
132
|
this.parameterName = opts.parameterName;
|
|
130
133
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: GroundStationClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.
|
|
4
|
+
"version": "3.723.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,57 +20,57 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
61
|
-
"@smithy/util-waiter": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
|
+
"@smithy/util-waiter": "^4.0.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@tsconfig/
|
|
66
|
-
"@types/node": "^
|
|
65
|
+
"@tsconfig/node18": "18.2.4",
|
|
66
|
+
"@types/node": "^18.19.69",
|
|
67
67
|
"concurrently": "7.0.0",
|
|
68
68
|
"downlevel-dts": "0.10.1",
|
|
69
69
|
"rimraf": "3.0.2",
|
|
70
|
-
"typescript": "~
|
|
70
|
+
"typescript": "~5.2.2"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
73
|
+
"node": ">=18.0.0"
|
|
74
74
|
},
|
|
75
75
|
"typesVersions": {
|
|
76
76
|
"<4.0": {
|