@aws-sdk/client-application-discovery-service 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 (40) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/ApplicationDiscoveryService.js +109 -102
  4. package/dist-es/ApplicationDiscoveryServiceClient.js +28 -22
  5. package/dist-es/commands/AssociateConfigurationItemsToApplicationCommand.js +28 -21
  6. package/dist-es/commands/BatchDeleteImportDataCommand.js +28 -21
  7. package/dist-es/commands/CreateApplicationCommand.js +28 -21
  8. package/dist-es/commands/CreateTagsCommand.js +28 -21
  9. package/dist-es/commands/DeleteApplicationsCommand.js +28 -21
  10. package/dist-es/commands/DeleteTagsCommand.js +28 -21
  11. package/dist-es/commands/DescribeAgentsCommand.js +28 -21
  12. package/dist-es/commands/DescribeConfigurationsCommand.js +28 -21
  13. package/dist-es/commands/DescribeContinuousExportsCommand.js +28 -21
  14. package/dist-es/commands/DescribeExportConfigurationsCommand.js +28 -21
  15. package/dist-es/commands/DescribeExportTasksCommand.js +28 -21
  16. package/dist-es/commands/DescribeImportTasksCommand.js +28 -21
  17. package/dist-es/commands/DescribeTagsCommand.js +28 -21
  18. package/dist-es/commands/DisassociateConfigurationItemsFromApplicationCommand.js +28 -21
  19. package/dist-es/commands/ExportConfigurationsCommand.js +29 -22
  20. package/dist-es/commands/GetDiscoverySummaryCommand.js +28 -21
  21. package/dist-es/commands/ListConfigurationsCommand.js +28 -21
  22. package/dist-es/commands/ListServerNeighborsCommand.js +28 -21
  23. package/dist-es/commands/StartContinuousExportCommand.js +28 -21
  24. package/dist-es/commands/StartDataCollectionByAgentIdsCommand.js +28 -21
  25. package/dist-es/commands/StartExportTaskCommand.js +28 -21
  26. package/dist-es/commands/StartImportTaskCommand.js +28 -21
  27. package/dist-es/commands/StopContinuousExportCommand.js +28 -21
  28. package/dist-es/commands/StopDataCollectionByAgentIdsCommand.js +28 -21
  29. package/dist-es/commands/UpdateApplicationCommand.js +28 -21
  30. package/dist-es/endpoints.js +8 -8
  31. package/dist-es/models/ApplicationDiscoveryServiceServiceException.js +10 -5
  32. package/dist-es/models/models_0.js +168 -303
  33. package/dist-es/pagination/DescribeContinuousExportsPaginator.js +68 -25
  34. package/dist-es/pagination/DescribeImportTasksPaginator.js +68 -25
  35. package/dist-es/protocols/Aws_json1_1.js +2390 -1849
  36. package/dist-es/runtimeConfig.browser.js +12 -26
  37. package/dist-es/runtimeConfig.js +12 -30
  38. package/dist-es/runtimeConfig.native.js +5 -8
  39. package/dist-es/runtimeConfig.shared.js +11 -8
  40. 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 { BatchDeleteImportDataRequestFilterSensitiveLog, BatchDeleteImportDataResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1BatchDeleteImportDataCommand, serializeAws_json1_1BatchDeleteImportDataCommand, } from "../protocols/Aws_json1_1";
