@aws-sdk/client-b2bi 3.927.0 → 3.928.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 (54) hide show
  1. package/dist-cjs/index.js +1363 -1315
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/B2biClient.js +2 -0
  4. package/dist-es/commands/CreateCapabilityCommand.js +3 -9
  5. package/dist-es/commands/CreatePartnershipCommand.js +3 -10
  6. package/dist-es/commands/CreateProfileCommand.js +3 -10
  7. package/dist-es/commands/CreateStarterMappingTemplateCommand.js +3 -9
  8. package/dist-es/commands/CreateTransformerCommand.js +3 -9
  9. package/dist-es/commands/DeleteCapabilityCommand.js +3 -9
  10. package/dist-es/commands/DeletePartnershipCommand.js +3 -9
  11. package/dist-es/commands/DeleteProfileCommand.js +3 -9
  12. package/dist-es/commands/DeleteTransformerCommand.js +3 -9
  13. package/dist-es/commands/GenerateMappingCommand.js +3 -9
  14. package/dist-es/commands/GetCapabilityCommand.js +3 -9
  15. package/dist-es/commands/GetPartnershipCommand.js +3 -10
  16. package/dist-es/commands/GetProfileCommand.js +3 -10
  17. package/dist-es/commands/GetTransformerCommand.js +3 -9
  18. package/dist-es/commands/GetTransformerJobCommand.js +3 -9
  19. package/dist-es/commands/ListCapabilitiesCommand.js +3 -9
  20. package/dist-es/commands/ListPartnershipsCommand.js +3 -9
  21. package/dist-es/commands/ListProfilesCommand.js +3 -9
  22. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  23. package/dist-es/commands/ListTransformersCommand.js +3 -9
  24. package/dist-es/commands/StartTransformerJobCommand.js +3 -9
  25. package/dist-es/commands/TagResourceCommand.js +3 -9
  26. package/dist-es/commands/TestConversionCommand.js +3 -9
  27. package/dist-es/commands/TestMappingCommand.js +3 -9
  28. package/dist-es/commands/TestParsingCommand.js +3 -9
  29. package/dist-es/commands/UntagResourceCommand.js +3 -9
  30. package/dist-es/commands/UpdateCapabilityCommand.js +3 -9
  31. package/dist-es/commands/UpdatePartnershipCommand.js +3 -10
  32. package/dist-es/commands/UpdateProfileCommand.js +3 -10
  33. package/dist-es/commands/UpdateTransformerCommand.js +3 -9
  34. package/dist-es/models/models_0.js +0 -50
  35. package/dist-es/runtimeConfig.shared.js +7 -0
  36. package/dist-es/schemas/schemas_0.js +1285 -0
  37. package/dist-types/B2biClient.d.ts +10 -1
  38. package/dist-types/models/models_0.d.ts +0 -36
  39. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  40. package/dist-types/runtimeConfig.d.ts +1 -0
  41. package/dist-types/runtimeConfig.native.d.ts +1 -0
  42. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  43. package/dist-types/schemas/schemas_0.d.ts +152 -0
  44. package/dist-types/ts3.4/B2biClient.d.ts +4 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +0 -27
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  50. package/dist-types/ts3.4/schemas/schemas_0.d.ts +158 -0
  51. package/package.json +5 -6
  52. package/dist-es/protocols/Aws_json1_0.js +0 -1030
  53. package/dist-types/protocols/Aws_json1_0.d.ts +0 -272
  54. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -365
@@ -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,12 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ??
30
+ new protocols_1.AwsJson1_0Protocol({
31
+ defaultNamespace: "com.amazonaws.b2bi",
32
+ serviceTarget: "B2BI",
33
+ awsQueryCompatible: false,
34
+ }),
28
35
  serviceId: config?.serviceId ?? "b2bi",
29
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
37
  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 B2biClient 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_CreateCapabilityCommand, se_CreateCapabilityCommand } from "../protocols/Aws_json1_0";
