@aws-sdk/client-elastic-load-balancing-v2 3.36.1 → 3.40.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 (37) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist-cjs/commands/index.js +37 -0
  3. package/dist-cjs/endpoints.js +130 -24
  4. package/dist-cjs/index.js +5 -45
  5. package/dist-cjs/models/models_0.js +8 -3
  6. package/dist-cjs/pagination/index.js +7 -0
  7. package/dist-cjs/protocols/Aws_query.js +18 -0
  8. package/dist-cjs/runtimeConfig.browser.js +6 -3
  9. package/dist-cjs/runtimeConfig.js +5 -3
  10. package/dist-cjs/waiters/index.js +8 -0
  11. package/dist-es/commands/index.js +34 -0
  12. package/dist-es/endpoints.js +130 -24
  13. package/dist-es/index.js +5 -45
  14. package/dist-es/models/models_0.js +5 -0
  15. package/dist-es/pagination/index.js +4 -0
  16. package/dist-es/protocols/Aws_query.js +18 -0
  17. package/dist-es/runtimeConfig.browser.js +3 -2
  18. package/dist-es/runtimeConfig.js +3 -3
  19. package/dist-es/waiters/index.js +5 -0
  20. package/dist-types/ElasticLoadBalancingV2Client.d.ts +8 -0
  21. package/dist-types/commands/index.d.ts +34 -0
  22. package/dist-types/index.d.ts +5 -45
  23. package/dist-types/models/models_0.d.ts +41 -12
  24. package/dist-types/pagination/index.d.ts +4 -0
  25. package/dist-types/runtimeConfig.browser.d.ts +3 -3
  26. package/dist-types/runtimeConfig.d.ts +2 -0
  27. package/dist-types/runtimeConfig.native.d.ts +2 -0
  28. package/dist-types/ts3.4/ElasticLoadBalancingV2Client.d.ts +4 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +34 -0
  30. package/dist-types/ts3.4/index.d.ts +5 -45
  31. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -1
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  35. package/dist-types/ts3.4/waiters/index.d.ts +5 -0
  36. package/dist-types/waiters/index.d.ts +5 -0
  37. package/package.json +33 -33
