@aws-sdk/client-groundstation 3.183.0 → 3.186.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 +19 -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 +33 -33
@@ -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 { ConfigIdResponseFilterSensitiveLog, CreateConfigRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateConfigCommand, serializeAws_restJson1CreateConfigCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateConfigCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateConfigCommand = (function (_super) {
7
+ __extends(CreateConfigCommand, _super);
8
+ function CreateConfigCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateConfigCommand.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 = "CreateConfigCommand";
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 = "CreateConfigCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateConfigRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ConfigIdResponseFilterSensitiveLog,
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
+ CreateConfigCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateConfigCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateConfigCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateConfigCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateConfigCommand;
38
+ }($Command));
39
+ export { CreateConfigCommand };
@@ -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 { CreateDataflowEndpointGroupRequestFilterSensitiveLog, DataflowEndpointGroupIdResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateDataflowEndpointGroupCommand, serializeAws_restJson1CreateDataflowEndpointGroupCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateDataflowEndpointGroupCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateDataflowEndpointGroupCommand = (function (_super) {
7
+ __extends(CreateDataflowEndpointGroupCommand, _super);
8
+ function CreateDataflowEndpointGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateDataflowEndpointGroupCommand.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 = "CreateDataflowEndpointGroupCommand";
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 = "CreateDataflowEndpointGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateDataflowEndpointGroupRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DataflowEndpointGroupIdResponseFilterSensitiveLog,
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
+ CreateDataflowEndpointGroupCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateDataflowEndpointGroupCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateDataflowEndpointGroupCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateDataflowEndpointGroupCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateDataflowEndpointGroupCommand;
38
+ }($Command));
39
+ export { CreateDataflowEndpointGroupCommand };
@@ -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 { CreateMissionProfileRequestFilterSensitiveLog, MissionProfileIdResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateMissionProfileCommand, serializeAws_restJson1CreateMissionProfileCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateMissionProfileCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateMissionProfileCommand = (function (_super) {
7
+ __extends(CreateMissionProfileCommand, _super);
8
+ function CreateMissionProfileCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateMissionProfileCommand.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 = "CreateMissionProfileCommand";
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 = "CreateMissionProfileCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateMissionProfileRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: MissionProfileIdResponseFilterSensitiveLog,
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
+ CreateMissionProfileCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateMissionProfileCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateMissionProfileCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateMissionProfileCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateMissionProfileCommand;
38
+ }($Command));
39
+ export { CreateMissionProfileCommand };
@@ -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 { ConfigIdResponseFilterSensitiveLog, DeleteConfigRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteConfigCommand, serializeAws_restJson1DeleteConfigCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteConfigCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteConfigCommand = (function (_super) {
7
+ __extends(DeleteConfigCommand, _super);
8
+ function DeleteConfigCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteConfigCommand.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 = "DeleteConfigCommand";
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 = "DeleteConfigCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteConfigRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ConfigIdResponseFilterSensitiveLog,
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
+ DeleteConfigCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteConfigCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteConfigCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteConfigCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteConfigCommand;
38
+ }($Command));
39
+ export { DeleteConfigCommand };
@@ -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 { DataflowEndpointGroupIdResponseFilterSensitiveLog, DeleteDataflowEndpointGroupRequestFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteDataflowEndpointGroupCommand, serializeAws_restJson1DeleteDataflowEndpointGroupCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteDataflowEndpointGroupCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteDataflowEndpointGroupCommand = (function (_super) {
7
+ __extends(DeleteDataflowEndpointGroupCommand, _super);
8
+ function DeleteDataflowEndpointGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteDataflowEndpointGroupCommand.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 = "DeleteDataflowEndpointGroupCommand";
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 = "DeleteDataflowEndpointGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteDataflowEndpointGroupRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DataflowEndpointGroupIdResponseFilterSensitiveLog,
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
+ DeleteDataflowEndpointGroupCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteDataflowEndpointGroupCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteDataflowEndpointGroupCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteDataflowEndpointGroupCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteDataflowEndpointGroupCommand;
38
+ }($Command));
39
+ export { DeleteDataflowEndpointGroupCommand };
@@ -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 { DeleteMissionProfileRequestFilterSensitiveLog, MissionProfileIdResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteMissionProfileCommand, serializeAws_restJson1DeleteMissionProfileCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteMissionProfileCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteMissionProfileCommand = (function (_super) {
7
+ __extends(DeleteMissionProfileCommand, _super);
8
+ function DeleteMissionProfileCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteMissionProfileCommand.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 = "DeleteMissionProfileCommand";
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 = "DeleteMissionProfileCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteMissionProfileRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: MissionProfileIdResponseFilterSensitiveLog,
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
+ DeleteMissionProfileCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteMissionProfileCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteMissionProfileCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteMissionProfileCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteMissionProfileCommand;
38
+ }($Command));
39
+ export { DeleteMissionProfileCommand };
@@ -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 { DescribeContactRequestFilterSensitiveLog, DescribeContactResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeContactCommand, serializeAws_restJson1DescribeContactCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeContactCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeContactCommand = (function (_super) {
7
+ __extends(DescribeContactCommand, _super);
8
+ function DescribeContactCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeContactCommand.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 = "DescribeContactCommand";
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 = "DescribeContactCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeContactRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeContactResponseFilterSensitiveLog,
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
+ DescribeContactCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeContactCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeContactCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeContactCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeContactCommand;
38
+ }($Command));
39
+ export { DescribeContactCommand };
@@ -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 { GetConfigRequestFilterSensitiveLog, GetConfigResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetConfigCommand, serializeAws_restJson1GetConfigCommand, } from "../protocols/Aws_restJson1";
5
- export class GetConfigCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetConfigCommand = (function (_super) {
7
+ __extends(GetConfigCommand, _super);
8
+ function GetConfigCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetConfigCommand.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 = "GetConfigCommand";
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 = "GetConfigCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetConfigRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetConfigResponseFilterSensitiveLog,
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
+ GetConfigCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetConfigCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetConfigCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetConfigCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetConfigCommand;
38
+ }($Command));
39
+ export { GetConfigCommand };
@@ -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 { GetDataflowEndpointGroupRequestFilterSensitiveLog, GetDataflowEndpointGroupResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetDataflowEndpointGroupCommand, serializeAws_restJson1GetDataflowEndpointGroupCommand, } from "../protocols/Aws_restJson1";
5
- export class GetDataflowEndpointGroupCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetDataflowEndpointGroupCommand = (function (_super) {
7
+ __extends(GetDataflowEndpointGroupCommand, _super);
8
+ function GetDataflowEndpointGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetDataflowEndpointGroupCommand.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 = "GetDataflowEndpointGroupCommand";
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 = "GetDataflowEndpointGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetDataflowEndpointGroupRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetDataflowEndpointGroupResponseFilterSensitiveLog,
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
+ GetDataflowEndpointGroupCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetDataflowEndpointGroupCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetDataflowEndpointGroupCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetDataflowEndpointGroupCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetDataflowEndpointGroupCommand;
38
+ }($Command));
39
+ export { GetDataflowEndpointGroupCommand };
@@ -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 { GetMinuteUsageRequestFilterSensitiveLog, GetMinuteUsageResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetMinuteUsageCommand, serializeAws_restJson1GetMinuteUsageCommand, } from "../protocols/Aws_restJson1";
5
- export class GetMinuteUsageCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetMinuteUsageCommand = (function (_super) {
7
+ __extends(GetMinuteUsageCommand, _super);
8
+ function GetMinuteUsageCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetMinuteUsageCommand.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 = "GetMinuteUsageCommand";
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 = "GetMinuteUsageCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetMinuteUsageRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetMinuteUsageResponseFilterSensitiveLog,
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
+ GetMinuteUsageCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetMinuteUsageCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetMinuteUsageCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetMinuteUsageCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetMinuteUsageCommand;
38
+ }($Command));
39
+ export { GetMinuteUsageCommand };