@aws-sdk/client-elastic-load-balancing 3.414.0 → 3.421.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 (60) hide show
  1. package/README.md +7 -7
  2. package/dist-cjs/commands/AddTagsCommand.js +5 -0
  3. package/dist-cjs/commands/ApplySecurityGroupsToLoadBalancerCommand.js +5 -0
  4. package/dist-cjs/commands/AttachLoadBalancerToSubnetsCommand.js +5 -0
  5. package/dist-cjs/commands/ConfigureHealthCheckCommand.js +5 -0
  6. package/dist-cjs/commands/CreateAppCookieStickinessPolicyCommand.js +5 -0
  7. package/dist-cjs/commands/CreateLBCookieStickinessPolicyCommand.js +5 -0
  8. package/dist-cjs/commands/CreateLoadBalancerCommand.js +5 -0
  9. package/dist-cjs/commands/CreateLoadBalancerListenersCommand.js +5 -0
  10. package/dist-cjs/commands/CreateLoadBalancerPolicyCommand.js +5 -0
  11. package/dist-cjs/commands/DeleteLoadBalancerCommand.js +5 -0
  12. package/dist-cjs/commands/DeleteLoadBalancerListenersCommand.js +5 -0
  13. package/dist-cjs/commands/DeleteLoadBalancerPolicyCommand.js +5 -0
  14. package/dist-cjs/commands/DeregisterInstancesFromLoadBalancerCommand.js +5 -0
  15. package/dist-cjs/commands/DescribeAccountLimitsCommand.js +5 -0
  16. package/dist-cjs/commands/DescribeInstanceHealthCommand.js +5 -0
  17. package/dist-cjs/commands/DescribeLoadBalancerAttributesCommand.js +5 -0
  18. package/dist-cjs/commands/DescribeLoadBalancerPoliciesCommand.js +5 -0
  19. package/dist-cjs/commands/DescribeLoadBalancerPolicyTypesCommand.js +5 -0
  20. package/dist-cjs/commands/DescribeLoadBalancersCommand.js +5 -0
  21. package/dist-cjs/commands/DescribeTagsCommand.js +5 -0
  22. package/dist-cjs/commands/DetachLoadBalancerFromSubnetsCommand.js +5 -0
  23. package/dist-cjs/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +5 -0
  24. package/dist-cjs/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +5 -0
  25. package/dist-cjs/commands/ModifyLoadBalancerAttributesCommand.js +5 -0
  26. package/dist-cjs/commands/RegisterInstancesWithLoadBalancerCommand.js +5 -0
  27. package/dist-cjs/commands/RemoveTagsCommand.js +5 -0
  28. package/dist-cjs/commands/SetLoadBalancerListenerSSLCertificateCommand.js +5 -0
  29. package/dist-cjs/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +5 -0
  30. package/dist-cjs/commands/SetLoadBalancerPoliciesOfListenerCommand.js +5 -0
  31. package/dist-es/commands/AddTagsCommand.js +5 -0
  32. package/dist-es/commands/ApplySecurityGroupsToLoadBalancerCommand.js +5 -0
  33. package/dist-es/commands/AttachLoadBalancerToSubnetsCommand.js +5 -0
  34. package/dist-es/commands/ConfigureHealthCheckCommand.js +5 -0
  35. package/dist-es/commands/CreateAppCookieStickinessPolicyCommand.js +5 -0
  36. package/dist-es/commands/CreateLBCookieStickinessPolicyCommand.js +5 -0
  37. package/dist-es/commands/CreateLoadBalancerCommand.js +5 -0
  38. package/dist-es/commands/CreateLoadBalancerListenersCommand.js +5 -0
  39. package/dist-es/commands/CreateLoadBalancerPolicyCommand.js +5 -0
  40. package/dist-es/commands/DeleteLoadBalancerCommand.js +5 -0
  41. package/dist-es/commands/DeleteLoadBalancerListenersCommand.js +5 -0
  42. package/dist-es/commands/DeleteLoadBalancerPolicyCommand.js +5 -0
  43. package/dist-es/commands/DeregisterInstancesFromLoadBalancerCommand.js +5 -0
  44. package/dist-es/commands/DescribeAccountLimitsCommand.js +5 -0
  45. package/dist-es/commands/DescribeInstanceHealthCommand.js +5 -0
  46. package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +5 -0
  47. package/dist-es/commands/DescribeLoadBalancerPoliciesCommand.js +5 -0
  48. package/dist-es/commands/DescribeLoadBalancerPolicyTypesCommand.js +5 -0
  49. package/dist-es/commands/DescribeLoadBalancersCommand.js +5 -0
  50. package/dist-es/commands/DescribeTagsCommand.js +5 -0
  51. package/dist-es/commands/DetachLoadBalancerFromSubnetsCommand.js +5 -0
  52. package/dist-es/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +5 -0
  53. package/dist-es/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +5 -0
  54. package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +5 -0
  55. package/dist-es/commands/RegisterInstancesWithLoadBalancerCommand.js +5 -0
  56. package/dist-es/commands/RemoveTagsCommand.js +5 -0
  57. package/dist-es/commands/SetLoadBalancerListenerSSLCertificateCommand.js +5 -0
  58. package/dist-es/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +5 -0
  59. package/dist-es/commands/SetLoadBalancerPoliciesOfListenerCommand.js +5 -0
  60. package/package.json +32 -32
