@aws-sdk/client-elastic-load-balancing 3.929.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 (50) hide show
  1. package/dist-cjs/index.js +1027 -3010
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/ElasticLoadBalancingClient.js +2 -0
  4. package/dist-es/commands/AddTagsCommand.js +3 -9
  5. package/dist-es/commands/ApplySecurityGroupsToLoadBalancerCommand.js +3 -9
  6. package/dist-es/commands/AttachLoadBalancerToSubnetsCommand.js +3 -9
  7. package/dist-es/commands/ConfigureHealthCheckCommand.js +3 -9
  8. package/dist-es/commands/CreateAppCookieStickinessPolicyCommand.js +3 -9
  9. package/dist-es/commands/CreateLBCookieStickinessPolicyCommand.js +3 -9
  10. package/dist-es/commands/CreateLoadBalancerCommand.js +3 -9
  11. package/dist-es/commands/CreateLoadBalancerListenersCommand.js +3 -9
  12. package/dist-es/commands/CreateLoadBalancerPolicyCommand.js +3 -9
  13. package/dist-es/commands/DeleteLoadBalancerCommand.js +3 -9
  14. package/dist-es/commands/DeleteLoadBalancerListenersCommand.js +3 -9
  15. package/dist-es/commands/DeleteLoadBalancerPolicyCommand.js +3 -9
  16. package/dist-es/commands/DeregisterInstancesFromLoadBalancerCommand.js +3 -9
  17. package/dist-es/commands/DescribeAccountLimitsCommand.js +3 -9
  18. package/dist-es/commands/DescribeInstanceHealthCommand.js +3 -9
  19. package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +3 -9
  20. package/dist-es/commands/DescribeLoadBalancerPoliciesCommand.js +3 -9
  21. package/dist-es/commands/DescribeLoadBalancerPolicyTypesCommand.js +3 -9
  22. package/dist-es/commands/DescribeLoadBalancersCommand.js +3 -9
  23. package/dist-es/commands/DescribeTagsCommand.js +3 -9
  24. package/dist-es/commands/DetachLoadBalancerFromSubnetsCommand.js +3 -9
  25. package/dist-es/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +3 -9
  26. package/dist-es/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +3 -9
  27. package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +3 -9
  28. package/dist-es/commands/RegisterInstancesWithLoadBalancerCommand.js +3 -9
  29. package/dist-es/commands/RemoveTagsCommand.js +3 -9
  30. package/dist-es/commands/SetLoadBalancerListenerSSLCertificateCommand.js +3 -9
  31. package/dist-es/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +3 -9
  32. package/dist-es/commands/SetLoadBalancerPoliciesOfListenerCommand.js +3 -9
  33. package/dist-es/runtimeConfig.shared.js +7 -0
  34. package/dist-es/schemas/schemas_0.js +1002 -0
  35. package/dist-types/ElasticLoadBalancingClient.d.ts +10 -1
  36. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  37. package/dist-types/runtimeConfig.d.ts +1 -0
  38. package/dist-types/runtimeConfig.native.d.ts +1 -0
  39. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  40. package/dist-types/schemas/schemas_0.d.ts +163 -0
  41. package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +4 -0
  42. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  43. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  44. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  45. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +168 -0
  47. package/package.json +34 -34
  48. package/dist-es/protocols/Aws_query.js +0 -2838
  49. package/dist-types/protocols/Aws_query.d.ts +0 -263
  50. package/dist-types/ts3.4/protocols/Aws_query.d.ts +0 -353
