@aws-sdk/client-appflow 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 (40) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/Appflow.js +97 -90
  4. package/dist-es/AppflowClient.js +28 -22
  5. package/dist-es/commands/CreateConnectorProfileCommand.js +28 -21
  6. package/dist-es/commands/CreateFlowCommand.js +28 -21
  7. package/dist-es/commands/DeleteConnectorProfileCommand.js +28 -21
  8. package/dist-es/commands/DeleteFlowCommand.js +28 -21
  9. package/dist-es/commands/DescribeConnectorCommand.js +28 -21
  10. package/dist-es/commands/DescribeConnectorEntityCommand.js +28 -21
  11. package/dist-es/commands/DescribeConnectorProfilesCommand.js +28 -21
  12. package/dist-es/commands/DescribeConnectorsCommand.js +28 -21
  13. package/dist-es/commands/DescribeFlowCommand.js +28 -21
  14. package/dist-es/commands/DescribeFlowExecutionRecordsCommand.js +28 -21
  15. package/dist-es/commands/ListConnectorEntitiesCommand.js +28 -21
  16. package/dist-es/commands/ListConnectorsCommand.js +28 -21
  17. package/dist-es/commands/ListFlowsCommand.js +28 -21
  18. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  19. package/dist-es/commands/RegisterConnectorCommand.js +28 -21
  20. package/dist-es/commands/StartFlowCommand.js +28 -21
  21. package/dist-es/commands/StopFlowCommand.js +28 -21
  22. package/dist-es/commands/TagResourceCommand.js +28 -21
  23. package/dist-es/commands/UnregisterConnectorCommand.js +28 -21
  24. package/dist-es/commands/UntagResourceCommand.js +28 -21
  25. package/dist-es/commands/UpdateConnectorProfileCommand.js +28 -21
  26. package/dist-es/commands/UpdateFlowCommand.js +28 -21
  27. package/dist-es/endpoints.js +8 -8
  28. package/dist-es/models/AppflowServiceException.js +10 -5
  29. package/dist-es/models/models_0.js +302 -720
  30. package/dist-es/pagination/DescribeConnectorProfilesPaginator.js +68 -25
  31. package/dist-es/pagination/DescribeConnectorsPaginator.js +68 -25
  32. package/dist-es/pagination/DescribeFlowExecutionRecordsPaginator.js +68 -25
  33. package/dist-es/pagination/ListConnectorsPaginator.js +68 -25
  34. package/dist-es/pagination/ListFlowsPaginator.js +68 -25
  35. package/dist-es/protocols/Aws_restJson1.js +2943 -2713
  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 +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 { DeleteConnectorProfileRequestFilterSensitiveLog, DeleteConnectorProfileResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteConnectorProfileCommand, serializeAws_restJson1DeleteConnectorProfileCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteConnectorProfileCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteConnectorProfileCommand = (function (_super) {
7
+ __extends(DeleteConnectorProfileCommand, _super);
8
+ function DeleteConnectorProfileCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteConnectorProfileCommand.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 = "AppflowClient";
15
- const commandName = "DeleteConnectorProfileCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "DeleteConnectorProfileCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteConnectorProfileRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteConnectorProfileResponseFilterSensitiveLog,
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
+ DeleteConnectorProfileCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteConnectorProfileCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteConnectorProfileCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteConnectorProfileCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteConnectorProfileCommand;
38
+ }($Command));
39
+ export { DeleteConnectorProfileCommand };
@@ -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 { DeleteFlowRequestFilterSensitiveLog, DeleteFlowResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteFlowCommand, serializeAws_restJson1DeleteFlowCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteFlowCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteFlowCommand = (function (_super) {
7
+ __extends(DeleteFlowCommand, _super);
8
+ function DeleteFlowCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteFlowCommand.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 = "AppflowClient";
15
- const commandName = "DeleteFlowCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "DeleteFlowCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteFlowRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteFlowResponseFilterSensitiveLog,
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
+ DeleteFlowCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteFlowCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteFlowCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteFlowCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteFlowCommand;
38
+ }($Command));
39
+ export { DeleteFlowCommand };
@@ -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 { DescribeConnectorRequestFilterSensitiveLog, DescribeConnectorResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeConnectorCommand, serializeAws_restJson1DescribeConnectorCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeConnectorCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeConnectorCommand = (function (_super) {
7
+ __extends(DescribeConnectorCommand, _super);
8
+ function DescribeConnectorCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeConnectorCommand.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 = "AppflowClient";
15
- const commandName = "DescribeConnectorCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "DescribeConnectorCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeConnectorRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeConnectorResponseFilterSensitiveLog,
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
+ DescribeConnectorCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeConnectorCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeConnectorCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeConnectorCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeConnectorCommand;
38
+ }($Command));
39
+ export { DescribeConnectorCommand };
@@ -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 { DescribeConnectorEntityRequestFilterSensitiveLog, DescribeConnectorEntityResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeConnectorEntityCommand, serializeAws_restJson1DescribeConnectorEntityCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeConnectorEntityCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeConnectorEntityCommand = (function (_super) {
7
+ __extends(DescribeConnectorEntityCommand, _super);
8
+ function DescribeConnectorEntityCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeConnectorEntityCommand.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 = "AppflowClient";
15
- const commandName = "DescribeConnectorEntityCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "DescribeConnectorEntityCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeConnectorEntityRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeConnectorEntityResponseFilterSensitiveLog,
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
+ DescribeConnectorEntityCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeConnectorEntityCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeConnectorEntityCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeConnectorEntityCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeConnectorEntityCommand;
38
+ }($Command));
39
+ export { DescribeConnectorEntityCommand };
@@ -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 { DescribeConnectorProfilesRequestFilterSensitiveLog, DescribeConnectorProfilesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeConnectorProfilesCommand, serializeAws_restJson1DescribeConnectorProfilesCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeConnectorProfilesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeConnectorProfilesCommand = (function (_super) {
7
+ __extends(DescribeConnectorProfilesCommand, _super);
8
+ function DescribeConnectorProfilesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeConnectorProfilesCommand.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 = "AppflowClient";
15
- const commandName = "DescribeConnectorProfilesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "DescribeConnectorProfilesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeConnectorProfilesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeConnectorProfilesResponseFilterSensitiveLog,
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
+ DescribeConnectorProfilesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeConnectorProfilesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeConnectorProfilesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeConnectorProfilesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeConnectorProfilesCommand;
38
+ }($Command));
39
+ export { DescribeConnectorProfilesCommand };
@@ -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 { DescribeConnectorsRequestFilterSensitiveLog, DescribeConnectorsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeConnectorsCommand, serializeAws_restJson1DescribeConnectorsCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeConnectorsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeConnectorsCommand = (function (_super) {
7
+ __extends(DescribeConnectorsCommand, _super);
8
+ function DescribeConnectorsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeConnectorsCommand.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 = "AppflowClient";
15
- const commandName = "DescribeConnectorsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "DescribeConnectorsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeConnectorsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeConnectorsResponseFilterSensitiveLog,
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
+ DescribeConnectorsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeConnectorsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeConnectorsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeConnectorsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeConnectorsCommand;
38
+ }($Command));
39
+ export { DescribeConnectorsCommand };
@@ -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 { DescribeFlowRequestFilterSensitiveLog, DescribeFlowResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeFlowCommand, serializeAws_restJson1DescribeFlowCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeFlowCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeFlowCommand = (function (_super) {
7
+ __extends(DescribeFlowCommand, _super);
8
+ function DescribeFlowCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeFlowCommand.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 = "AppflowClient";
15
- const commandName = "DescribeFlowCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "DescribeFlowCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeFlowRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeFlowResponseFilterSensitiveLog,
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
+ DescribeFlowCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeFlowCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeFlowCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeFlowCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeFlowCommand;
38
+ }($Command));
39
+ export { DescribeFlowCommand };
@@ -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 { DescribeFlowExecutionRecordsRequestFilterSensitiveLog, DescribeFlowExecutionRecordsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DescribeFlowExecutionRecordsCommand, serializeAws_restJson1DescribeFlowExecutionRecordsCommand, } from "../protocols/Aws_restJson1";
5
- export class DescribeFlowExecutionRecordsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DescribeFlowExecutionRecordsCommand = (function (_super) {
7
+ __extends(DescribeFlowExecutionRecordsCommand, _super);
8
+ function DescribeFlowExecutionRecordsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DescribeFlowExecutionRecordsCommand.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 = "AppflowClient";
15
- const commandName = "DescribeFlowExecutionRecordsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "DescribeFlowExecutionRecordsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DescribeFlowExecutionRecordsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DescribeFlowExecutionRecordsResponseFilterSensitiveLog,
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
+ DescribeFlowExecutionRecordsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DescribeFlowExecutionRecordsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DescribeFlowExecutionRecordsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DescribeFlowExecutionRecordsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DescribeFlowExecutionRecordsCommand;
38
+ }($Command));
39
+ export { DescribeFlowExecutionRecordsCommand };
@@ -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 { ListConnectorEntitiesRequestFilterSensitiveLog, ListConnectorEntitiesResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListConnectorEntitiesCommand, serializeAws_restJson1ListConnectorEntitiesCommand, } from "../protocols/Aws_restJson1";
5
- export class ListConnectorEntitiesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListConnectorEntitiesCommand = (function (_super) {
7
+ __extends(ListConnectorEntitiesCommand, _super);
8
+ function ListConnectorEntitiesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListConnectorEntitiesCommand.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 = "AppflowClient";
15
- const commandName = "ListConnectorEntitiesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "ListConnectorEntitiesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListConnectorEntitiesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListConnectorEntitiesResponseFilterSensitiveLog,
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
+ ListConnectorEntitiesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListConnectorEntitiesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListConnectorEntitiesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListConnectorEntitiesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListConnectorEntitiesCommand;
38
+ }($Command));
39
+ export { ListConnectorEntitiesCommand };
@@ -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 { ListConnectorsRequestFilterSensitiveLog, ListConnectorsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListConnectorsCommand, serializeAws_restJson1ListConnectorsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListConnectorsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListConnectorsCommand = (function (_super) {
7
+ __extends(ListConnectorsCommand, _super);
8
+ function ListConnectorsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListConnectorsCommand.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 = "AppflowClient";
15
- const commandName = "ListConnectorsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AppflowClient";
18
+ var commandName = "ListConnectorsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListConnectorsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListConnectorsResponseFilterSensitiveLog,
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
+ ListConnectorsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListConnectorsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListConnectorsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListConnectorsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListConnectorsCommand;
38
+ }($Command));
39
+ export { ListConnectorsCommand };