5
- export class BatchDeleteImportDataCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var BatchDeleteImportDataCommand = (function (_super) {
7
+ __extends(BatchDeleteImportDataCommand, _super);
8
+ function BatchDeleteImportDataCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ BatchDeleteImportDataCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "BatchDeleteImportDataCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "BatchDeleteImportDataCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: BatchDeleteImportDataRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: BatchDeleteImportDataResponseFilterSensitiveLog,
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
+ BatchDeleteImportDataCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1BatchDeleteImportDataCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ BatchDeleteImportDataCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1BatchDeleteImportDataCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return BatchDeleteImportDataCommand;
38
+ }($Command));
39
+ export { BatchDeleteImportDataCommand };
@@ -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 { CreateApplicationRequestFilterSensitiveLog, CreateApplicationResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1CreateApplicationCommand, serializeAws_json1_1CreateApplicationCommand, } from "../protocols/Aws_json1_1";
5
- export class CreateApplicationCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateApplicationCommand = (function (_super) {
7
+ __extends(CreateApplicationCommand, _super);
8
+ function CreateApplicationCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateApplicationCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "CreateApplicationCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "CreateApplicationCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateApplicationRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateApplicationResponseFilterSensitiveLog,
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
+ CreateApplicationCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1CreateApplicationCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateApplicationCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1CreateApplicationCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateApplicationCommand;
38
+ }($Command));
39
+ export { CreateApplicationCommand };
@@ -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 { CreateTagsRequestFilterSensitiveLog, CreateTagsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1CreateTagsCommand, serializeAws_json1_1CreateTagsCommand, } from "../protocols/Aws_json1_1";
5
- export class CreateTagsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateTagsCommand = (function (_super) {
7
+ __extends(CreateTagsCommand, _super);
8
+ function CreateTagsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateTagsCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "CreateTagsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "CreateTagsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateTagsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateTagsResponseFilterSensitiveLog,
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
+ CreateTagsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1CreateTagsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateTagsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1CreateTagsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateTagsCommand;
38
+ }($Command));
39
+ export { CreateTagsCommand };
@@ -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 { DeleteApplicationsRequestFilterSensitiveLog, DeleteApplicationsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteApplicationsCommand, serializeAws_json1_1DeleteApplicationsCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteApplicationsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteApplicationsCommand = (function (_super) {
7
+ __extends(DeleteApplicationsCommand, _super);
8
+ function DeleteApplicationsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteApplicationsCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "DeleteApplicationsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "DeleteApplicationsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteApplicationsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteApplicationsResponseFilterSensitiveLog,
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
+ DeleteApplicationsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteApplicationsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteApplicationsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteApplicationsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteApplicationsCommand;
38
+ }($Command));
39
+ export { DeleteApplicationsCommand };
@@ -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 { DeleteTagsRequestFilterSensitiveLog, DeleteTagsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DeleteTagsCommand, serializeAws_json1_1DeleteTagsCommand, } from "../protocols/Aws_json1_1";
5
- export class DeleteTagsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteTagsCommand = (function (_super) {
7
+ __extends(DeleteTagsCommand, _super);
8
+ function DeleteTagsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteTagsCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "DeleteTagsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "DeleteTagsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteTagsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteTagsResponseFilterSensitiveLog,
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
+ DeleteTagsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DeleteTagsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteTagsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DeleteTagsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteTagsCommand;
38
+ }($Command));
39
+ export { DeleteTagsCommand };
@@ -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 { DescribeAgentsRequestFilterSensitiveLog, DescribeAgentsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeAgentsCommand, serializeAws_json1_1DescribeAgentsCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeAgentsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeAgentsCommand = (function (_super) {
7
+ __extends(DescribeAgentsCommand, _super);
8
+ function DescribeAgentsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeAgentsCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "DescribeAgentsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "DescribeAgentsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeAgentsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeAgentsResponseFilterSensitiveLog,
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
+ DescribeAgentsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeAgentsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeAgentsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeAgentsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeAgentsCommand;
38
+ }($Command));
39
+ export { DescribeAgentsCommand };
@@ -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 { DescribeConfigurationsRequestFilterSensitiveLog, DescribeConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeConfigurationsCommand, serializeAws_json1_1DescribeConfigurationsCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeConfigurationsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeConfigurationsCommand = (function (_super) {
7
+ __extends(DescribeConfigurationsCommand, _super);
8
+ function DescribeConfigurationsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeConfigurationsCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "DescribeConfigurationsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "DescribeConfigurationsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeConfigurationsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeConfigurationsResponseFilterSensitiveLog,
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
+ DescribeConfigurationsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeConfigurationsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeConfigurationsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeConfigurationsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeConfigurationsCommand;
38
+ }($Command));
39
+ export { DescribeConfigurationsCommand };
@@ -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 { DescribeContinuousExportsRequestFilterSensitiveLog, DescribeContinuousExportsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeContinuousExportsCommand, serializeAws_json1_1DescribeContinuousExportsCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeContinuousExportsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeContinuousExportsCommand = (function (_super) {
7
+ __extends(DescribeContinuousExportsCommand, _super);
8
+ function DescribeContinuousExportsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeContinuousExportsCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "DescribeContinuousExportsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "DescribeContinuousExportsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeContinuousExportsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeContinuousExportsResponseFilterSensitiveLog,
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
+ DescribeContinuousExportsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeContinuousExportsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeContinuousExportsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeContinuousExportsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeContinuousExportsCommand;
38
+ }($Command));
39
+ export { DescribeContinuousExportsCommand };
@@ -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 { DescribeExportConfigurationsRequestFilterSensitiveLog, DescribeExportConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeExportConfigurationsCommand, serializeAws_json1_1DescribeExportConfigurationsCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeExportConfigurationsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeExportConfigurationsCommand = (function (_super) {
7
+ __extends(DescribeExportConfigurationsCommand, _super);
8
+ function DescribeExportConfigurationsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeExportConfigurationsCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "DescribeExportConfigurationsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "DescribeExportConfigurationsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeExportConfigurationsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeExportConfigurationsResponseFilterSensitiveLog,
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
+ DescribeExportConfigurationsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeExportConfigurationsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeExportConfigurationsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeExportConfigurationsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeExportConfigurationsCommand;
38
+ }($Command));
39
+ export { DescribeExportConfigurationsCommand };
@@ -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 { DescribeExportTasksRequestFilterSensitiveLog, DescribeExportTasksResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_json1_1DescribeExportTasksCommand, serializeAws_json1_1DescribeExportTasksCommand, } from "../protocols/Aws_json1_1";
5
- export class DescribeExportTasksCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeExportTasksCommand = (function (_super) {
7
+ __extends(DescribeExportTasksCommand, _super);
8
+ function DescribeExportTasksCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeExportTasksCommand.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 = "ApplicationDiscoveryServiceClient";
15
- const commandName = "DescribeExportTasksCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ApplicationDiscoveryServiceClient";
18
+ var commandName = "DescribeExportTasksCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeExportTasksRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeExportTasksResponseFilterSensitiveLog,
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
+ DescribeExportTasksCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_json1_1DescribeExportTasksCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeExportTasksCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_json1_1DescribeExportTasksCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeExportTasksCommand;
38
+ }($Command));
39
+ export { DescribeExportTasksCommand };