@@ -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.AwsQueryProtocol({
31
+ defaultNamespace: "com.amazonaws.elasticloadbalancing",
32
+ xmlNamespace: "http://elasticloadbalancing.amazonaws.com/doc/2012-06-01/",
33
+ version: "2012-06-01",
34
+ }),
28
35
  serviceId: config?.serviceId ?? "Elastic Load Balancing",
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 ElasticLoadBalancingClient 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_AddTagsCommand, se_AddTagsCommand } from "../protocols/Aws_query";
4
+ import { AddTags } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AddTagsCommand 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("ElasticLoadBalancing_v7", "AddTags", {})
17
13
  .n("ElasticLoadBalancingClient", "AddTagsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AddTagsCommand)
20
- .de(de_AddTagsCommand)
14
+ .sc(AddTags)
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_ApplySecurityGroupsToLoadBalancerCommand, se_ApplySecurityGroupsToLoadBalancerCommand, } from "../protocols/Aws_query";
4
+ import { ApplySecurityGroupsToLoadBalancer } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ApplySecurityGroupsToLoadBalancerCommand 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("ElasticLoadBalancing_v7", "ApplySecurityGroupsToLoadBalancer", {})
17
13
  .n("ElasticLoadBalancingClient", "ApplySecurityGroupsToLoadBalancerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ApplySecurityGroupsToLoadBalancerCommand)
20
- .de(de_ApplySecurityGroupsToLoadBalancerCommand)
14
+ .sc(ApplySecurityGroupsToLoadBalancer)
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_AttachLoadBalancerToSubnetsCommand, se_AttachLoadBalancerToSubnetsCommand } from "../protocols/Aws_query";
4
+ import { AttachLoadBalancerToSubnets } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AttachLoadBalancerToSubnetsCommand 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("ElasticLoadBalancing_v7", "AttachLoadBalancerToSubnets", {})
17
13
  .n("ElasticLoadBalancingClient", "AttachLoadBalancerToSubnetsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AttachLoadBalancerToSubnetsCommand)
20
- .de(de_AttachLoadBalancerToSubnetsCommand)
14
+ .sc(AttachLoadBalancerToSubnets)
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_ConfigureHealthCheckCommand, se_ConfigureHealthCheckCommand } from "../protocols/Aws_query";
4
+ import { ConfigureHealthCheck } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ConfigureHealthCheckCommand 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("ElasticLoadBalancing_v7", "ConfigureHealthCheck", {})
17
13
  .n("ElasticLoadBalancingClient", "ConfigureHealthCheckCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ConfigureHealthCheckCommand)
20
- .de(de_ConfigureHealthCheckCommand)
14
+ .sc(ConfigureHealthCheck)
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_CreateAppCookieStickinessPolicyCommand, se_CreateAppCookieStickinessPolicyCommand, } from "../protocols/Aws_query";
4
+ import { CreateAppCookieStickinessPolicy } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateAppCookieStickinessPolicyCommand 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("ElasticLoadBalancing_v7", "CreateAppCookieStickinessPolicy", {})
17
13
  .n("ElasticLoadBalancingClient", "CreateAppCookieStickinessPolicyCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateAppCookieStickinessPolicyCommand)
20
- .de(de_CreateAppCookieStickinessPolicyCommand)
14
+ .sc(CreateAppCookieStickinessPolicy)
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_CreateLBCookieStickinessPolicyCommand, se_CreateLBCookieStickinessPolicyCommand, } from "../protocols/Aws_query";
4
+ import { CreateLBCookieStickinessPolicy } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateLBCookieStickinessPolicyCommand 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("ElasticLoadBalancing_v7", "CreateLBCookieStickinessPolicy", {})
17
13
  .n("ElasticLoadBalancingClient", "CreateLBCookieStickinessPolicyCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateLBCookieStickinessPolicyCommand)
20
- .de(de_CreateLBCookieStickinessPolicyCommand)
14
+ .sc(CreateLBCookieStickinessPolicy)
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_CreateLoadBalancerCommand, se_CreateLoadBalancerCommand } from "../protocols/Aws_query";
4
+ import { CreateLoadBalancer } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateLoadBalancerCommand 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("ElasticLoadBalancing_v7", "CreateLoadBalancer", {})
17
13
  .n("ElasticLoadBalancingClient", "CreateLoadBalancerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateLoadBalancerCommand)
20
- .de(de_CreateLoadBalancerCommand)
14
+ .sc(CreateLoadBalancer)
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_CreateLoadBalancerListenersCommand, se_CreateLoadBalancerListenersCommand } from "../protocols/Aws_query";
4
+ import { CreateLoadBalancerListeners } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateLoadBalancerListenersCommand 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("ElasticLoadBalancing_v7", "CreateLoadBalancerListeners", {})
17
13
  .n("ElasticLoadBalancingClient", "CreateLoadBalancerListenersCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateLoadBalancerListenersCommand)
20
- .de(de_CreateLoadBalancerListenersCommand)
14
+ .sc(CreateLoadBalancerListeners)
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_CreateLoadBalancerPolicyCommand, se_CreateLoadBalancerPolicyCommand } from "../protocols/Aws_query";
4
+ import { CreateLoadBalancerPolicy } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateLoadBalancerPolicyCommand 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("ElasticLoadBalancing_v7", "CreateLoadBalancerPolicy", {})
17
13
  .n("ElasticLoadBalancingClient", "CreateLoadBalancerPolicyCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateLoadBalancerPolicyCommand)
20
- .de(de_CreateLoadBalancerPolicyCommand)
14
+ .sc(CreateLoadBalancerPolicy)
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_DeleteLoadBalancerCommand, se_DeleteLoadBalancerCommand } from "../protocols/Aws_query";
4
+ import { DeleteLoadBalancer } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteLoadBalancerCommand 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("ElasticLoadBalancing_v7", "DeleteLoadBalancer", {})
17
13
  .n("ElasticLoadBalancingClient", "DeleteLoadBalancerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteLoadBalancerCommand)
20
- .de(de_DeleteLoadBalancerCommand)
14
+ .sc(DeleteLoadBalancer)
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_DeleteLoadBalancerListenersCommand, se_DeleteLoadBalancerListenersCommand } from "../protocols/Aws_query";
4
+ import { DeleteLoadBalancerListeners } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteLoadBalancerListenersCommand 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("ElasticLoadBalancing_v7", "DeleteLoadBalancerListeners", {})
17
13
  .n("ElasticLoadBalancingClient", "DeleteLoadBalancerListenersCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteLoadBalancerListenersCommand)
20
- .de(de_DeleteLoadBalancerListenersCommand)
14
+ .sc(DeleteLoadBalancerListeners)
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_DeleteLoadBalancerPolicyCommand, se_DeleteLoadBalancerPolicyCommand } from "../protocols/Aws_query";
4
+ import { DeleteLoadBalancerPolicy } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteLoadBalancerPolicyCommand 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("ElasticLoadBalancing_v7", "DeleteLoadBalancerPolicy", {})
17
13
  .n("ElasticLoadBalancingClient", "DeleteLoadBalancerPolicyCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteLoadBalancerPolicyCommand)
20
- .de(de_DeleteLoadBalancerPolicyCommand)
14
+ .sc(DeleteLoadBalancerPolicy)
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_DeregisterInstancesFromLoadBalancerCommand, se_DeregisterInstancesFromLoadBalancerCommand, } from "../protocols/Aws_query";
4
+ import { DeregisterInstancesFromLoadBalancer } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeregisterInstancesFromLoadBalancerCommand 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("ElasticLoadBalancing_v7", "DeregisterInstancesFromLoadBalancer", {})
17
13
  .n("ElasticLoadBalancingClient", "DeregisterInstancesFromLoadBalancerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeregisterInstancesFromLoadBalancerCommand)
20
- .de(de_DeregisterInstancesFromLoadBalancerCommand)
14
+ .sc(DeregisterInstancesFromLoadBalancer)
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_DescribeAccountLimitsCommand, se_DescribeAccountLimitsCommand } from "../protocols/Aws_query";
4
+ import { DescribeAccountLimits } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeAccountLimitsCommand 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("ElasticLoadBalancing_v7", "DescribeAccountLimits", {})
17
13
  .n("ElasticLoadBalancingClient", "DescribeAccountLimitsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeAccountLimitsCommand)
20
- .de(de_DescribeAccountLimitsCommand)
14
+ .sc(DescribeAccountLimits)
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_DescribeInstanceHealthCommand, se_DescribeInstanceHealthCommand } from "../protocols/Aws_query";
4
+ import { DescribeInstanceHealth } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeInstanceHealthCommand 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("ElasticLoadBalancing_v7", "DescribeInstanceHealth", {})
17
13
  .n("ElasticLoadBalancingClient", "DescribeInstanceHealthCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeInstanceHealthCommand)
20
- .de(de_DescribeInstanceHealthCommand)
14
+ .sc(DescribeInstanceHealth)
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_DescribeLoadBalancerAttributesCommand, se_DescribeLoadBalancerAttributesCommand, } from "../protocols/Aws_query";
4
+ import { DescribeLoadBalancerAttributes } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeLoadBalancerAttributesCommand 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("ElasticLoadBalancing_v7", "DescribeLoadBalancerAttributes", {})
17
13
  .n("ElasticLoadBalancingClient", "DescribeLoadBalancerAttributesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeLoadBalancerAttributesCommand)
20
- .de(de_DescribeLoadBalancerAttributesCommand)
14
+ .sc(DescribeLoadBalancerAttributes)
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_DescribeLoadBalancerPoliciesCommand, se_DescribeLoadBalancerPoliciesCommand } from "../protocols/Aws_query";
4
+ import { DescribeLoadBalancerPolicies } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeLoadBalancerPoliciesCommand 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("ElasticLoadBalancing_v7", "DescribeLoadBalancerPolicies", {})
17
13
  .n("ElasticLoadBalancingClient", "DescribeLoadBalancerPoliciesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeLoadBalancerPoliciesCommand)
20
- .de(de_DescribeLoadBalancerPoliciesCommand)
14
+ .sc(DescribeLoadBalancerPolicies)
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_DescribeLoadBalancerPolicyTypesCommand, se_DescribeLoadBalancerPolicyTypesCommand, } from "../protocols/Aws_query";
4
+ import { DescribeLoadBalancerPolicyTypes } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeLoadBalancerPolicyTypesCommand 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("ElasticLoadBalancing_v7", "DescribeLoadBalancerPolicyTypes", {})
17
13
  .n("ElasticLoadBalancingClient", "DescribeLoadBalancerPolicyTypesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeLoadBalancerPolicyTypesCommand)
20
- .de(de_DescribeLoadBalancerPolicyTypesCommand)
14
+ .sc(DescribeLoadBalancerPolicyTypes)
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_DescribeLoadBalancersCommand, se_DescribeLoadBalancersCommand } from "../protocols/Aws_query";
4
+ import { DescribeLoadBalancers } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeLoadBalancersCommand 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("ElasticLoadBalancing_v7", "DescribeLoadBalancers", {})
17
13
  .n("ElasticLoadBalancingClient", "DescribeLoadBalancersCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeLoadBalancersCommand)
20
- .de(de_DescribeLoadBalancersCommand)
14
+ .sc(DescribeLoadBalancers)
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_DescribeTagsCommand, se_DescribeTagsCommand } from "../protocols/Aws_query";
4
+ import { DescribeTags } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeTagsCommand 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("ElasticLoadBalancing_v7", "DescribeTags", {})
17
13
  .n("ElasticLoadBalancingClient", "DescribeTagsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeTagsCommand)
20
- .de(de_DescribeTagsCommand)
14
+ .sc(DescribeTags)
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_DetachLoadBalancerFromSubnetsCommand, se_DetachLoadBalancerFromSubnetsCommand, } from "../protocols/Aws_query";
4
+ import { DetachLoadBalancerFromSubnets } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DetachLoadBalancerFromSubnetsCommand 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("ElasticLoadBalancing_v7", "DetachLoadBalancerFromSubnets", {})
17
13
  .n("ElasticLoadBalancingClient", "DetachLoadBalancerFromSubnetsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DetachLoadBalancerFromSubnetsCommand)
20
- .de(de_DetachLoadBalancerFromSubnetsCommand)
14
+ .sc(DetachLoadBalancerFromSubnets)
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_DisableAvailabilityZonesForLoadBalancerCommand, se_DisableAvailabilityZonesForLoadBalancerCommand, } from "../protocols/Aws_query";
4
+ import { DisableAvailabilityZonesForLoadBalancer } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DisableAvailabilityZonesForLoadBalancerCommand 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("ElasticLoadBalancing_v7", "DisableAvailabilityZonesForLoadBalancer", {})
17
13
  .n("ElasticLoadBalancingClient", "DisableAvailabilityZonesForLoadBalancerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DisableAvailabilityZonesForLoadBalancerCommand)
20
- .de(de_DisableAvailabilityZonesForLoadBalancerCommand)
14
+ .sc(DisableAvailabilityZonesForLoadBalancer)
21
15
  .build() {
22
16
  }