package/README.md CHANGED
@@ -43,16 +43,16 @@ using your favorite package manager:
43
43
 
44
44
  The AWS SDK is modulized by clients and commands.
45
45
  To send a request, you only need to import the `ElasticLoadBalancingClient` and
46
- the commands you need, for example `AddTagsCommand`:
46
+ the commands you need, for example `DescribeAccountLimitsCommand`:
47
47
 
48
48
  ```js
49
49
  // ES5 example
50
- const { ElasticLoadBalancingClient, AddTagsCommand } = require("@aws-sdk/client-elastic-load-balancing");
50
+ const { ElasticLoadBalancingClient, DescribeAccountLimitsCommand } = require("@aws-sdk/client-elastic-load-balancing");
51
51
  ```
52
52
 
53
53
  ```ts
54
54
  // ES6+ example
55
- import { ElasticLoadBalancingClient, AddTagsCommand } from "@aws-sdk/client-elastic-load-balancing";
55
+ import { ElasticLoadBalancingClient, DescribeAccountLimitsCommand } from "@aws-sdk/client-elastic-load-balancing";
56
56
  ```
57
57
 
58
58
  ### Usage
@@ -71,7 +71,7 @@ const client = new ElasticLoadBalancingClient({ region: "REGION" });
71
71
  const params = {
72
72
  /** input parameters */
73
73
  };