package/CHANGELOG.md CHANGED
@@ -3,6 +3,48 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** populate variants in endpoints hashes ([#2974](https://github.com/aws/aws-sdk-js-v3/issues/2974)) ([0dd68ef](https://github.com/aws/aws-sdk-js-v3/commit/0dd68ef8b04ea0e96e43b05a9a10221e433fdf86))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.39.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.38.0...v3.39.0) (2021-10-29)
18
+
19
+ **Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing-v2
20
+
21
+
22
+
23
+
24
+
25
+ # [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
26
+
27
+
28
+ ### Features
29
+
30
+ * **client-documentation-generator:** rename package ([#2916](https://github.com/aws/aws-sdk-js-v3/issues/2916)) ([1a80bfd](https://github.com/aws/aws-sdk-js-v3/commit/1a80bfd2dfc583001ddb4a21b6432eaaad699aa7))
31
+ * **clients:** export folder from index.ts ([#2912](https://github.com/aws/aws-sdk-js-v3/issues/2912)) ([183b46d](https://github.com/aws/aws-sdk-js-v3/commit/183b46dde7f5613128038bf1c076f3c0b693203b))
32
+
33
+
34
+
35
+
36
+
37
+ # [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
38
+
39
+
40
+ ### Features
41
+
42
+ * **clients:** update clients as of 10/15/2021 ([#2902](https://github.com/aws/aws-sdk-js-v3/issues/2902)) ([2730b54](https://github.com/aws/aws-sdk-js-v3/commit/2730b5424377944a5a2ad5e1ad7d3ca4135dae1c))
43
+
44
+
45
+
46
+
47
+
6
48
  ## [3.36.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.0...v3.36.1) (2021-10-12)
7
49
 
8
50
 
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./AddListenerCertificatesCommand"), exports);
5
+ tslib_1.__exportStar(require("./AddTagsCommand"), exports);
6
+ tslib_1.__exportStar(require("./CreateListenerCommand"), exports);
7
+ tslib_1.__exportStar(require("./CreateLoadBalancerCommand"), exports);
8
+ tslib_1.__exportStar(require("./CreateRuleCommand"), exports);
9
+ tslib_1.__exportStar(require("./CreateTargetGroupCommand"), exports);
10
+ tslib_1.__exportStar(require("./DeleteListenerCommand"), exports);
11
+ tslib_1.__exportStar(require("./DeleteLoadBalancerCommand"), exports);
12
+ tslib_1.__exportStar(require("./DeleteRuleCommand"), exports);
13
+ tslib_1.__exportStar(require("./DeleteTargetGroupCommand"), exports);
14
+ tslib_1.__exportStar(require("./DeregisterTargetsCommand"), exports);
15
+ tslib_1.__exportStar(require("./DescribeAccountLimitsCommand"), exports);
16
+ tslib_1.__exportStar(require("./DescribeListenerCertificatesCommand"), exports);
17
+ tslib_1.__exportStar(require("./DescribeListenersCommand"), exports);
18
+ tslib_1.__exportStar(require("./DescribeLoadBalancerAttributesCommand"), exports);
19
+ tslib_1.__exportStar(require("./DescribeLoadBalancersCommand"), exports);
20
+ tslib_1.__exportStar(require("./DescribeRulesCommand"), exports);
21
+ tslib_1.__exportStar(require("./DescribeSSLPoliciesCommand"), exports);
22
+ tslib_1.__exportStar(require("./DescribeTagsCommand"), exports);
23
+ tslib_1.__exportStar(require("./DescribeTargetGroupAttributesCommand"), exports);
24
+ tslib_1.__exportStar(require("./DescribeTargetGroupsCommand"), exports);
25
+ tslib_1.__exportStar(require("./DescribeTargetHealthCommand"), exports);
26
+ tslib_1.__exportStar(require("./ModifyListenerCommand"), exports);
27
+ tslib_1.__exportStar(require("./ModifyLoadBalancerAttributesCommand"), exports);
28
+ tslib_1.__exportStar(require("./ModifyRuleCommand"), exports);
29
+ tslib_1.__exportStar(require("./ModifyTargetGroupAttributesCommand"), exports);
30
+ tslib_1.__exportStar(require("./ModifyTargetGroupCommand"), exports);
31
+ tslib_1.__exportStar(require("./RegisterTargetsCommand"), exports);
32
+ tslib_1.__exportStar(require("./RemoveListenerCertificatesCommand"), exports);
33
+ tslib_1.__exportStar(require("./RemoveTagsCommand"), exports);
34
+ tslib_1.__exportStar(require("./SetIpAddressTypeCommand"), exports);
35
+ tslib_1.__exportStar(require("./SetRulePrioritiesCommand"), exports);
36
+ tslib_1.__exportStar(require("./SetSecurityGroupsCommand"), exports);
37
+ tslib_1.__exportStar(require("./SetSubnetsCommand"), exports);
@@ -3,29 +3,77 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultRegionInfoProvider = void 0;
4
4
  const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const regionHash = {
6
- "fips-us-east-1": {
7
- hostname: "elasticloadbalancing-fips.us-east-1.amazonaws.com",
8
- signingRegion: "us-east-1",
6
+ "us-east-1": {
7
+ variants: [
8
+ {
9
+ hostname: "elasticloadbalancing.us-east-1.amazonaws.com",
10
+ tags: [],
11
+ },
12
+ {
13
+ hostname: "elasticloadbalancing-fips.us-east-1.amazonaws.com",
14
+ tags: ["fips"],
15
+ },
16
+ ],
9
17
  },
10
- "fips-us-east-2": {
11
- hostname: "elasticloadbalancing-fips.us-east-2.amazonaws.com",
12
- signingRegion: "us-east-2",
18
+ "us-east-2": {
19
+ variants: [
20
+ {
21
+ hostname: "elasticloadbalancing.us-east-2.amazonaws.com",
22
+ tags: [],
23
+ },
24
+ {
25
+ hostname: "elasticloadbalancing-fips.us-east-2.amazonaws.com",
26
+ tags: ["fips"],
27
+ },
28
+ ],
13
29
  },
14
- "fips-us-gov-east-1": {
15
- hostname: "elasticloadbalancing.us-gov-east-1.amazonaws.com",
16
- signingRegion: "us-gov-east-1",
30
+ "us-gov-east-1": {
31
+ variants: [
32
+ {
33
+ hostname: "elasticloadbalancing.us-gov-east-1.amazonaws.com",
34
+ tags: [],
35
+ },
36
+ {
37
+ hostname: "elasticloadbalancing.us-gov-east-1.amazonaws.com",
38
+ tags: ["fips"],
39
+ },
40
+ ],
17
41
  },
18
- "fips-us-gov-west-1": {
19
- hostname: "elasticloadbalancing.us-gov-west-1.amazonaws.com",
20
- signingRegion: "us-gov-west-1",
42
+ "us-gov-west-1": {
43
+ variants: [
44
+ {
45
+ hostname: "elasticloadbalancing.us-gov-west-1.amazonaws.com",
46
+ tags: [],
47
+ },
48
+ {
49
+ hostname: "elasticloadbalancing.us-gov-west-1.amazonaws.com",
50
+ tags: ["fips"],
51
+ },
52
+ ],
21
53
  },
22
- "fips-us-west-1": {
23
- hostname: "elasticloadbalancing-fips.us-west-1.amazonaws.com",
24
- signingRegion: "us-west-1",
54
+ "us-west-1": {
55
+ variants: [
56
+ {
57
+ hostname: "elasticloadbalancing.us-west-1.amazonaws.com",
58
+ tags: [],
59
+ },
60
+ {
61
+ hostname: "elasticloadbalancing-fips.us-west-1.amazonaws.com",
62
+ tags: ["fips"],
63
+ },
64
+ ],
25
65
  },
26
- "fips-us-west-2": {
27
- hostname: "elasticloadbalancing-fips.us-west-2.amazonaws.com",
28
- signingRegion: "us-west-2",
66
+ "us-west-2": {
67
+ variants: [
68
+ {
69
+ hostname: "elasticloadbalancing.us-west-2.amazonaws.com",
70
+ tags: [],
71
+ },
72
+ {
73
+ hostname: "elasticloadbalancing-fips.us-west-2.amazonaws.com",
74
+ tags: ["fips"],
75
+ },
76
+ ],
29
77
  },
30
78
  };
31
79
  const partitionHash = {
@@ -57,23 +105,81 @@ const partitionHash = {
57
105
  "us-west-1",
58
106
  "us-west-2",
59
107
  ],
60
- hostname: "elasticloadbalancing.{region}.amazonaws.com",
108
+ regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
109
+ variants: [
110
+ {
111
+ hostname: "elasticloadbalancing.{region}.amazonaws.com",
112
+ tags: [],
113
+ },
114
+ {
115
+ hostname: "elasticloadbalancing-fips.{region}.amazonaws.com",
116
+ tags: ["fips"],
117
+ },
118
+ {
119
+ hostname: "elasticloadbalancing-fips.{region}.api.aws",
120
+ tags: ["dualstack", "fips"],
121
+ },
122
+ {
123
+ hostname: "elasticloadbalancing.{region}.api.aws",
124
+ tags: ["dualstack"],
125
+ },
126
+ ],
61
127
  },
62
128
  "aws-cn": {
63
129
  regions: ["cn-north-1", "cn-northwest-1"],
64
- hostname: "elasticloadbalancing.{region}.amazonaws.com.cn",
130
+ regionRegex: "^cn\\-\\w+\\-\\d+$",
131
+ variants: [
132
+ {
133
+ hostname: "elasticloadbalancing.{region}.amazonaws.com.cn",
134
+ tags: [],
135
+ },
136
+ {
137
+ hostname: "elasticloadbalancing-fips.{region}.amazonaws.com.cn",
138
+ tags: ["fips"],
139
+ },
140
+ {
141
+ hostname: "elasticloadbalancing-fips.{region}.api.amazonwebservices.com.cn",
142
+ tags: ["dualstack", "fips"],
143
+ },
144
+ {
145
+ hostname: "elasticloadbalancing.{region}.api.amazonwebservices.com.cn",
146
+ tags: ["dualstack"],
147
+ },
148
+ ],
65
149
  },
66
150
  "aws-iso": {
67
- regions: ["us-iso-east-1"],
68
- hostname: "elasticloadbalancing.{region}.c2s.ic.gov",
151
+ regions: ["us-iso-east-1", "us-iso-west-1"],
152
+ regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
153
+ variants: [
154
+ {
155
+ hostname: "elasticloadbalancing.{region}.c2s.ic.gov",
156
+ tags: [],
157
+ },
158
+ ],
69
159
  },
70
160
  "aws-iso-b": {
71
161
  regions: ["us-isob-east-1"],
72
- hostname: "elasticloadbalancing.{region}.sc2s.sgov.gov",
162
+ regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
163
+ variants: [
164
+ {
165
+ hostname: "elasticloadbalancing.{region}.sc2s.sgov.gov",
166
+ tags: [],
167
+ },
168
+ ],
73
169
  },
74
170
  "aws-us-gov": {
75
171
  regions: ["fips-us-gov-east-1", "fips-us-gov-west-1", "us-gov-east-1", "us-gov-west-1"],
76
- hostname: "elasticloadbalancing.{region}.amazonaws.com",
172
+ regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
173
+ variants: [
174
+ {
175
+ hostname: "elasticloadbalancing.{region}.amazonaws.com",
176
+ tags: [],
177
+ },
178
+ {
179
+ hostname: "elasticloadbalancing.{region}.amazonaws.com",
180
+ tags: ["fips"],
181
+ },
182
+ ],
77
183
  },
78
184
  };
79
185
  const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, {
package/dist-cjs/index.js CHANGED
@@ -1,49 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./ElasticLoadBalancingV2Client"), exports);
5
4
  tslib_1.__exportStar(require("./ElasticLoadBalancingV2"), exports);
6
- tslib_1.__exportStar(require("./commands/AddListenerCertificatesCommand"), exports);
7
- tslib_1.__exportStar(require("./commands/AddTagsCommand"), exports);
8
- tslib_1.__exportStar(require("./commands/CreateListenerCommand"), exports);
9
- tslib_1.__exportStar(require("./commands/CreateLoadBalancerCommand"), exports);
10
- tslib_1.__exportStar(require("./commands/CreateRuleCommand"), exports);
11
- tslib_1.__exportStar(require("./commands/CreateTargetGroupCommand"), exports);
12
- tslib_1.__exportStar(require("./commands/DeleteListenerCommand"), exports);
13
- tslib_1.__exportStar(require("./commands/DeleteLoadBalancerCommand"), exports);
14
- tslib_1.__exportStar(require("./commands/DeleteRuleCommand"), exports);
15
- tslib_1.__exportStar(require("./commands/DeleteTargetGroupCommand"), exports);
16
- tslib_1.__exportStar(require("./commands/DeregisterTargetsCommand"), exports);
17
- tslib_1.__exportStar(require("./commands/DescribeAccountLimitsCommand"), exports);
18
- tslib_1.__exportStar(require("./commands/DescribeListenerCertificatesCommand"), exports);
19
- tslib_1.__exportStar(require("./commands/DescribeListenersCommand"), exports);
20
- tslib_1.__exportStar(require("./pagination/DescribeListenersPaginator"), exports);
21
- tslib_1.__exportStar(require("./commands/DescribeLoadBalancerAttributesCommand"), exports);
22
- tslib_1.__exportStar(require("./commands/DescribeLoadBalancersCommand"), exports);
23
- tslib_1.__exportStar(require("./pagination/DescribeLoadBalancersPaginator"), exports);
24
- tslib_1.__exportStar(require("./waiters/waitForLoadBalancerAvailable"), exports);
25
- tslib_1.__exportStar(require("./waiters/waitForLoadBalancerExists"), exports);
26
- tslib_1.__exportStar(require("./waiters/waitForLoadBalancersDeleted"), exports);
27
- tslib_1.__exportStar(require("./commands/DescribeRulesCommand"), exports);
28
- tslib_1.__exportStar(require("./commands/DescribeSSLPoliciesCommand"), exports);
29
- tslib_1.__exportStar(require("./commands/DescribeTagsCommand"), exports);
30
- tslib_1.__exportStar(require("./commands/DescribeTargetGroupAttributesCommand"), exports);
31
- tslib_1.__exportStar(require("./commands/DescribeTargetGroupsCommand"), exports);
32
- tslib_1.__exportStar(require("./pagination/DescribeTargetGroupsPaginator"), exports);
33
- tslib_1.__exportStar(require("./commands/DescribeTargetHealthCommand"), exports);
34
- tslib_1.__exportStar(require("./waiters/waitForTargetDeregistered"), exports);
35
- tslib_1.__exportStar(require("./waiters/waitForTargetInService"), exports);
36
- tslib_1.__exportStar(require("./commands/ModifyListenerCommand"), exports);
37
- tslib_1.__exportStar(require("./commands/ModifyLoadBalancerAttributesCommand"), exports);
38
- tslib_1.__exportStar(require("./commands/ModifyRuleCommand"), exports);
39
- tslib_1.__exportStar(require("./commands/ModifyTargetGroupCommand"), exports);
40
- tslib_1.__exportStar(require("./commands/ModifyTargetGroupAttributesCommand"), exports);
41
- tslib_1.__exportStar(require("./commands/RegisterTargetsCommand"), exports);
42
- tslib_1.__exportStar(require("./commands/RemoveListenerCertificatesCommand"), exports);
43
- tslib_1.__exportStar(require("./commands/RemoveTagsCommand"), exports);
44
- tslib_1.__exportStar(require("./commands/SetIpAddressTypeCommand"), exports);
45
- tslib_1.__exportStar(require("./commands/SetRulePrioritiesCommand"), exports);
46
- tslib_1.__exportStar(require("./commands/SetSecurityGroupsCommand"), exports);
47
- tslib_1.__exportStar(require("./commands/SetSubnetsCommand"), exports);
48
- tslib_1.__exportStar(require("./pagination/Interfaces"), exports);
49
- tslib_1.__exportStar(require("./models/index"), exports);
5
+ tslib_1.__exportStar(require("./ElasticLoadBalancingV2Client"), exports);
6
+ tslib_1.__exportStar(require("./commands"), exports);
7
+ tslib_1.__exportStar(require("./models"), exports);
8
+ tslib_1.__exportStar(require("./pagination"), exports);
9
+ tslib_1.__exportStar(require("./waiters"), exports);
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SubnetMapping = exports.LoadBalancerSchemeEnum = exports.IpAddressType = exports.UnsupportedProtocolException = exports.TooManyUniqueTargetGroupsPerLoadBalancerException = exports.TooManyTargetsException = exports.TooManyRegistrationsForTargetIdException = exports.TooManyListenersException = exports.TooManyActionsException = exports.TargetGroupAssociationLimitException = exports.SSLPolicyNotFoundException = exports.InvalidLoadBalancerActionException = exports.InvalidConfigurationRequestException = exports.IncompatibleProtocolsException = exports.DuplicateListenerException = exports.CreateListenerOutput = exports.Listener = exports.CreateListenerInput = exports.Cipher = exports.AvailabilityZoneNotSupportedException = exports.AvailabilityZone = exports.LoadBalancerAddress = exports.ALPNPolicyNotSupportedException = exports.AllocationIdNotFoundException = exports.TooManyTagsException = exports.TargetGroupNotFoundException = exports.RuleNotFoundException = exports.LoadBalancerNotFoundException = exports.DuplicateTagKeysException = exports.AddTagsOutput = exports.AddTagsInput = exports.Tag = exports.TooManyCertificatesException = exports.ListenerNotFoundException = exports.CertificateNotFoundException = exports.AddListenerCertificatesOutput = exports.AddListenerCertificatesInput = exports.Certificate = exports.Action = exports.ActionTypeEnum = exports.RedirectActionConfig = exports.RedirectActionStatusCodeEnum = exports.ForwardActionConfig = exports.TargetGroupStickinessConfig = exports.TargetGroupTuple = exports.FixedResponseActionConfig = exports.AuthenticateOidcActionConfig = exports.AuthenticateOidcActionConditionalBehaviorEnum = exports.AuthenticateCognitoActionConfig = exports.AuthenticateCognitoActionConditionalBehaviorEnum = void 0;
4
- exports.DescribeListenerCertificatesInput = exports.DescribeAccountLimitsOutput = exports.Limit = exports.DescribeAccountLimitsInput = exports.InvalidTargetException = exports.DeregisterTargetsOutput = exports.DeregisterTargetsInput = exports.TargetDescription = exports.DeleteTargetGroupOutput = exports.DeleteTargetGroupInput = exports.DeleteRuleOutput = exports.DeleteRuleInput = exports.DeleteLoadBalancerOutput = exports.DeleteLoadBalancerInput = exports.DeleteListenerOutput = exports.DeleteListenerInput = exports.DuplicateTargetGroupNameException = exports.CreateTargetGroupOutput = exports.TargetGroup = exports.CreateTargetGroupInput = exports.TargetTypeEnum = exports.Matcher = exports.TooManyTargetGroupsException = exports.TooManyRulesException = exports.PriorityInUseException = exports.CreateRuleOutput = exports.Rule = exports.CreateRuleInput = exports.RuleCondition = exports.SourceIpConditionConfig = exports.QueryStringConditionConfig = exports.QueryStringKeyValuePair = exports.PathPatternConditionConfig = exports.HttpRequestMethodConditionConfig = exports.HttpHeaderConditionConfig = exports.HostHeaderConditionConfig = exports.TooManyLoadBalancersException = exports.SubnetNotFoundException = exports.ResourceInUseException = exports.OperationNotPermittedException = exports.InvalidSubnetException = exports.InvalidSecurityGroupException = exports.InvalidSchemeException = exports.DuplicateLoadBalancerNameException = exports.CreateLoadBalancerOutput = exports.LoadBalancer = exports.LoadBalancerState = exports.LoadBalancerStateEnum = exports.CreateLoadBalancerInput = exports.LoadBalancerTypeEnum = void 0;
5
- exports.SetSecurityGroupsInput = exports.SetRulePrioritiesOutput = exports.SetRulePrioritiesInput = exports.RulePriorityPair = exports.SetIpAddressTypeOutput = exports.SetIpAddressTypeInput = exports.RemoveTagsOutput = exports.RemoveTagsInput = exports.RemoveListenerCertificatesOutput = exports.RemoveListenerCertificatesInput = exports.RegisterTargetsOutput = exports.RegisterTargetsInput = exports.ModifyTargetGroupAttributesOutput = exports.ModifyTargetGroupAttributesInput = exports.ModifyTargetGroupOutput = exports.ModifyTargetGroupInput = exports.ModifyRuleOutput = exports.ModifyRuleInput = exports.ModifyLoadBalancerAttributesOutput = exports.ModifyLoadBalancerAttributesInput = exports.ModifyListenerOutput = exports.ModifyListenerInput = exports.HealthUnavailableException = exports.DescribeTargetHealthOutput = exports.TargetHealthDescription = exports.TargetHealth = exports.TargetHealthStateEnum = exports.TargetHealthReasonEnum = exports.DescribeTargetHealthInput = exports.DescribeTargetGroupsOutput = exports.DescribeTargetGroupsInput = exports.DescribeTargetGroupAttributesOutput = exports.TargetGroupAttribute = exports.DescribeTargetGroupAttributesInput = exports.DescribeTagsOutput = exports.TagDescription = exports.DescribeTagsInput = exports.DescribeSSLPoliciesOutput = exports.SslPolicy = exports.DescribeSSLPoliciesInput = exports.DescribeRulesOutput = exports.DescribeRulesInput = exports.DescribeLoadBalancersOutput = exports.DescribeLoadBalancersInput = exports.DescribeLoadBalancerAttributesOutput = exports.LoadBalancerAttribute = exports.DescribeLoadBalancerAttributesInput = exports.DescribeListenersOutput = exports.DescribeListenersInput = exports.DescribeListenerCertificatesOutput = void 0;
6
- exports.SetSubnetsOutput = exports.SetSubnetsInput = exports.SetSecurityGroupsOutput = void 0;
4
+ exports.DescribeAccountLimitsOutput = exports.Limit = exports.DescribeAccountLimitsInput = exports.InvalidTargetException = exports.DeregisterTargetsOutput = exports.DeregisterTargetsInput = exports.TargetDescription = exports.DeleteTargetGroupOutput = exports.DeleteTargetGroupInput = exports.DeleteRuleOutput = exports.DeleteRuleInput = exports.DeleteLoadBalancerOutput = exports.DeleteLoadBalancerInput = exports.DeleteListenerOutput = exports.DeleteListenerInput = exports.DuplicateTargetGroupNameException = exports.CreateTargetGroupOutput = exports.TargetGroup = exports.CreateTargetGroupInput = exports.TargetTypeEnum = exports.Matcher = exports.TargetGroupIpAddressTypeEnum = exports.TooManyTargetGroupsException = exports.TooManyRulesException = exports.PriorityInUseException = exports.CreateRuleOutput = exports.Rule = exports.CreateRuleInput = exports.RuleCondition = exports.SourceIpConditionConfig = exports.QueryStringConditionConfig = exports.QueryStringKeyValuePair = exports.PathPatternConditionConfig = exports.HttpRequestMethodConditionConfig = exports.HttpHeaderConditionConfig = exports.HostHeaderConditionConfig = exports.TooManyLoadBalancersException = exports.SubnetNotFoundException = exports.ResourceInUseException = exports.OperationNotPermittedException = exports.InvalidSubnetException = exports.InvalidSecurityGroupException = exports.InvalidSchemeException = exports.DuplicateLoadBalancerNameException = exports.CreateLoadBalancerOutput = exports.LoadBalancer = exports.LoadBalancerState = exports.LoadBalancerStateEnum = exports.CreateLoadBalancerInput = exports.LoadBalancerTypeEnum = void 0;
5
+ exports.SetRulePrioritiesOutput = exports.SetRulePrioritiesInput = exports.RulePriorityPair = exports.SetIpAddressTypeOutput = exports.SetIpAddressTypeInput = exports.RemoveTagsOutput = exports.RemoveTagsInput = exports.RemoveListenerCertificatesOutput = exports.RemoveListenerCertificatesInput = exports.RegisterTargetsOutput = exports.RegisterTargetsInput = exports.ModifyTargetGroupAttributesOutput = exports.ModifyTargetGroupAttributesInput = exports.ModifyTargetGroupOutput = exports.ModifyTargetGroupInput = exports.ModifyRuleOutput = exports.ModifyRuleInput = exports.ModifyLoadBalancerAttributesOutput = exports.ModifyLoadBalancerAttributesInput = exports.ModifyListenerOutput = exports.ModifyListenerInput = exports.HealthUnavailableException = exports.DescribeTargetHealthOutput = exports.TargetHealthDescription = exports.TargetHealth = exports.TargetHealthStateEnum = exports.TargetHealthReasonEnum = exports.DescribeTargetHealthInput = exports.DescribeTargetGroupsOutput = exports.DescribeTargetGroupsInput = exports.DescribeTargetGroupAttributesOutput = exports.TargetGroupAttribute = exports.DescribeTargetGroupAttributesInput = exports.DescribeTagsOutput = exports.TagDescription = exports.DescribeTagsInput = exports.DescribeSSLPoliciesOutput = exports.SslPolicy = exports.DescribeSSLPoliciesInput = exports.DescribeRulesOutput = exports.DescribeRulesInput = exports.DescribeLoadBalancersOutput = exports.DescribeLoadBalancersInput = exports.DescribeLoadBalancerAttributesOutput = exports.LoadBalancerAttribute = exports.DescribeLoadBalancerAttributesInput = exports.DescribeListenersOutput = exports.DescribeListenersInput = exports.DescribeListenerCertificatesOutput = exports.DescribeListenerCertificatesInput = void 0;
6
+ exports.SetSubnetsOutput = exports.SetSubnetsInput = exports.SetSecurityGroupsOutput = exports.SetSecurityGroupsInput = void 0;
7
7
  var AuthenticateCognitoActionConditionalBehaviorEnum;
8
8
  (function (AuthenticateCognitoActionConditionalBehaviorEnum) {
9
9
  AuthenticateCognitoActionConditionalBehaviorEnum["ALLOW"] = "allow";
@@ -472,6 +472,11 @@ var TooManyTargetGroupsException;
472
472
  ...obj,
473
473
  });
474
474
  })(TooManyTargetGroupsException = exports.TooManyTargetGroupsException || (exports.TooManyTargetGroupsException = {}));
475
+ var TargetGroupIpAddressTypeEnum;
476
+ (function (TargetGroupIpAddressTypeEnum) {
477
+ TargetGroupIpAddressTypeEnum["IPV4"] = "ipv4";
478
+ TargetGroupIpAddressTypeEnum["IPV6"] = "ipv6";
479
+ })(TargetGroupIpAddressTypeEnum = exports.TargetGroupIpAddressTypeEnum || (exports.TargetGroupIpAddressTypeEnum = {}));
475
480
  var Matcher;
476
481
  (function (Matcher) {
477
482
  Matcher.filterSensitiveLog = (obj) => ({
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./DescribeListenersPaginator"), exports);
5
+ tslib_1.__exportStar(require("./DescribeLoadBalancersPaginator"), exports);
6
+ tslib_1.__exportStar(require("./DescribeTargetGroupsPaginator"), exports);
7
+ tslib_1.__exportStar(require("./Interfaces"), exports);
@@ -3785,6 +3785,9 @@ const serializeAws_queryCreateTargetGroupInput = (input, context) => {
3785
3785
  entries[loc] = value;
3786
3786
  });
3787
3787
  }
3788
+ if (input.IpAddressType !== undefined && input.IpAddressType !== null) {
3789
+ entries["IpAddressType"] = input.IpAddressType;
3790
+ }
3788
3791
  return entries;
3789
3792
  };
3790
3793
  const serializeAws_queryDeleteListenerInput = (input, context) => {
@@ -3938,6 +3941,9 @@ const serializeAws_queryDescribeSSLPoliciesInput = (input, context) => {
3938
3941
  if (input.PageSize !== undefined && input.PageSize !== null) {
3939
3942
  entries["PageSize"] = input.PageSize;
3940
3943
  }
3944
+ if (input.LoadBalancerType !== undefined && input.LoadBalancerType !== null) {
3945
+ entries["LoadBalancerType"] = input.LoadBalancerType;
3946
+ }
3941
3947
  return entries;
3942
3948
  };
3943
3949
  const serializeAws_queryDescribeTagsInput = (input, context) => {
@@ -6145,6 +6151,7 @@ const deserializeAws_querySslPolicy = (output, context) => {
6145
6151
  SslProtocols: undefined,
6146
6152
  Ciphers: undefined,
6147
6153
  Name: undefined,
6154
+ SupportedLoadBalancerTypes: undefined,
6148
6155
  };
6149
6156
  if (output.SslProtocols === "") {
6150
6157
  contents.SslProtocols = [];
@@ -6161,6 +6168,13 @@ const deserializeAws_querySslPolicy = (output, context) => {
6161
6168
  if (output["Name"] !== undefined) {
6162
6169
  contents.Name = smithy_client_1.expectString(output["Name"]);
6163
6170
  }
6171
+ if (output.SupportedLoadBalancerTypes === "") {
6172
+ contents.SupportedLoadBalancerTypes = [];
6173
+ }
6174
+ if (output["SupportedLoadBalancerTypes"] !== undefined &&
6175
+ output["SupportedLoadBalancerTypes"]["member"] !== undefined) {
6176
+ contents.SupportedLoadBalancerTypes = deserializeAws_queryListOfString(smithy_client_1.getArrayIfSingleItem(output["SupportedLoadBalancerTypes"]["member"]), context);
6177
+ }
6164
6178
  return contents;
6165
6179
  };
6166
6180
  const deserializeAws_querySSLPolicyNotFoundException = (output, context) => {
@@ -6276,6 +6290,7 @@ const deserializeAws_queryTargetGroup = (output, context) => {
6276
6290
  LoadBalancerArns: undefined,
6277
6291
  TargetType: undefined,
6278
6292
  ProtocolVersion: undefined,
6293
+ IpAddressType: undefined,
6279
6294
  };
6280
6295
  if (output["TargetGroupArn"] !== undefined) {
6281
6296
  contents.TargetGroupArn = smithy_client_1.expectString(output["TargetGroupArn"]);
@@ -6331,6 +6346,9 @@ const deserializeAws_queryTargetGroup = (output, context) => {
6331
6346
  if (output["ProtocolVersion"] !== undefined) {
6332
6347
  contents.ProtocolVersion = smithy_client_1.expectString(output["ProtocolVersion"]);
6333
6348
  }
6349
+ if (output["IpAddressType"] !== undefined) {
6350
+ contents.IpAddressType = smithy_client_1.expectString(output["IpAddressType"]);
6351
+ }
6334
6352
  return contents;
6335
6353
  };
6336
6354
  const deserializeAws_queryTargetGroupAssociationLimitException = (output, context) => {
@@ -4,6 +4,7 @@ exports.getRuntimeConfig = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
6
  const sha256_browser_1 = require("@aws-crypto/sha256-browser");
7
+ const config_resolver_1 = require("@aws-sdk/config-resolver");
7
8
  const fetch_http_handler_1 = require("@aws-sdk/fetch-http-handler");
8
9
  const invalid_dependency_1 = require("@aws-sdk/invalid-dependency");
9
10
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
@@ -13,7 +14,7 @@ const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
13
14
  const util_utf8_browser_1 = require("@aws-sdk/util-utf8-browser");
14
15
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
15
16
  const getRuntimeConfig = (config) => {
16
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
17
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
17
18
  const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
18
19
  return {
19
20
  ...clientSharedValues,
@@ -30,8 +31,10 @@ const getRuntimeConfig = (config) => {
30
31
  retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (() => Promise.resolve(middleware_retry_1.DEFAULT_RETRY_MODE)),
31
32
  sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : sha256_browser_1.Sha256,
32
33
  streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : fetch_http_handler_1.streamCollector,
33
- utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : util_utf8_browser_1.fromUtf8,
34
- utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : util_utf8_browser_1.toUtf8,
34
+ useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
35
+ useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)),
36
+ utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_browser_1.fromUtf8,
37
+ utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_browser_1.toUtf8,
35
38
  };
36
39
  };
37
40
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -17,7 +17,7 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
17
17
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
18
18
  const smithy_client_1 = require("@aws-sdk/smithy-client");
19
19
  const getRuntimeConfig = (config) => {
20
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
20
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
21
21
  smithy_client_1.emitWarningIfUnsupportedVersion(process.version);
22
22
  const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
23
23
  return {
@@ -35,8 +35,10 @@ const getRuntimeConfig = (config) => {
35
35
  retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig(middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS),
36
36
  sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : hash_node_1.Hash.bind(null, "sha256"),
37
37
  streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : node_http_handler_1.streamCollector,
38
- utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : util_utf8_node_1.fromUtf8,
39
- utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : util_utf8_node_1.toUtf8,
38
+ useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
39
+ useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
40
+ utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_node_1.fromUtf8,
41
+ utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_node_1.toUtf8,
40
42
  };
41
43
  };
42
44
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("./waitForLoadBalancerAvailable"), exports);
5
+ tslib_1.__exportStar(require("./waitForLoadBalancerExists"), exports);
6
+ tslib_1.__exportStar(require("./waitForLoadBalancersDeleted"), exports);
7
+ tslib_1.__exportStar(require("./waitForTargetDeregistered"), exports);
8
+ tslib_1.__exportStar(require("./waitForTargetInService"), exports);
@@ -0,0 +1,34 @@
1
+ export * from "./AddListenerCertificatesCommand";
2
+ export * from "./AddTagsCommand";
3
+ export * from "./CreateListenerCommand";
4
+ export * from "./CreateLoadBalancerCommand";
5
+ export * from "./CreateRuleCommand";
6
+ export * from "./CreateTargetGroupCommand";
7
+ export * from "./DeleteListenerCommand";
8
+ export * from "./DeleteLoadBalancerCommand";
9
+ export * from "./DeleteRuleCommand";
10
+ export * from "./DeleteTargetGroupCommand";
11
+ export * from "./DeregisterTargetsCommand";
12
+ export * from "./DescribeAccountLimitsCommand";
13
+ export * from "./DescribeListenerCertificatesCommand";
14
+ export * from "./DescribeListenersCommand";
15
+ export * from "./DescribeLoadBalancerAttributesCommand";
16
+ export * from "./DescribeLoadBalancersCommand";
17
+ export * from "./DescribeRulesCommand";
18
+ export * from "./DescribeSSLPoliciesCommand";
19
+ export * from "./DescribeTagsCommand";
20
+ export * from "./DescribeTargetGroupAttributesCommand";
21
+ export * from "./DescribeTargetGroupsCommand";
22
+ export * from "./DescribeTargetHealthCommand";
23
+ export * from "./ModifyListenerCommand";
24
+ export * from "./ModifyLoadBalancerAttributesCommand";
25
+ export * from "./ModifyRuleCommand";
26
+ export * from "./ModifyTargetGroupAttributesCommand";
27
+ export * from "./ModifyTargetGroupCommand";
28
+ export * from "./RegisterTargetsCommand";
29
+ export * from "./RemoveListenerCertificatesCommand";
30
+ export * from "./RemoveTagsCommand";
31
+ export * from "./SetIpAddressTypeCommand";
32
+ export * from "./SetRulePrioritiesCommand";
33
+ export * from "./SetSecurityGroupsCommand";
34
+ export * from "./SetSubnetsCommand";