@aws-sdk/client-groundstation 3.183.0 → 3.185.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 (44) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/GroundStation.js +109 -102
  4. package/dist-es/GroundStationClient.js +28 -22
  5. package/dist-es/commands/CancelContactCommand.js +28 -21
  6. package/dist-es/commands/CreateConfigCommand.js +28 -21
  7. package/dist-es/commands/CreateDataflowEndpointGroupCommand.js +28 -21
  8. package/dist-es/commands/CreateMissionProfileCommand.js +28 -21
  9. package/dist-es/commands/DeleteConfigCommand.js +28 -21
  10. package/dist-es/commands/DeleteDataflowEndpointGroupCommand.js +28 -21
  11. package/dist-es/commands/DeleteMissionProfileCommand.js +28 -21
  12. package/dist-es/commands/DescribeContactCommand.js +28 -21
  13. package/dist-es/commands/GetConfigCommand.js +28 -21
  14. package/dist-es/commands/GetDataflowEndpointGroupCommand.js +28 -21
  15. package/dist-es/commands/GetMinuteUsageCommand.js +28 -21
  16. package/dist-es/commands/GetMissionProfileCommand.js +28 -21
  17. package/dist-es/commands/GetSatelliteCommand.js +28 -21
  18. package/dist-es/commands/ListConfigsCommand.js +28 -21
  19. package/dist-es/commands/ListContactsCommand.js +28 -21
  20. package/dist-es/commands/ListDataflowEndpointGroupsCommand.js +28 -21
  21. package/dist-es/commands/ListGroundStationsCommand.js +28 -21
  22. package/dist-es/commands/ListMissionProfilesCommand.js +28 -21
  23. package/dist-es/commands/ListSatellitesCommand.js +28 -21
  24. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  25. package/dist-es/commands/ReserveContactCommand.js +28 -21
  26. package/dist-es/commands/TagResourceCommand.js +28 -21
  27. package/dist-es/commands/UntagResourceCommand.js +28 -21
  28. package/dist-es/commands/UpdateConfigCommand.js +28 -21
  29. package/dist-es/commands/UpdateMissionProfileCommand.js +28 -21
  30. package/dist-es/endpoints.js +8 -8
  31. package/dist-es/models/GroundStationServiceException.js +10 -5
  32. package/dist-es/models/models_0.js +130 -283
  33. package/dist-es/pagination/ListConfigsPaginator.js +68 -25
  34. package/dist-es/pagination/ListContactsPaginator.js +68 -25
  35. package/dist-es/pagination/ListDataflowEndpointGroupsPaginator.js +68 -25
  36. package/dist-es/pagination/ListGroundStationsPaginator.js +68 -25
  37. package/dist-es/pagination/ListMissionProfilesPaginator.js +68 -25
  38. package/dist-es/pagination/ListSatellitesPaginator.js +68 -25
  39. package/dist-es/protocols/Aws_restJson1.js +2619 -1933
  40. package/dist-es/runtimeConfig.browser.js +12 -26
  41. package/dist-es/runtimeConfig.js +12 -30
  42. package/dist-es/runtimeConfig.native.js +5 -8
  43. package/dist-es/runtimeConfig.shared.js +11 -8
  44. package/package.json +5 -5
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetMissionProfileRequestFilterSensitiveLog, GetMissionProfileResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetMissionProfileCommand, serializeAws_restJson1GetMissionProfileCommand, } from "../protocols/Aws_restJson1";
5
- export class GetMissionProfileCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetMissionProfileCommand = (function (_super) {
7
+ __extends(GetMissionProfileCommand, _super);
8
+ function GetMissionProfileCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetMissionProfileCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "GetMissionProfileCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "GetMissionProfileCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetMissionProfileRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetMissionProfileResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetMissionProfileCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetMissionProfileCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetMissionProfileCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetMissionProfileCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetMissionProfileCommand;
38
+ }($Command));
39
+ export { GetMissionProfileCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetSatelliteRequestFilterSensitiveLog, GetSatelliteResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetSatelliteCommand, serializeAws_restJson1GetSatelliteCommand, } from "../protocols/Aws_restJson1";
5
- export class GetSatelliteCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetSatelliteCommand = (function (_super) {
7
+ __extends(GetSatelliteCommand, _super);
8
+ function GetSatelliteCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetSatelliteCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "GetSatelliteCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "GetSatelliteCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetSatelliteRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetSatelliteResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetSatelliteCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetSatelliteCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetSatelliteCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetSatelliteCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetSatelliteCommand;
38
+ }($Command));
39
+ export { GetSatelliteCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListConfigsRequestFilterSensitiveLog, ListConfigsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListConfigsCommand, serializeAws_restJson1ListConfigsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListConfigsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListConfigsCommand = (function (_super) {
7
+ __extends(ListConfigsCommand, _super);
8
+ function ListConfigsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListConfigsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "ListConfigsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "ListConfigsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListConfigsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListConfigsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListConfigsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListConfigsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListConfigsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListConfigsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListConfigsCommand;
38
+ }($Command));
39
+ export { ListConfigsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListContactsRequestFilterSensitiveLog, ListContactsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListContactsCommand, serializeAws_restJson1ListContactsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListContactsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListContactsCommand = (function (_super) {
7
+ __extends(ListContactsCommand, _super);
8
+ function ListContactsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListContactsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "ListContactsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "ListContactsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListContactsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListContactsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListContactsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListContactsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListContactsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListContactsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListContactsCommand;
38
+ }($Command));
39
+ export { ListContactsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListDataflowEndpointGroupsRequestFilterSensitiveLog, ListDataflowEndpointGroupsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListDataflowEndpointGroupsCommand, serializeAws_restJson1ListDataflowEndpointGroupsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListDataflowEndpointGroupsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListDataflowEndpointGroupsCommand = (function (_super) {
7
+ __extends(ListDataflowEndpointGroupsCommand, _super);
8
+ function ListDataflowEndpointGroupsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListDataflowEndpointGroupsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "ListDataflowEndpointGroupsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "ListDataflowEndpointGroupsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListDataflowEndpointGroupsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListDataflowEndpointGroupsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListDataflowEndpointGroupsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListDataflowEndpointGroupsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListDataflowEndpointGroupsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListDataflowEndpointGroupsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListDataflowEndpointGroupsCommand;
38
+ }($Command));
39
+ export { ListDataflowEndpointGroupsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListGroundStationsRequestFilterSensitiveLog, ListGroundStationsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListGroundStationsCommand, serializeAws_restJson1ListGroundStationsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListGroundStationsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListGroundStationsCommand = (function (_super) {
7
+ __extends(ListGroundStationsCommand, _super);
8
+ function ListGroundStationsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListGroundStationsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "ListGroundStationsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "ListGroundStationsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListGroundStationsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListGroundStationsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListGroundStationsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListGroundStationsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListGroundStationsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListGroundStationsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListGroundStationsCommand;
38
+ }($Command));
39
+ export { ListGroundStationsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListMissionProfilesRequestFilterSensitiveLog, ListMissionProfilesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListMissionProfilesCommand, serializeAws_restJson1ListMissionProfilesCommand, } from "../protocols/Aws_restJson1";
5
- export class ListMissionProfilesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListMissionProfilesCommand = (function (_super) {
7
+ __extends(ListMissionProfilesCommand, _super);
8
+ function ListMissionProfilesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListMissionProfilesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "ListMissionProfilesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "ListMissionProfilesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListMissionProfilesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListMissionProfilesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListMissionProfilesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListMissionProfilesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListMissionProfilesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListMissionProfilesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListMissionProfilesCommand;
38
+ }($Command));
39
+ export { ListMissionProfilesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListSatellitesRequestFilterSensitiveLog, ListSatellitesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListSatellitesCommand, serializeAws_restJson1ListSatellitesCommand, } from "../protocols/Aws_restJson1";
5
- export class ListSatellitesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListSatellitesCommand = (function (_super) {
7
+ __extends(ListSatellitesCommand, _super);
8
+ function ListSatellitesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListSatellitesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "ListSatellitesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "ListSatellitesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListSatellitesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListSatellitesResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListSatellitesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListSatellitesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListSatellitesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListSatellitesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListSatellitesCommand;
38
+ }($Command));
39
+ export { ListSatellitesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class ListTagsForResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListTagsForResourceCommand = (function (_super) {
7
+ __extends(ListTagsForResourceCommand, _super);
8
+ function ListTagsForResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "ListTagsForResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "ListTagsForResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListTagsForResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListTagsForResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListTagsForResourceCommand;
38
+ }($Command));
39
+ export { ListTagsForResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ContactIdResponseFilterSensitiveLog, ReserveContactRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ReserveContactCommand, serializeAws_restJson1ReserveContactCommand, } from "../protocols/Aws_restJson1";
5
- export class ReserveContactCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ReserveContactCommand = (function (_super) {
7
+ __extends(ReserveContactCommand, _super);
8
+ function ReserveContactCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ReserveContactCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "GroundStationClient";
15
- const commandName = "ReserveContactCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GroundStationClient";
18
+ var commandName = "ReserveContactCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ReserveContactRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ContactIdResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ReserveContactCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ReserveContactCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ReserveContactCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ReserveContactCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ReserveContactCommand;
38
+ }($Command));
39
+ export { ReserveContactCommand };