4
+ import { CreateCapability } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateCapabilityCommand 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("B2BI", "CreateCapability", {})
17
13
  .n("B2biClient", "CreateCapabilityCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateCapabilityCommand)
20
- .de(de_CreateCapabilityCommand)
14
+ .sc(CreateCapability)
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 { CreatePartnershipRequestFilterSensitiveLog, CreatePartnershipResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CreatePartnershipCommand, se_CreatePartnershipCommand } from "../protocols/Aws_json1_0";
4
+ import { CreatePartnership } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CreatePartnershipCommand 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("B2BI", "CreatePartnership", {})
18
13
  .n("B2biClient", "CreatePartnershipCommand")
19
- .f(CreatePartnershipRequestFilterSensitiveLog, CreatePartnershipResponseFilterSensitiveLog)
20
- .ser(se_CreatePartnershipCommand)
21
- .de(de_CreatePartnershipCommand)
14
+ .sc(CreatePartnership)
22
15
  .build() {
23
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 { CreateProfileRequestFilterSensitiveLog, CreateProfileResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CreateProfileCommand, se_CreateProfileCommand } from "../protocols/Aws_json1_0";
4
+ import { CreateProfile } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CreateProfileCommand 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("B2BI", "CreateProfile", {})
18
13
  .n("B2biClient", "CreateProfileCommand")
19
- .f(CreateProfileRequestFilterSensitiveLog, CreateProfileResponseFilterSensitiveLog)
20
- .ser(se_CreateProfileCommand)
21
- .de(de_CreateProfileCommand)
14
+ .sc(CreateProfile)
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_CreateStarterMappingTemplateCommand, se_CreateStarterMappingTemplateCommand, } from "../protocols/Aws_json1_0";
4
+ import { CreateStarterMappingTemplate } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateStarterMappingTemplateCommand 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("B2BI", "CreateStarterMappingTemplate", {})
17
13
  .n("B2biClient", "CreateStarterMappingTemplateCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateStarterMappingTemplateCommand)
20
- .de(de_CreateStarterMappingTemplateCommand)
14
+ .sc(CreateStarterMappingTemplate)
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_CreateTransformerCommand, se_CreateTransformerCommand } from "../protocols/Aws_json1_0";
4
+ import { CreateTransformer } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateTransformerCommand 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("B2BI", "CreateTransformer", {})
17
13
  .n("B2biClient", "CreateTransformerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateTransformerCommand)
20
- .de(de_CreateTransformerCommand)
14
+ .sc(CreateTransformer)
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_DeleteCapabilityCommand, se_DeleteCapabilityCommand } from "../protocols/Aws_json1_0";
4
+ import { DeleteCapability } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteCapabilityCommand 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("B2BI", "DeleteCapability", {})
17
13
  .n("B2biClient", "DeleteCapabilityCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteCapabilityCommand)
20
- .de(de_DeleteCapabilityCommand)
14
+ .sc(DeleteCapability)
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_DeletePartnershipCommand, se_DeletePartnershipCommand } from "../protocols/Aws_json1_0";
4
+ import { DeletePartnership } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeletePartnershipCommand 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("B2BI", "DeletePartnership", {})
17
13
  .n("B2biClient", "DeletePartnershipCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeletePartnershipCommand)
20
- .de(de_DeletePartnershipCommand)
14
+ .sc(DeletePartnership)
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_DeleteProfileCommand, se_DeleteProfileCommand } from "../protocols/Aws_json1_0";
4
+ import { DeleteProfile } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteProfileCommand 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("B2BI", "DeleteProfile", {})
17
13
  .n("B2biClient", "DeleteProfileCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteProfileCommand)
20
- .de(de_DeleteProfileCommand)
14
+ .sc(DeleteProfile)
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_DeleteTransformerCommand, se_DeleteTransformerCommand } from "../protocols/Aws_json1_0";
4
+ import { DeleteTransformer } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteTransformerCommand 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("B2BI", "DeleteTransformer", {})
17
13
  .n("B2biClient", "DeleteTransformerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteTransformerCommand)
20
- .de(de_DeleteTransformerCommand)
14
+ .sc(DeleteTransformer)
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_GenerateMappingCommand, se_GenerateMappingCommand } from "../protocols/Aws_json1_0";
4
+ import { GenerateMapping } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GenerateMappingCommand 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("B2BI", "GenerateMapping", {})
17
13
  .n("B2biClient", "GenerateMappingCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GenerateMappingCommand)
20
- .de(de_GenerateMappingCommand)
14
+ .sc(GenerateMapping)
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_GetCapabilityCommand, se_GetCapabilityCommand } from "../protocols/Aws_json1_0";
4
+ import { GetCapability } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetCapabilityCommand 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("B2BI", "GetCapability", {})
17
13
  .n("B2biClient", "GetCapabilityCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetCapabilityCommand)
20
- .de(de_GetCapabilityCommand)
14
+ .sc(GetCapability)
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 { GetPartnershipResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_GetPartnershipCommand, se_GetPartnershipCommand } from "../protocols/Aws_json1_0";
4
+ import { GetPartnership } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class GetPartnershipCommand 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("B2BI", "GetPartnership", {})
18
13
  .n("B2biClient", "GetPartnershipCommand")
19
- .f(void 0, GetPartnershipResponseFilterSensitiveLog)
20
- .ser(se_GetPartnershipCommand)
21
- .de(de_GetPartnershipCommand)
14
+ .sc(GetPartnership)
22
15
  .build() {
23
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 { GetProfileResponseFilterSensitiveLog } from "../models/models_0";
6
- import { de_GetProfileCommand, se_GetProfileCommand } from "../protocols/Aws_json1_0";
4
+ import { GetProfile } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class GetProfileCommand 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("B2BI", "GetProfile", {})
18
13
  .n("B2biClient", "GetProfileCommand")
19
- .f(void 0, GetProfileResponseFilterSensitiveLog)
20
- .ser(se_GetProfileCommand)
21
- .de(de_GetProfileCommand)
14
+ .sc(GetProfile)
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_GetTransformerCommand, se_GetTransformerCommand } from "../protocols/Aws_json1_0";
4
+ import { GetTransformer } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetTransformerCommand 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("B2BI", "GetTransformer", {})
17
13
  .n("B2biClient", "GetTransformerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetTransformerCommand)
20
- .de(de_GetTransformerCommand)
14
+ .sc(GetTransformer)
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_GetTransformerJobCommand, se_GetTransformerJobCommand } from "../protocols/Aws_json1_0";
4
+ import { GetTransformerJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetTransformerJobCommand 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("B2BI", "GetTransformerJob", {})
17
13
  .n("B2biClient", "GetTransformerJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetTransformerJobCommand)
20
- .de(de_GetTransformerJobCommand)
14
+ .sc(GetTransformerJob)
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_ListCapabilitiesCommand, se_ListCapabilitiesCommand } from "../protocols/Aws_json1_0";
4
+ import { ListCapabilities } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListCapabilitiesCommand 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("B2BI", "ListCapabilities", {})
17
13
  .n("B2biClient", "ListCapabilitiesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListCapabilitiesCommand)
20
- .de(de_ListCapabilitiesCommand)
14
+ .sc(ListCapabilities)
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_ListPartnershipsCommand, se_ListPartnershipsCommand } from "../protocols/Aws_json1_0";
4
+ import { ListPartnerships } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListPartnershipsCommand 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("B2BI", "ListPartnerships", {})
17
13
  .n("B2biClient", "ListPartnershipsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListPartnershipsCommand)
20
- .de(de_ListPartnershipsCommand)
14
+ .sc(ListPartnerships)
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_ListProfilesCommand, se_ListProfilesCommand } from "../protocols/Aws_json1_0";
4
+ import { ListProfiles } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListProfilesCommand 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("B2BI", "ListProfiles", {})
17
13
  .n("B2biClient", "ListProfilesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListProfilesCommand)
20
- .de(de_ListProfilesCommand)
14
+ .sc(ListProfiles)
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_json1_0";
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("B2BI", "ListTagsForResource", {})
17
13
  .n("B2biClient", "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_ListTransformersCommand, se_ListTransformersCommand } from "../protocols/Aws_json1_0";
4
+ import { ListTransformers } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTransformersCommand 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("B2BI", "ListTransformers", {})
17
13
  .n("B2biClient", "ListTransformersCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTransformersCommand)
20
- .de(de_ListTransformersCommand)
14
+ .sc(ListTransformers)
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_StartTransformerJobCommand, se_StartTransformerJobCommand } from "../protocols/Aws_json1_0";
4
+ import { StartTransformerJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StartTransformerJobCommand 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("B2BI", "StartTransformerJob", {})
17
13
  .n("B2biClient", "StartTransformerJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StartTransformerJobCommand)
20
- .de(de_StartTransformerJobCommand)
14
+ .sc(StartTransformerJob)
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_json1_0";
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("B2BI", "TagResource", {})
17
13
  .n("B2biClient", "TagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_TagResourceCommand)
20
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
21
15
  .build() {
22
16
  }