@aws-sdk/client-appflow 3.928.0 → 3.930.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 (49) hide show
  1. package/dist-cjs/index.js +2103 -1536
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/AppflowClient.js +2 -0
  4. package/dist-es/commands/CancelFlowExecutionsCommand.js +3 -9
  5. package/dist-es/commands/CreateConnectorProfileCommand.js +3 -10
  6. package/dist-es/commands/CreateFlowCommand.js +3 -9
  7. package/dist-es/commands/DeleteConnectorProfileCommand.js +3 -9
  8. package/dist-es/commands/DeleteFlowCommand.js +3 -9
  9. package/dist-es/commands/DescribeConnectorCommand.js +3 -9
  10. package/dist-es/commands/DescribeConnectorEntityCommand.js +3 -9
  11. package/dist-es/commands/DescribeConnectorProfilesCommand.js +3 -9
  12. package/dist-es/commands/DescribeConnectorsCommand.js +3 -9
  13. package/dist-es/commands/DescribeFlowCommand.js +3 -9
  14. package/dist-es/commands/DescribeFlowExecutionRecordsCommand.js +3 -9
  15. package/dist-es/commands/ListConnectorEntitiesCommand.js +3 -9
  16. package/dist-es/commands/ListConnectorsCommand.js +3 -9
  17. package/dist-es/commands/ListFlowsCommand.js +3 -9
  18. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  19. package/dist-es/commands/RegisterConnectorCommand.js +3 -9
  20. package/dist-es/commands/ResetConnectorMetadataCacheCommand.js +3 -9
  21. package/dist-es/commands/StartFlowCommand.js +3 -9
  22. package/dist-es/commands/StopFlowCommand.js +3 -9
  23. package/dist-es/commands/TagResourceCommand.js +3 -9
  24. package/dist-es/commands/UnregisterConnectorCommand.js +3 -9
  25. package/dist-es/commands/UntagResourceCommand.js +3 -9
  26. package/dist-es/commands/UpdateConnectorProfileCommand.js +3 -10
  27. package/dist-es/commands/UpdateConnectorRegistrationCommand.js +3 -9
  28. package/dist-es/commands/UpdateFlowCommand.js +3 -9
  29. package/dist-es/models/models_0.js +0 -148
  30. package/dist-es/runtimeConfig.shared.js +2 -0
  31. package/dist-es/schemas/schemas_0.js +2052 -0
  32. package/dist-types/AppflowClient.d.ts +10 -1
  33. package/dist-types/models/models_0.d.ts +0 -108
  34. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  35. package/dist-types/runtimeConfig.d.ts +1 -0
  36. package/dist-types/runtimeConfig.native.d.ts +1 -0
  37. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  38. package/dist-types/schemas/schemas_0.d.ts +295 -0
  39. package/dist-types/ts3.4/AppflowClient.d.ts +4 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +0 -81
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  45. package/dist-types/ts3.4/schemas/schemas_0.d.ts +302 -0
  46. package/package.json +33 -34
  47. package/dist-es/protocols/Aws_restJson1.js +0 -1159
  48. package/dist-types/protocols/Aws_restJson1.d.ts +0 -227
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -305
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -25,6 +26,7 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.appflow" }),
28
30
  serviceId: config?.serviceId ?? "Appflow",
