@aws-sdk/client-elastic-load-balancing 3.186.0 → 3.190.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 (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-cjs/protocols/Aws_query.js +8 -4
  3. package/dist-es/ElasticLoadBalancing.js +118 -125
  4. package/dist-es/ElasticLoadBalancingClient.js +22 -28
  5. package/dist-es/commands/AddTagsCommand.js +21 -28
  6. package/dist-es/commands/ApplySecurityGroupsToLoadBalancerCommand.js +21 -28
  7. package/dist-es/commands/AttachLoadBalancerToSubnetsCommand.js +21 -28
  8. package/dist-es/commands/ConfigureHealthCheckCommand.js +21 -28
  9. package/dist-es/commands/CreateAppCookieStickinessPolicyCommand.js +21 -28
  10. package/dist-es/commands/CreateLBCookieStickinessPolicyCommand.js +21 -28
  11. package/dist-es/commands/CreateLoadBalancerCommand.js +21 -28
  12. package/dist-es/commands/CreateLoadBalancerListenersCommand.js +21 -28
  13. package/dist-es/commands/CreateLoadBalancerPolicyCommand.js +21 -28
  14. package/dist-es/commands/DeleteLoadBalancerCommand.js +21 -28
  15. package/dist-es/commands/DeleteLoadBalancerListenersCommand.js +21 -28
  16. package/dist-es/commands/DeleteLoadBalancerPolicyCommand.js +21 -28
  17. package/dist-es/commands/DeregisterInstancesFromLoadBalancerCommand.js +21 -28
  18. package/dist-es/commands/DescribeAccountLimitsCommand.js +21 -28
  19. package/dist-es/commands/DescribeInstanceHealthCommand.js +21 -28
  20. package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +21 -28
  21. package/dist-es/commands/DescribeLoadBalancerPoliciesCommand.js +21 -28
  22. package/dist-es/commands/DescribeLoadBalancerPolicyTypesCommand.js +21 -28
  23. package/dist-es/commands/DescribeLoadBalancersCommand.js +21 -28
  24. package/dist-es/commands/DescribeTagsCommand.js +21 -28
  25. package/dist-es/commands/DetachLoadBalancerFromSubnetsCommand.js +21 -28
  26. package/dist-es/commands/DisableAvailabilityZonesForLoadBalancerCommand.js +21 -28
  27. package/dist-es/commands/EnableAvailabilityZonesForLoadBalancerCommand.js +21 -28
  28. package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +21 -28
  29. package/dist-es/commands/RegisterInstancesWithLoadBalancerCommand.js +21 -28
  30. package/dist-es/commands/RemoveTagsCommand.js +21 -28
  31. package/dist-es/commands/SetLoadBalancerListenerSSLCertificateCommand.js +21 -28
  32. package/dist-es/commands/SetLoadBalancerPoliciesForBackendServerCommand.js +21 -28
  33. package/dist-es/commands/SetLoadBalancerPoliciesOfListenerCommand.js +21 -28
  34. package/dist-es/endpoints.js +8 -8
  35. package/dist-es/models/ElasticLoadBalancingServiceException.js +5 -10
  36. package/dist-es/models/models_0.js +516 -349
  37. package/dist-es/pagination/DescribeLoadBalancersPaginator.js +24 -67
  38. package/dist-es/protocols/Aws_query.js +2200 -2926
  39. package/dist-es/runtimeConfig.browser.js +26 -12
  40. package/dist-es/runtimeConfig.js +30 -12
  41. package/dist-es/runtimeConfig.native.js +8 -5
  42. package/dist-es/runtimeConfig.shared.js +8 -11
  43. package/dist-es/waiters/waitForAnyInstanceInService.js +33 -64
  44. package/package.json +35 -36
@@ -1,6 +1,5 @@
1
- import { __assign, __awaiter, __generator } from "tslib";
2
1
  import { getRegionInfo } from "@aws-sdk/config-resolver";
3
- var regionHash = {
2
+ const regionHash = {
4
3
  "us-east-1": {
5
4
  variants: [
6
5
  {
@@ -50,7 +49,7 @@ var regionHash = {
50
49
  ],
51
50
  },
52
51
  };
53
- var partitionHash = {
52
+ const partitionHash = {
54
53
  aws: {
55
54
  regions: [
56
55
  "af-south-1",
@@ -174,8 +173,9 @@ var partitionHash = {
174
173
  ],
175
174
  },
176
175
  };
177
- export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
178
- return __generator(this, function (_a) {
179
- return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "elasticloadbalancing", regionHash: regionHash, partitionHash: partitionHash }))];
180
- });
181
- }); };
176
+ export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
177
+ ...options,
178
+ signingService: "elasticloadbalancing",
179
+ regionHash,
180
+ partitionHash,
181
+ });
@@ -1,12 +1,7 @@
1
- import { __extends } from "tslib";
2
1
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
- var ElasticLoadBalancingServiceException = (function (_super) {
4
- __extends(ElasticLoadBalancingServiceException, _super);
5
- function ElasticLoadBalancingServiceException(options) {
6
- var _this = _super.call(this, options) || this;
7
- Object.setPrototypeOf(_this, ElasticLoadBalancingServiceException.prototype);
8
- return _this;
2
+ export class ElasticLoadBalancingServiceException extends __ServiceException {
3
+ constructor(options) {
4
+ super(options);
5
+ Object.setPrototypeOf(this, ElasticLoadBalancingServiceException.prototype);
9
6
  }
10
- return ElasticLoadBalancingServiceException;
11
- }(__ServiceException));
12
- export { ElasticLoadBalancingServiceException };
7
+ }