@aws-sdk/client-groundstation 3.490.0 → 3.496.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 (56) hide show
  1. package/dist-cjs/GroundStation.js +1 -77
  2. package/dist-cjs/GroundStationClient.js +1 -43
  3. package/dist-cjs/commands/CancelContactCommand.js +1 -28
  4. package/dist-cjs/commands/CreateConfigCommand.js +1 -28
  5. package/dist-cjs/commands/CreateDataflowEndpointGroupCommand.js +1 -28
  6. package/dist-cjs/commands/CreateEphemerisCommand.js +1 -28
  7. package/dist-cjs/commands/CreateMissionProfileCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteConfigCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteDataflowEndpointGroupCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteEphemerisCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteMissionProfileCommand.js +1 -28
  12. package/dist-cjs/commands/DescribeContactCommand.js +1 -28
  13. package/dist-cjs/commands/DescribeEphemerisCommand.js +1 -28
  14. package/dist-cjs/commands/GetAgentConfigurationCommand.js +1 -28
  15. package/dist-cjs/commands/GetConfigCommand.js +1 -28
  16. package/dist-cjs/commands/GetDataflowEndpointGroupCommand.js +1 -28
  17. package/dist-cjs/commands/GetMinuteUsageCommand.js +1 -28
  18. package/dist-cjs/commands/GetMissionProfileCommand.js +1 -28
  19. package/dist-cjs/commands/GetSatelliteCommand.js +1 -28
  20. package/dist-cjs/commands/ListConfigsCommand.js +1 -28
  21. package/dist-cjs/commands/ListContactsCommand.js +1 -28
  22. package/dist-cjs/commands/ListDataflowEndpointGroupsCommand.js +1 -28
  23. package/dist-cjs/commands/ListEphemeridesCommand.js +1 -28
  24. package/dist-cjs/commands/ListGroundStationsCommand.js +1 -28
  25. package/dist-cjs/commands/ListMissionProfilesCommand.js +1 -28
  26. package/dist-cjs/commands/ListSatellitesCommand.js +1 -28
  27. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  28. package/dist-cjs/commands/RegisterAgentCommand.js +1 -28
  29. package/dist-cjs/commands/ReserveContactCommand.js +1 -28
  30. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  31. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  32. package/dist-cjs/commands/UpdateAgentStatusCommand.js +1 -28
  33. package/dist-cjs/commands/UpdateConfigCommand.js +1 -28
  34. package/dist-cjs/commands/UpdateEphemerisCommand.js +1 -28
  35. package/dist-cjs/commands/UpdateMissionProfileCommand.js +1 -28
  36. package/dist-cjs/commands/index.js +1 -36
  37. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  38. package/dist-cjs/extensionConfiguration.js +1 -2
  39. package/dist-cjs/index.js +3381 -12
  40. package/dist-cjs/models/GroundStationServiceException.js +1 -12
  41. package/dist-cjs/models/index.js +1 -4
  42. package/dist-cjs/models/models_0.js +1 -223
  43. package/dist-cjs/pagination/Interfaces.js +1 -2
  44. package/dist-cjs/pagination/ListConfigsPaginator.js +1 -7
  45. package/dist-cjs/pagination/ListContactsPaginator.js +1 -7
  46. package/dist-cjs/pagination/ListDataflowEndpointGroupsPaginator.js +1 -7
  47. package/dist-cjs/pagination/ListEphemeridesPaginator.js +1 -7
  48. package/dist-cjs/pagination/ListGroundStationsPaginator.js +1 -7
  49. package/dist-cjs/pagination/ListMissionProfilesPaginator.js +1 -7
  50. package/dist-cjs/pagination/ListSatellitesPaginator.js +1 -7
  51. package/dist-cjs/pagination/index.js +1 -11
  52. package/dist-cjs/protocols/Aws_restJson1.js +1 -2230
  53. package/dist-cjs/runtimeExtensions.js +1 -22
  54. package/dist-cjs/waiters/index.js +1 -4
  55. package/dist-cjs/waiters/waitForContactScheduled.js +1 -45
  56. package/package.json +41 -41
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListConfigsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListConfigsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ListConfigs", {})
22
- .n("GroundStationClient", "ListConfigsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListConfigsCommand)
25
- .de(Aws_restJson1_1.de_ListConfigsCommand)
26
- .build() {
27
- }
28
- exports.ListConfigsCommand = ListConfigsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListContactsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListContactsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ListContacts", {})
22
- .n("GroundStationClient", "ListContactsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListContactsCommand)
25
- .de(Aws_restJson1_1.de_ListContactsCommand)
26
- .build() {
27
- }
28
- exports.ListContactsCommand = ListContactsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListDataflowEndpointGroupsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListDataflowEndpointGroupsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ListDataflowEndpointGroups", {})
22
- .n("GroundStationClient", "ListDataflowEndpointGroupsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListDataflowEndpointGroupsCommand)
25
- .de(Aws_restJson1_1.de_ListDataflowEndpointGroupsCommand)
26
- .build() {
27
- }
28
- exports.ListDataflowEndpointGroupsCommand = ListDataflowEndpointGroupsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListEphemeridesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListEphemeridesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ListEphemerides", {})
22
- .n("GroundStationClient", "ListEphemeridesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListEphemeridesCommand)
25
- .de(Aws_restJson1_1.de_ListEphemeridesCommand)
26
- .build() {
27
- }
28
- exports.ListEphemeridesCommand = ListEphemeridesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListGroundStationsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListGroundStationsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ListGroundStations", {})
22
- .n("GroundStationClient", "ListGroundStationsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListGroundStationsCommand)
25
- .de(Aws_restJson1_1.de_ListGroundStationsCommand)
26
- .build() {
27
- }
28
- exports.ListGroundStationsCommand = ListGroundStationsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListMissionProfilesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListMissionProfilesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ListMissionProfiles", {})
22
- .n("GroundStationClient", "ListMissionProfilesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListMissionProfilesCommand)
25
- .de(Aws_restJson1_1.de_ListMissionProfilesCommand)
26
- .build() {
27
- }
28
- exports.ListMissionProfilesCommand = ListMissionProfilesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSatellitesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListSatellitesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ListSatellites", {})
22
- .n("GroundStationClient", "ListSatellitesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListSatellitesCommand)
25
- .de(Aws_restJson1_1.de_ListSatellitesCommand)
26
- .build() {
27
- }
28
- exports.ListSatellitesCommand = ListSatellitesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListTagsForResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ListTagsForResource", {})
22
- .n("GroundStationClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListTagsForResourceCommand)
25
- .de(Aws_restJson1_1.de_ListTagsForResourceCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RegisterAgentCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class RegisterAgentCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "RegisterAgent", {})
22
- .n("GroundStationClient", "RegisterAgentCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_RegisterAgentCommand)
25
- .de(Aws_restJson1_1.de_RegisterAgentCommand)
26
- .build() {
27
- }
28
- exports.RegisterAgentCommand = RegisterAgentCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ReserveContactCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ReserveContactCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "ReserveContact", {})
22
- .n("GroundStationClient", "ReserveContactCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ReserveContactCommand)
25
- .de(Aws_restJson1_1.de_ReserveContactCommand)
26
- .build() {
27
- }
28
- exports.ReserveContactCommand = ReserveContactCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class TagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "TagResource", {})
22
- .n("GroundStationClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_TagResourceCommand)
25
- .de(Aws_restJson1_1.de_TagResourceCommand)
26
- .build() {
27
- }
28
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UntagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "UntagResource", {})
22
- .n("GroundStationClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UntagResourceCommand)
25
- .de(Aws_restJson1_1.de_UntagResourceCommand)
26
- .build() {
27
- }
28
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAgentStatusCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateAgentStatusCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "UpdateAgentStatus", {})
22
- .n("GroundStationClient", "UpdateAgentStatusCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateAgentStatusCommand)
25
- .de(Aws_restJson1_1.de_UpdateAgentStatusCommand)
26
- .build() {
27
- }
28
- exports.UpdateAgentStatusCommand = UpdateAgentStatusCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateConfigCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateConfigCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "UpdateConfig", {})
22
- .n("GroundStationClient", "UpdateConfigCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateConfigCommand)
25
- .de(Aws_restJson1_1.de_UpdateConfigCommand)
26
- .build() {
27
- }
28
- exports.UpdateConfigCommand = UpdateConfigCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateEphemerisCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateEphemerisCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "UpdateEphemeris", {})
22
- .n("GroundStationClient", "UpdateEphemerisCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateEphemerisCommand)
25
- .de(Aws_restJson1_1.de_UpdateEphemerisCommand)
26
- .build() {
27
- }
28
- exports.UpdateEphemerisCommand = UpdateEphemerisCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateMissionProfileCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateMissionProfileCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("GroundStation", "UpdateMissionProfile", {})
22
- .n("GroundStationClient", "UpdateMissionProfileCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateMissionProfileCommand)
25
- .de(Aws_restJson1_1.de_UpdateMissionProfileCommand)
26
- .build() {
27
- }
28
- exports.UpdateMissionProfileCommand = UpdateMissionProfileCommand;
1
+ module.exports = require("../index.js");
@@ -1,36 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./CancelContactCommand"), exports);
5
- tslib_1.__exportStar(require("./CreateConfigCommand"), exports);
6
- tslib_1.__exportStar(require("./CreateDataflowEndpointGroupCommand"), exports);
7
- tslib_1.__exportStar(require("./CreateEphemerisCommand"), exports);
8
- tslib_1.__exportStar(require("./CreateMissionProfileCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteConfigCommand"), exports);
10
- tslib_1.__exportStar(require("./DeleteDataflowEndpointGroupCommand"), exports);
11
- tslib_1.__exportStar(require("./DeleteEphemerisCommand"), exports);
12
- tslib_1.__exportStar(require("./DeleteMissionProfileCommand"), exports);
13
- tslib_1.__exportStar(require("./DescribeContactCommand"), exports);
14
- tslib_1.__exportStar(require("./DescribeEphemerisCommand"), exports);
15
- tslib_1.__exportStar(require("./GetAgentConfigurationCommand"), exports);
16
- tslib_1.__exportStar(require("./GetConfigCommand"), exports);
17
- tslib_1.__exportStar(require("./GetDataflowEndpointGroupCommand"), exports);
18
- tslib_1.__exportStar(require("./GetMinuteUsageCommand"), exports);
19
- tslib_1.__exportStar(require("./GetMissionProfileCommand"), exports);
20
- tslib_1.__exportStar(require("./GetSatelliteCommand"), exports);
21
- tslib_1.__exportStar(require("./ListConfigsCommand"), exports);
22
- tslib_1.__exportStar(require("./ListContactsCommand"), exports);
23
- tslib_1.__exportStar(require("./ListDataflowEndpointGroupsCommand"), exports);
24
- tslib_1.__exportStar(require("./ListEphemeridesCommand"), exports);
25
- tslib_1.__exportStar(require("./ListGroundStationsCommand"), exports);
26
- tslib_1.__exportStar(require("./ListMissionProfilesCommand"), exports);
27
- tslib_1.__exportStar(require("./ListSatellitesCommand"), exports);
28
- tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
29
- tslib_1.__exportStar(require("./RegisterAgentCommand"), exports);
30
- tslib_1.__exportStar(require("./ReserveContactCommand"), exports);
31
- tslib_1.__exportStar(require("./TagResourceCommand"), exports);
32
- tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
33
- tslib_1.__exportStar(require("./UpdateAgentStatusCommand"), exports);
34
- tslib_1.__exportStar(require("./UpdateConfigCommand"), exports);
35
- tslib_1.__exportStar(require("./UpdateEphemerisCommand"), exports);
36
- tslib_1.__exportStar(require("./UpdateMissionProfileCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "groundstation",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");