29
31
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
32
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class AppflowClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CancelFlowExecutionsCommand, se_CancelFlowExecutionsCommand } from "../protocols/Aws_restJson1";
4
+ import { CancelFlowExecutions } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CancelFlowExecutionsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "CancelFlowExecutions", {})
17
13
  .n("AppflowClient", "CancelFlowExecutionsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CancelFlowExecutionsCommand)
20
- .de(de_CancelFlowExecutionsCommand)
14
+ .sc(CancelFlowExecutions)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { CreateConnectorProfileRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CreateConnectorProfileCommand, se_CreateConnectorProfileCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateConnectorProfile } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CreateConnectorProfileCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("SandstoneConfigurationServiceLambda", "CreateConnectorProfile", {})
18
13
  .n("AppflowClient", "CreateConnectorProfileCommand")
19
- .f(CreateConnectorProfileRequestFilterSensitiveLog, void 0)
20
- .ser(se_CreateConnectorProfileCommand)
21
- .de(de_CreateConnectorProfileCommand)
14
+ .sc(CreateConnectorProfile)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_CreateFlowCommand, se_CreateFlowCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateFlow } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateFlowCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "CreateFlow", {})
17
13
  .n("AppflowClient", "CreateFlowCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateFlowCommand)
20
- .de(de_CreateFlowCommand)
14
+ .sc(CreateFlow)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteConnectorProfileCommand, se_DeleteConnectorProfileCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteConnectorProfile } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteConnectorProfileCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "DeleteConnectorProfile", {})
17
13
  .n("AppflowClient", "DeleteConnectorProfileCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteConnectorProfileCommand)
20
- .de(de_DeleteConnectorProfileCommand)
14
+ .sc(DeleteConnectorProfile)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteFlowCommand, se_DeleteFlowCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteFlow } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteFlowCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "DeleteFlow", {})
17
13
  .n("AppflowClient", "DeleteFlowCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteFlowCommand)
20
- .de(de_DeleteFlowCommand)
14
+ .sc(DeleteFlow)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeConnectorCommand, se_DescribeConnectorCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeConnector } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeConnectorCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "DescribeConnector", {})
17
13
  .n("AppflowClient", "DescribeConnectorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeConnectorCommand)
20
- .de(de_DescribeConnectorCommand)
14
+ .sc(DescribeConnector)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeConnectorEntityCommand, se_DescribeConnectorEntityCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeConnectorEntity } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeConnectorEntityCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectorEntity", {})
17
13
  .n("AppflowClient", "DescribeConnectorEntityCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeConnectorEntityCommand)
20
- .de(de_DescribeConnectorEntityCommand)
14
+ .sc(DescribeConnectorEntity)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeConnectorProfilesCommand, se_DescribeConnectorProfilesCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeConnectorProfiles } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeConnectorProfilesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectorProfiles", {})
17
13
  .n("AppflowClient", "DescribeConnectorProfilesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeConnectorProfilesCommand)
20
- .de(de_DescribeConnectorProfilesCommand)
14
+ .sc(DescribeConnectorProfiles)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeConnectorsCommand, se_DescribeConnectorsCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeConnectors } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeConnectorsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectors", {})
17
13
  .n("AppflowClient", "DescribeConnectorsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeConnectorsCommand)
20
- .de(de_DescribeConnectorsCommand)
14
+ .sc(DescribeConnectors)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeFlowCommand, se_DescribeFlowCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeFlow } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeFlowCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "DescribeFlow", {})
17
13
  .n("AppflowClient", "DescribeFlowCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeFlowCommand)
20
- .de(de_DescribeFlowCommand)
14
+ .sc(DescribeFlow)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeFlowExecutionRecordsCommand, se_DescribeFlowExecutionRecordsCommand, } from "../protocols/Aws_restJson1";
4
+ import { DescribeFlowExecutionRecords } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeFlowExecutionRecordsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "DescribeFlowExecutionRecords", {})
17
13
  .n("AppflowClient", "DescribeFlowExecutionRecordsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeFlowExecutionRecordsCommand)
20
- .de(de_DescribeFlowExecutionRecordsCommand)
14
+ .sc(DescribeFlowExecutionRecords)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListConnectorEntitiesCommand, se_ListConnectorEntitiesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListConnectorEntities } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListConnectorEntitiesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "ListConnectorEntities", {})
17
13
  .n("AppflowClient", "ListConnectorEntitiesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListConnectorEntitiesCommand)
20
- .de(de_ListConnectorEntitiesCommand)
14
+ .sc(ListConnectorEntities)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListConnectorsCommand, se_ListConnectorsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListConnectors } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListConnectorsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "ListConnectors", {})
17
13
  .n("AppflowClient", "ListConnectorsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListConnectorsCommand)
20
- .de(de_ListConnectorsCommand)
14
+ .sc(ListConnectors)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListFlowsCommand, se_ListFlowsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListFlows } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListFlowsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "ListFlows", {})
17
13
  .n("AppflowClient", "ListFlowsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListFlowsCommand)
20
- .de(de_ListFlowsCommand)
14
+ .sc(ListFlows)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { ListTagsForResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTagsForResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "ListTagsForResource", {})
17
13
  .n("AppflowClient", "ListTagsForResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTagsForResourceCommand)
20
- .de(de_ListTagsForResourceCommand)
14
+ .sc(ListTagsForResource)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_RegisterConnectorCommand, se_RegisterConnectorCommand } from "../protocols/Aws_restJson1";
4
+ import { RegisterConnector } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class RegisterConnectorCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "RegisterConnector", {})
17
13
  .n("AppflowClient", "RegisterConnectorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_RegisterConnectorCommand)
20
- .de(de_RegisterConnectorCommand)
14
+ .sc(RegisterConnector)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ResetConnectorMetadataCacheCommand, se_ResetConnectorMetadataCacheCommand, } from "../protocols/Aws_restJson1";
4
+ import { ResetConnectorMetadataCache } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ResetConnectorMetadataCacheCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "ResetConnectorMetadataCache", {})
17
13
  .n("AppflowClient", "ResetConnectorMetadataCacheCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ResetConnectorMetadataCacheCommand)
20
- .de(de_ResetConnectorMetadataCacheCommand)
14
+ .sc(ResetConnectorMetadataCache)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StartFlowCommand, se_StartFlowCommand } from "../protocols/Aws_restJson1";
4
+ import { StartFlow } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StartFlowCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "StartFlow", {})
17
13
  .n("AppflowClient", "StartFlowCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StartFlowCommand)
20
- .de(de_StartFlowCommand)
14
+ .sc(StartFlow)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StopFlowCommand, se_StopFlowCommand } from "../protocols/Aws_restJson1";
4
+ import { StopFlow } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StopFlowCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "StopFlow", {})
17
13
  .n("AppflowClient", "StopFlowCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StopFlowCommand)
20
- .de(de_StopFlowCommand)
14
+ .sc(StopFlow)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { TagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class TagResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "TagResource", {})
17
13
  .n("AppflowClient", "TagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_TagResourceCommand)
20
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UnregisterConnectorCommand, se_UnregisterConnectorCommand } from "../protocols/Aws_restJson1";
4
+ import { UnregisterConnector } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UnregisterConnectorCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "UnregisterConnector", {})
17
13
  .n("AppflowClient", "UnregisterConnectorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UnregisterConnectorCommand)
20
- .de(de_UnregisterConnectorCommand)
14
+ .sc(UnregisterConnector)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { UntagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UntagResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SandstoneConfigurationServiceLambda", "UntagResource", {})
17
13
  .n("AppflowClient", "UntagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UntagResourceCommand)
20
- .de(de_UntagResourceCommand)
14
+ .sc(UntagResource)
21
15
  .build() {
22
16
  }