74
- const command = new AddTagsCommand(params);
74
+ const command = new DescribeAccountLimitsCommand(params);
75
75
  ```
76
76
 
77
77
  #### Async/await
@@ -150,7 +150,7 @@ const client = new AWS.ElasticLoadBalancing({ region: "REGION" });
150
150
 
151
151
  // async/await.
152
152
  try {
153
- const data = await client.addTags(params);
153
+ const data = await client.describeAccountLimits(params);
154
154
  // process data.
155
155
  } catch (error) {
156
156
  // error handling.
@@ -158,7 +158,7 @@ try {
158
158
 
159
159
  // Promises.
160
160
  client
161
- .addTags(params)
161
+ .describeAccountLimits(params)
162
162
  .then((data) => {
163
163
  // process data.
164
164
  })
@@ -167,7 +167,7 @@ client
167
167
  });
168
168
 
169
169
  // callbacks.
170
- client.addTags(params, (err, data) => {
170
+ client.describeAccountLimits(params, (err, data) => {
171
171
  // process err and data.
172
172
  });
173
173
  ```
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class AddTagsCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class AddTagsCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "AddTags",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class ApplySecurityGroupsToLoadBalancerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class ApplySecurityGroupsToLoadBalancerCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "ApplySecurityGroupsToLoadBalancer",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class AttachLoadBalancerToSubnetsCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class AttachLoadBalancerToSubnetsCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "AttachLoadBalancerToSubnets",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class ConfigureHealthCheckCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class ConfigureHealthCheckCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "ConfigureHealthCheck",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class CreateAppCookieStickinessPolicyCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class CreateAppCookieStickinessPolicyCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "CreateAppCookieStickinessPolicy",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class CreateLBCookieStickinessPolicyCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class CreateLBCookieStickinessPolicyCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "CreateLBCookieStickinessPolicy",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class CreateLoadBalancerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class CreateLoadBalancerCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "CreateLoadBalancer",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class CreateLoadBalancerListenersCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class CreateLoadBalancerListenersCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "CreateLoadBalancerListeners",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class CreateLoadBalancerPolicyCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class CreateLoadBalancerPolicyCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "CreateLoadBalancerPolicy",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DeleteLoadBalancerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DeleteLoadBalancerCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DeleteLoadBalancer",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DeleteLoadBalancerListenersCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DeleteLoadBalancerListenersCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DeleteLoadBalancerListeners",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DeleteLoadBalancerPolicyCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DeleteLoadBalancerPolicyCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DeleteLoadBalancerPolicy",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DeregisterInstancesFromLoadBalancerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DeregisterInstancesFromLoadBalancerCommand extends smithy_client_1.Command
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DeregisterInstancesFromLoadBalancer",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DescribeAccountLimitsCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DescribeAccountLimitsCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DescribeAccountLimits",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DescribeInstanceHealthCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DescribeInstanceHealthCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DescribeInstanceHealth",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DescribeLoadBalancerAttributesCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DescribeLoadBalancerAttributesCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DescribeLoadBalancerAttributes",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DescribeLoadBalancerPoliciesCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DescribeLoadBalancerPoliciesCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DescribeLoadBalancerPolicies",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DescribeLoadBalancerPolicyTypesCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DescribeLoadBalancerPolicyTypesCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DescribeLoadBalancerPolicyTypes",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DescribeLoadBalancersCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DescribeLoadBalancersCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DescribeLoadBalancers",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DescribeTagsCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DescribeTagsCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DescribeTags",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DetachLoadBalancerFromSubnetsCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DetachLoadBalancerFromSubnetsCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DetachLoadBalancerFromSubnets",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class DisableAvailabilityZonesForLoadBalancerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class DisableAvailabilityZonesForLoadBalancerCommand extends smithy_client_1.Com
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "DisableAvailabilityZonesForLoadBalancer",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class EnableAvailabilityZonesForLoadBalancerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class EnableAvailabilityZonesForLoadBalancerCommand extends smithy_client_1.Comm
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "EnableAvailabilityZonesForLoadBalancer",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class ModifyLoadBalancerAttributesCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class ModifyLoadBalancerAttributesCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "ModifyLoadBalancerAttributes",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class RegisterInstancesWithLoadBalancerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class RegisterInstancesWithLoadBalancerCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "RegisterInstancesWithLoadBalancer",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class RemoveTagsCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class RemoveTagsCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "RemoveTags",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class SetLoadBalancerListenerSSLCertificateCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class SetLoadBalancerListenerSSLCertificateCommand extends smithy_client_1.Comma
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "SetLoadBalancerListenerSSLCertificate",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class SetLoadBalancerPoliciesForBackendServerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class SetLoadBalancerPoliciesForBackendServerCommand extends smithy_client_1.Com
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "SetLoadBalancerPoliciesForBackendServer",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
@@ -5,6 +5,7 @@ const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@smithy/middleware-serde");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
+ const types_1 = require("@smithy/types");
8
9
  const Aws_query_1 = require("../protocols/Aws_query");
9
10
  class SetLoadBalancerPoliciesOfListenerCommand extends smithy_client_1.Command {
10
11
  static getEndpointParameterInstructions() {
@@ -32,6 +33,10 @@ class SetLoadBalancerPoliciesOfListenerCommand extends smithy_client_1.Command {
32
33
  commandName,
33
34
  inputFilterSensitiveLog: (_) => _,
34
35
  outputFilterSensitiveLog: (_) => _,
36
+ [types_1.SMITHY_CONTEXT_KEY]: {
37
+ service: "ElasticLoadBalancing_v7",
38
+ operation: "SetLoadBalancerPoliciesOfListener",
39
+ },
35
40
  };
36
41
  const { requestHandler } = configuration;
37
42
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);