@aws-sdk/client-elastic-load-balancing 3.100.0 → 3.109.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.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.107.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.106.0...v3.107.0) (2022-06-08)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **clients:** handle empty xml tags ([#3623](https://github.com/aws/aws-sdk-js-v3/issues/3623)) ([543a0ce](https://github.com/aws/aws-sdk-js-v3/commit/543a0ce13bebc6e8a5f4cc8e1bd4de67692d4034))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-elastic-load-balancing
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class ElasticLoadBalancingClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -2590,7 +2590,7 @@ const deserializeAws_queryAddAvailabilityZonesOutput = (output, context) => {
|
|
|
2590
2590
|
if (output.AvailabilityZones === "") {
|
|
2591
2591
|
contents.AvailabilityZones = [];
|
|
2592
2592
|
}
|
|
2593
|
-
if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
2593
|
+
else if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
2594
2594
|
contents.AvailabilityZones = deserializeAws_queryAvailabilityZones((0, smithy_client_1.getArrayIfSingleItem)(output["AvailabilityZones"]["member"]), context);
|
|
2595
2595
|
}
|
|
2596
2596
|
return contents;
|
|
@@ -2652,7 +2652,7 @@ const deserializeAws_queryApplySecurityGroupsToLoadBalancerOutput = (output, con
|
|
|
2652
2652
|
if (output.SecurityGroups === "") {
|
|
2653
2653
|
contents.SecurityGroups = [];
|
|
2654
2654
|
}
|
|
2655
|
-
if (output["SecurityGroups"] !== undefined && output["SecurityGroups"]["member"] !== undefined) {
|
|
2655
|
+
else if (output["SecurityGroups"] !== undefined && output["SecurityGroups"]["member"] !== undefined) {
|
|
2656
2656
|
contents.SecurityGroups = deserializeAws_querySecurityGroups((0, smithy_client_1.getArrayIfSingleItem)(output["SecurityGroups"]["member"]), context);
|
|
2657
2657
|
}
|
|
2658
2658
|
return contents;
|
|
@@ -2664,7 +2664,7 @@ const deserializeAws_queryAttachLoadBalancerToSubnetsOutput = (output, context)
|
|
|
2664
2664
|
if (output.Subnets === "") {
|
|
2665
2665
|
contents.Subnets = [];
|
|
2666
2666
|
}
|
|
2667
|
-
if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
2667
|
+
else if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
2668
2668
|
contents.Subnets = deserializeAws_querySubnets((0, smithy_client_1.getArrayIfSingleItem)(output["Subnets"]["member"]), context);
|
|
2669
2669
|
}
|
|
2670
2670
|
return contents;
|
|
@@ -2690,7 +2690,7 @@ const deserializeAws_queryBackendServerDescription = (output, context) => {
|
|
|
2690
2690
|
if (output.PolicyNames === "") {
|
|
2691
2691
|
contents.PolicyNames = [];
|
|
2692
2692
|
}
|
|
2693
|
-
if (output["PolicyNames"] !== undefined && output["PolicyNames"]["member"] !== undefined) {
|
|
2693
|
+
else if (output["PolicyNames"] !== undefined && output["PolicyNames"]["member"] !== undefined) {
|
|
2694
2694
|
contents.PolicyNames = deserializeAws_queryPolicyNames((0, smithy_client_1.getArrayIfSingleItem)(output["PolicyNames"]["member"]), context);
|
|
2695
2695
|
}
|
|
2696
2696
|
return contents;
|
|
@@ -2807,7 +2807,7 @@ const deserializeAws_queryDeregisterEndPointsOutput = (output, context) => {
|
|
|
2807
2807
|
if (output.Instances === "") {
|
|
2808
2808
|
contents.Instances = [];
|
|
2809
2809
|
}
|
|
2810
|
-
if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
2810
|
+
else if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
2811
2811
|
contents.Instances = deserializeAws_queryInstances((0, smithy_client_1.getArrayIfSingleItem)(output["Instances"]["member"]), context);
|
|
2812
2812
|
}
|
|
2813
2813
|
return contents;
|
|
@@ -2820,7 +2820,8 @@ const deserializeAws_queryDescribeAccessPointsOutput = (output, context) => {
|
|
|
2820
2820
|
if (output.LoadBalancerDescriptions === "") {
|
|
2821
2821
|
contents.LoadBalancerDescriptions = [];
|
|
2822
2822
|
}
|
|
2823
|
-
if (output["LoadBalancerDescriptions"] !== undefined &&
|
|
2823
|
+
else if (output["LoadBalancerDescriptions"] !== undefined &&
|
|
2824
|
+
output["LoadBalancerDescriptions"]["member"] !== undefined) {
|
|
2824
2825
|
contents.LoadBalancerDescriptions = deserializeAws_queryLoadBalancerDescriptions((0, smithy_client_1.getArrayIfSingleItem)(output["LoadBalancerDescriptions"]["member"]), context);
|
|
2825
2826
|
}
|
|
2826
2827
|
if (output["NextMarker"] !== undefined) {
|
|
@@ -2836,7 +2837,7 @@ const deserializeAws_queryDescribeAccountLimitsOutput = (output, context) => {
|
|
|
2836
2837
|
if (output.Limits === "") {
|
|
2837
2838
|
contents.Limits = [];
|
|
2838
2839
|
}
|
|
2839
|
-
if (output["Limits"] !== undefined && output["Limits"]["member"] !== undefined) {
|
|
2840
|
+
else if (output["Limits"] !== undefined && output["Limits"]["member"] !== undefined) {
|
|
2840
2841
|
contents.Limits = deserializeAws_queryLimits((0, smithy_client_1.getArrayIfSingleItem)(output["Limits"]["member"]), context);
|
|
2841
2842
|
}
|
|
2842
2843
|
if (output["NextMarker"] !== undefined) {
|
|
@@ -2851,7 +2852,7 @@ const deserializeAws_queryDescribeEndPointStateOutput = (output, context) => {
|
|
|
2851
2852
|
if (output.InstanceStates === "") {
|
|
2852
2853
|
contents.InstanceStates = [];
|
|
2853
2854
|
}
|
|
2854
|
-
if (output["InstanceStates"] !== undefined && output["InstanceStates"]["member"] !== undefined) {
|
|
2855
|
+
else if (output["InstanceStates"] !== undefined && output["InstanceStates"]["member"] !== undefined) {
|
|
2855
2856
|
contents.InstanceStates = deserializeAws_queryInstanceStates((0, smithy_client_1.getArrayIfSingleItem)(output["InstanceStates"]["member"]), context);
|
|
2856
2857
|
}
|
|
2857
2858
|
return contents;
|
|
@@ -2872,7 +2873,7 @@ const deserializeAws_queryDescribeLoadBalancerPoliciesOutput = (output, context)
|
|
|
2872
2873
|
if (output.PolicyDescriptions === "") {
|
|
2873
2874
|
contents.PolicyDescriptions = [];
|
|
2874
2875
|
}
|
|
2875
|
-
if (output["PolicyDescriptions"] !== undefined && output["PolicyDescriptions"]["member"] !== undefined) {
|
|
2876
|
+
else if (output["PolicyDescriptions"] !== undefined && output["PolicyDescriptions"]["member"] !== undefined) {
|
|
2876
2877
|
contents.PolicyDescriptions = deserializeAws_queryPolicyDescriptions((0, smithy_client_1.getArrayIfSingleItem)(output["PolicyDescriptions"]["member"]), context);
|
|
2877
2878
|
}
|
|
2878
2879
|
return contents;
|
|
@@ -2884,7 +2885,8 @@ const deserializeAws_queryDescribeLoadBalancerPolicyTypesOutput = (output, conte
|
|
|
2884
2885
|
if (output.PolicyTypeDescriptions === "") {
|
|
2885
2886
|
contents.PolicyTypeDescriptions = [];
|
|
2886
2887
|
}
|
|
2887
|
-
if (output["PolicyTypeDescriptions"] !== undefined &&
|
|
2888
|
+
else if (output["PolicyTypeDescriptions"] !== undefined &&
|
|
2889
|
+
output["PolicyTypeDescriptions"]["member"] !== undefined) {
|
|
2888
2890
|
contents.PolicyTypeDescriptions = deserializeAws_queryPolicyTypeDescriptions((0, smithy_client_1.getArrayIfSingleItem)(output["PolicyTypeDescriptions"]["member"]), context);
|
|
2889
2891
|
}
|
|
2890
2892
|
return contents;
|
|
@@ -2896,7 +2898,7 @@ const deserializeAws_queryDescribeTagsOutput = (output, context) => {
|
|
|
2896
2898
|
if (output.TagDescriptions === "") {
|
|
2897
2899
|
contents.TagDescriptions = [];
|
|
2898
2900
|
}
|
|
2899
|
-
if (output["TagDescriptions"] !== undefined && output["TagDescriptions"]["member"] !== undefined) {
|
|
2901
|
+
else if (output["TagDescriptions"] !== undefined && output["TagDescriptions"]["member"] !== undefined) {
|
|
2900
2902
|
contents.TagDescriptions = deserializeAws_queryTagDescriptions((0, smithy_client_1.getArrayIfSingleItem)(output["TagDescriptions"]["member"]), context);
|
|
2901
2903
|
}
|
|
2902
2904
|
return contents;
|
|
@@ -2908,7 +2910,7 @@ const deserializeAws_queryDetachLoadBalancerFromSubnetsOutput = (output, context
|
|
|
2908
2910
|
if (output.Subnets === "") {
|
|
2909
2911
|
contents.Subnets = [];
|
|
2910
2912
|
}
|
|
2911
|
-
if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
2913
|
+
else if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
2912
2914
|
contents.Subnets = deserializeAws_querySubnets((0, smithy_client_1.getArrayIfSingleItem)(output["Subnets"]["member"]), context);
|
|
2913
2915
|
}
|
|
2914
2916
|
return contents;
|
|
@@ -3151,7 +3153,7 @@ const deserializeAws_queryListenerDescription = (output, context) => {
|
|
|
3151
3153
|
if (output.PolicyNames === "") {
|
|
3152
3154
|
contents.PolicyNames = [];
|
|
3153
3155
|
}
|
|
3154
|
-
if (output["PolicyNames"] !== undefined && output["PolicyNames"]["member"] !== undefined) {
|
|
3156
|
+
else if (output["PolicyNames"] !== undefined && output["PolicyNames"]["member"] !== undefined) {
|
|
3155
3157
|
contents.PolicyNames = deserializeAws_queryPolicyNames((0, smithy_client_1.getArrayIfSingleItem)(output["PolicyNames"]["member"]), context);
|
|
3156
3158
|
}
|
|
3157
3159
|
return contents;
|
|
@@ -3207,7 +3209,7 @@ const deserializeAws_queryLoadBalancerAttributes = (output, context) => {
|
|
|
3207
3209
|
if (output.AdditionalAttributes === "") {
|
|
3208
3210
|
contents.AdditionalAttributes = [];
|
|
3209
3211
|
}
|
|
3210
|
-
if (output["AdditionalAttributes"] !== undefined && output["AdditionalAttributes"]["member"] !== undefined) {
|
|
3212
|
+
else if (output["AdditionalAttributes"] !== undefined && output["AdditionalAttributes"]["member"] !== undefined) {
|
|
3211
3213
|
contents.AdditionalAttributes = deserializeAws_queryAdditionalAttributes((0, smithy_client_1.getArrayIfSingleItem)(output["AdditionalAttributes"]["member"]), context);
|
|
3212
3214
|
}
|
|
3213
3215
|
return contents;
|
|
@@ -3246,7 +3248,7 @@ const deserializeAws_queryLoadBalancerDescription = (output, context) => {
|
|
|
3246
3248
|
if (output.ListenerDescriptions === "") {
|
|
3247
3249
|
contents.ListenerDescriptions = [];
|
|
3248
3250
|
}
|
|
3249
|
-
if (output["ListenerDescriptions"] !== undefined && output["ListenerDescriptions"]["member"] !== undefined) {
|
|
3251
|
+
else if (output["ListenerDescriptions"] !== undefined && output["ListenerDescriptions"]["member"] !== undefined) {
|
|
3250
3252
|
contents.ListenerDescriptions = deserializeAws_queryListenerDescriptions((0, smithy_client_1.getArrayIfSingleItem)(output["ListenerDescriptions"]["member"]), context);
|
|
3251
3253
|
}
|
|
3252
3254
|
if (output["Policies"] !== undefined) {
|
|
@@ -3255,20 +3257,20 @@ const deserializeAws_queryLoadBalancerDescription = (output, context) => {
|
|
|
3255
3257
|
if (output.BackendServerDescriptions === "") {
|
|
3256
3258
|
contents.BackendServerDescriptions = [];
|
|
3257
3259
|
}
|
|
3258
|
-
if (output["BackendServerDescriptions"] !== undefined &&
|
|
3260
|
+
else if (output["BackendServerDescriptions"] !== undefined &&
|
|
3259
3261
|
output["BackendServerDescriptions"]["member"] !== undefined) {
|
|
3260
3262
|
contents.BackendServerDescriptions = deserializeAws_queryBackendServerDescriptions((0, smithy_client_1.getArrayIfSingleItem)(output["BackendServerDescriptions"]["member"]), context);
|
|
3261
3263
|
}
|
|
3262
3264
|
if (output.AvailabilityZones === "") {
|
|
3263
3265
|
contents.AvailabilityZones = [];
|
|
3264
3266
|
}
|
|
3265
|
-
if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
3267
|
+
else if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
3266
3268
|
contents.AvailabilityZones = deserializeAws_queryAvailabilityZones((0, smithy_client_1.getArrayIfSingleItem)(output["AvailabilityZones"]["member"]), context);
|
|
3267
3269
|
}
|
|
3268
3270
|
if (output.Subnets === "") {
|
|
3269
3271
|
contents.Subnets = [];
|
|
3270
3272
|
}
|
|
3271
|
-
if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
3273
|
+
else if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
3272
3274
|
contents.Subnets = deserializeAws_querySubnets((0, smithy_client_1.getArrayIfSingleItem)(output["Subnets"]["member"]), context);
|
|
3273
3275
|
}
|
|
3274
3276
|
if (output["VPCId"] !== undefined) {
|
|
@@ -3277,7 +3279,7 @@ const deserializeAws_queryLoadBalancerDescription = (output, context) => {
|
|
|
3277
3279
|
if (output.Instances === "") {
|
|
3278
3280
|
contents.Instances = [];
|
|
3279
3281
|
}
|
|
3280
|
-
if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
3282
|
+
else if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
3281
3283
|
contents.Instances = deserializeAws_queryInstances((0, smithy_client_1.getArrayIfSingleItem)(output["Instances"]["member"]), context);
|
|
3282
3284
|
}
|
|
3283
3285
|
if (output["HealthCheck"] !== undefined) {
|
|
@@ -3289,7 +3291,7 @@ const deserializeAws_queryLoadBalancerDescription = (output, context) => {
|
|
|
3289
3291
|
if (output.SecurityGroups === "") {
|
|
3290
3292
|
contents.SecurityGroups = [];
|
|
3291
3293
|
}
|
|
3292
|
-
if (output["SecurityGroups"] !== undefined && output["SecurityGroups"]["member"] !== undefined) {
|
|
3294
|
+
else if (output["SecurityGroups"] !== undefined && output["SecurityGroups"]["member"] !== undefined) {
|
|
3293
3295
|
contents.SecurityGroups = deserializeAws_querySecurityGroups((0, smithy_client_1.getArrayIfSingleItem)(output["SecurityGroups"]["member"]), context);
|
|
3294
3296
|
}
|
|
3295
3297
|
if (output["CreatedTime"] !== undefined) {
|
|
@@ -3341,21 +3343,21 @@ const deserializeAws_queryPolicies = (output, context) => {
|
|
|
3341
3343
|
if (output.AppCookieStickinessPolicies === "") {
|
|
3342
3344
|
contents.AppCookieStickinessPolicies = [];
|
|
3343
3345
|
}
|
|
3344
|
-
if (output["AppCookieStickinessPolicies"] !== undefined &&
|
|
3346
|
+
else if (output["AppCookieStickinessPolicies"] !== undefined &&
|
|
3345
3347
|
output["AppCookieStickinessPolicies"]["member"] !== undefined) {
|
|
3346
3348
|
contents.AppCookieStickinessPolicies = deserializeAws_queryAppCookieStickinessPolicies((0, smithy_client_1.getArrayIfSingleItem)(output["AppCookieStickinessPolicies"]["member"]), context);
|
|
3347
3349
|
}
|
|
3348
3350
|
if (output.LBCookieStickinessPolicies === "") {
|
|
3349
3351
|
contents.LBCookieStickinessPolicies = [];
|
|
3350
3352
|
}
|
|
3351
|
-
if (output["LBCookieStickinessPolicies"] !== undefined &&
|
|
3353
|
+
else if (output["LBCookieStickinessPolicies"] !== undefined &&
|
|
3352
3354
|
output["LBCookieStickinessPolicies"]["member"] !== undefined) {
|
|
3353
3355
|
contents.LBCookieStickinessPolicies = deserializeAws_queryLBCookieStickinessPolicies((0, smithy_client_1.getArrayIfSingleItem)(output["LBCookieStickinessPolicies"]["member"]), context);
|
|
3354
3356
|
}
|
|
3355
3357
|
if (output.OtherPolicies === "") {
|
|
3356
3358
|
contents.OtherPolicies = [];
|
|
3357
3359
|
}
|
|
3358
|
-
if (output["OtherPolicies"] !== undefined && output["OtherPolicies"]["member"] !== undefined) {
|
|
3360
|
+
else if (output["OtherPolicies"] !== undefined && output["OtherPolicies"]["member"] !== undefined) {
|
|
3359
3361
|
contents.OtherPolicies = deserializeAws_queryPolicyNames((0, smithy_client_1.getArrayIfSingleItem)(output["OtherPolicies"]["member"]), context);
|
|
3360
3362
|
}
|
|
3361
3363
|
return contents;
|
|
@@ -3433,7 +3435,7 @@ const deserializeAws_queryPolicyDescription = (output, context) => {
|
|
|
3433
3435
|
if (output.PolicyAttributeDescriptions === "") {
|
|
3434
3436
|
contents.PolicyAttributeDescriptions = [];
|
|
3435
3437
|
}
|
|
3436
|
-
if (output["PolicyAttributeDescriptions"] !== undefined &&
|
|
3438
|
+
else if (output["PolicyAttributeDescriptions"] !== undefined &&
|
|
3437
3439
|
output["PolicyAttributeDescriptions"]["member"] !== undefined) {
|
|
3438
3440
|
contents.PolicyAttributeDescriptions = deserializeAws_queryPolicyAttributeDescriptions((0, smithy_client_1.getArrayIfSingleItem)(output["PolicyAttributeDescriptions"]["member"]), context);
|
|
3439
3441
|
}
|
|
@@ -3483,7 +3485,7 @@ const deserializeAws_queryPolicyTypeDescription = (output, context) => {
|
|
|
3483
3485
|
if (output.PolicyAttributeTypeDescriptions === "") {
|
|
3484
3486
|
contents.PolicyAttributeTypeDescriptions = [];
|
|
3485
3487
|
}
|
|
3486
|
-
if (output["PolicyAttributeTypeDescriptions"] !== undefined &&
|
|
3488
|
+
else if (output["PolicyAttributeTypeDescriptions"] !== undefined &&
|
|
3487
3489
|
output["PolicyAttributeTypeDescriptions"]["member"] !== undefined) {
|
|
3488
3490
|
contents.PolicyAttributeTypeDescriptions = deserializeAws_queryPolicyAttributeTypeDescriptions((0, smithy_client_1.getArrayIfSingleItem)(output["PolicyAttributeTypeDescriptions"]["member"]), context);
|
|
3489
3491
|
}
|
|
@@ -3515,7 +3517,7 @@ const deserializeAws_queryRegisterEndPointsOutput = (output, context) => {
|
|
|
3515
3517
|
if (output.Instances === "") {
|
|
3516
3518
|
contents.Instances = [];
|
|
3517
3519
|
}
|
|
3518
|
-
if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
3520
|
+
else if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
3519
3521
|
contents.Instances = deserializeAws_queryInstances((0, smithy_client_1.getArrayIfSingleItem)(output["Instances"]["member"]), context);
|
|
3520
3522
|
}
|
|
3521
3523
|
return contents;
|
|
@@ -3527,7 +3529,7 @@ const deserializeAws_queryRemoveAvailabilityZonesOutput = (output, context) => {
|
|
|
3527
3529
|
if (output.AvailabilityZones === "") {
|
|
3528
3530
|
contents.AvailabilityZones = [];
|
|
3529
3531
|
}
|
|
3530
|
-
if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
3532
|
+
else if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
3531
3533
|
contents.AvailabilityZones = deserializeAws_queryAvailabilityZones((0, smithy_client_1.getArrayIfSingleItem)(output["AvailabilityZones"]["member"]), context);
|
|
3532
3534
|
}
|
|
3533
3535
|
return contents;
|
|
@@ -3614,7 +3616,7 @@ const deserializeAws_queryTagDescription = (output, context) => {
|
|
|
3614
3616
|
if (output.Tags === "") {
|
|
3615
3617
|
contents.Tags = [];
|
|
3616
3618
|
}
|
|
3617
|
-
if (output["Tags"] !== undefined && output["Tags"]["member"] !== undefined) {
|
|
3619
|
+
else if (output["Tags"] !== undefined && output["Tags"]["member"] !== undefined) {
|
|
3618
3620
|
contents.Tags = deserializeAws_queryTagList((0, smithy_client_1.getArrayIfSingleItem)(output["Tags"]["member"]), context);
|
|
3619
3621
|
}
|
|
3620
3622
|
return contents;
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var ElasticLoadBalancingClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -3147,7 +3147,7 @@ var deserializeAws_queryAddAvailabilityZonesOutput = function (output, context)
|
|
|
3147
3147
|
if (output.AvailabilityZones === "") {
|
|
3148
3148
|
contents.AvailabilityZones = [];
|
|
3149
3149
|
}
|
|
3150
|
-
if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
3150
|
+
else if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
3151
3151
|
contents.AvailabilityZones = deserializeAws_queryAvailabilityZones(__getArrayIfSingleItem(output["AvailabilityZones"]["member"]), context);
|
|
3152
3152
|
}
|
|
3153
3153
|
return contents;
|
|
@@ -3209,7 +3209,7 @@ var deserializeAws_queryApplySecurityGroupsToLoadBalancerOutput = function (outp
|
|
|
3209
3209
|
if (output.SecurityGroups === "") {
|
|
3210
3210
|
contents.SecurityGroups = [];
|
|
3211
3211
|
}
|
|
3212
|
-
if (output["SecurityGroups"] !== undefined && output["SecurityGroups"]["member"] !== undefined) {
|
|
3212
|
+
else if (output["SecurityGroups"] !== undefined && output["SecurityGroups"]["member"] !== undefined) {
|
|
3213
3213
|
contents.SecurityGroups = deserializeAws_querySecurityGroups(__getArrayIfSingleItem(output["SecurityGroups"]["member"]), context);
|
|
3214
3214
|
}
|
|
3215
3215
|
return contents;
|
|
@@ -3221,7 +3221,7 @@ var deserializeAws_queryAttachLoadBalancerToSubnetsOutput = function (output, co
|
|
|
3221
3221
|
if (output.Subnets === "") {
|
|
3222
3222
|
contents.Subnets = [];
|
|
3223
3223
|
}
|
|
3224
|
-
if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
3224
|
+
else if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
3225
3225
|
contents.Subnets = deserializeAws_querySubnets(__getArrayIfSingleItem(output["Subnets"]["member"]), context);
|
|
3226
3226
|
}
|
|
3227
3227
|
return contents;
|
|
@@ -3247,7 +3247,7 @@ var deserializeAws_queryBackendServerDescription = function (output, context) {
|
|
|
3247
3247
|
if (output.PolicyNames === "") {
|
|
3248
3248
|
contents.PolicyNames = [];
|
|
3249
3249
|
}
|
|
3250
|
-
if (output["PolicyNames"] !== undefined && output["PolicyNames"]["member"] !== undefined) {
|
|
3250
|
+
else if (output["PolicyNames"] !== undefined && output["PolicyNames"]["member"] !== undefined) {
|
|
3251
3251
|
contents.PolicyNames = deserializeAws_queryPolicyNames(__getArrayIfSingleItem(output["PolicyNames"]["member"]), context);
|
|
3252
3252
|
}
|
|
3253
3253
|
return contents;
|
|
@@ -3364,7 +3364,7 @@ var deserializeAws_queryDeregisterEndPointsOutput = function (output, context) {
|
|
|
3364
3364
|
if (output.Instances === "") {
|
|
3365
3365
|
contents.Instances = [];
|
|
3366
3366
|
}
|
|
3367
|
-
if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
3367
|
+
else if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
3368
3368
|
contents.Instances = deserializeAws_queryInstances(__getArrayIfSingleItem(output["Instances"]["member"]), context);
|
|
3369
3369
|
}
|
|
3370
3370
|
return contents;
|
|
@@ -3377,7 +3377,8 @@ var deserializeAws_queryDescribeAccessPointsOutput = function (output, context)
|
|
|
3377
3377
|
if (output.LoadBalancerDescriptions === "") {
|
|
3378
3378
|
contents.LoadBalancerDescriptions = [];
|
|
3379
3379
|
}
|
|
3380
|
-
if (output["LoadBalancerDescriptions"] !== undefined &&
|
|
3380
|
+
else if (output["LoadBalancerDescriptions"] !== undefined &&
|
|
3381
|
+
output["LoadBalancerDescriptions"]["member"] !== undefined) {
|
|
3381
3382
|
contents.LoadBalancerDescriptions = deserializeAws_queryLoadBalancerDescriptions(__getArrayIfSingleItem(output["LoadBalancerDescriptions"]["member"]), context);
|
|
3382
3383
|
}
|
|
3383
3384
|
if (output["NextMarker"] !== undefined) {
|
|
@@ -3393,7 +3394,7 @@ var deserializeAws_queryDescribeAccountLimitsOutput = function (output, context)
|
|
|
3393
3394
|
if (output.Limits === "") {
|
|
3394
3395
|
contents.Limits = [];
|
|
3395
3396
|
}
|
|
3396
|
-
if (output["Limits"] !== undefined && output["Limits"]["member"] !== undefined) {
|
|
3397
|
+
else if (output["Limits"] !== undefined && output["Limits"]["member"] !== undefined) {
|
|
3397
3398
|
contents.Limits = deserializeAws_queryLimits(__getArrayIfSingleItem(output["Limits"]["member"]), context);
|
|
3398
3399
|
}
|
|
3399
3400
|
if (output["NextMarker"] !== undefined) {
|
|
@@ -3408,7 +3409,7 @@ var deserializeAws_queryDescribeEndPointStateOutput = function (output, context)
|
|
|
3408
3409
|
if (output.InstanceStates === "") {
|
|
3409
3410
|
contents.InstanceStates = [];
|
|
3410
3411
|
}
|
|
3411
|
-
if (output["InstanceStates"] !== undefined && output["InstanceStates"]["member"] !== undefined) {
|
|
3412
|
+
else if (output["InstanceStates"] !== undefined && output["InstanceStates"]["member"] !== undefined) {
|
|
3412
3413
|
contents.InstanceStates = deserializeAws_queryInstanceStates(__getArrayIfSingleItem(output["InstanceStates"]["member"]), context);
|
|
3413
3414
|
}
|
|
3414
3415
|
return contents;
|
|
@@ -3429,7 +3430,7 @@ var deserializeAws_queryDescribeLoadBalancerPoliciesOutput = function (output, c
|
|
|
3429
3430
|
if (output.PolicyDescriptions === "") {
|
|
3430
3431
|
contents.PolicyDescriptions = [];
|
|
3431
3432
|
}
|
|
3432
|
-
if (output["PolicyDescriptions"] !== undefined && output["PolicyDescriptions"]["member"] !== undefined) {
|
|
3433
|
+
else if (output["PolicyDescriptions"] !== undefined && output["PolicyDescriptions"]["member"] !== undefined) {
|
|
3433
3434
|
contents.PolicyDescriptions = deserializeAws_queryPolicyDescriptions(__getArrayIfSingleItem(output["PolicyDescriptions"]["member"]), context);
|
|
3434
3435
|
}
|
|
3435
3436
|
return contents;
|
|
@@ -3441,7 +3442,8 @@ var deserializeAws_queryDescribeLoadBalancerPolicyTypesOutput = function (output
|
|
|
3441
3442
|
if (output.PolicyTypeDescriptions === "") {
|
|
3442
3443
|
contents.PolicyTypeDescriptions = [];
|
|
3443
3444
|
}
|
|
3444
|
-
if (output["PolicyTypeDescriptions"] !== undefined &&
|
|
3445
|
+
else if (output["PolicyTypeDescriptions"] !== undefined &&
|
|
3446
|
+
output["PolicyTypeDescriptions"]["member"] !== undefined) {
|
|
3445
3447
|
contents.PolicyTypeDescriptions = deserializeAws_queryPolicyTypeDescriptions(__getArrayIfSingleItem(output["PolicyTypeDescriptions"]["member"]), context);
|
|
3446
3448
|
}
|
|
3447
3449
|
return contents;
|
|
@@ -3453,7 +3455,7 @@ var deserializeAws_queryDescribeTagsOutput = function (output, context) {
|
|
|
3453
3455
|
if (output.TagDescriptions === "") {
|
|
3454
3456
|
contents.TagDescriptions = [];
|
|
3455
3457
|
}
|
|
3456
|
-
if (output["TagDescriptions"] !== undefined && output["TagDescriptions"]["member"] !== undefined) {
|
|
3458
|
+
else if (output["TagDescriptions"] !== undefined && output["TagDescriptions"]["member"] !== undefined) {
|
|
3457
3459
|
contents.TagDescriptions = deserializeAws_queryTagDescriptions(__getArrayIfSingleItem(output["TagDescriptions"]["member"]), context);
|
|
3458
3460
|
}
|
|
3459
3461
|
return contents;
|
|
@@ -3465,7 +3467,7 @@ var deserializeAws_queryDetachLoadBalancerFromSubnetsOutput = function (output,
|
|
|
3465
3467
|
if (output.Subnets === "") {
|
|
3466
3468
|
contents.Subnets = [];
|
|
3467
3469
|
}
|
|
3468
|
-
if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
3470
|
+
else if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
3469
3471
|
contents.Subnets = deserializeAws_querySubnets(__getArrayIfSingleItem(output["Subnets"]["member"]), context);
|
|
3470
3472
|
}
|
|
3471
3473
|
return contents;
|
|
@@ -3708,7 +3710,7 @@ var deserializeAws_queryListenerDescription = function (output, context) {
|
|
|
3708
3710
|
if (output.PolicyNames === "") {
|
|
3709
3711
|
contents.PolicyNames = [];
|
|
3710
3712
|
}
|
|
3711
|
-
if (output["PolicyNames"] !== undefined && output["PolicyNames"]["member"] !== undefined) {
|
|
3713
|
+
else if (output["PolicyNames"] !== undefined && output["PolicyNames"]["member"] !== undefined) {
|
|
3712
3714
|
contents.PolicyNames = deserializeAws_queryPolicyNames(__getArrayIfSingleItem(output["PolicyNames"]["member"]), context);
|
|
3713
3715
|
}
|
|
3714
3716
|
return contents;
|
|
@@ -3764,7 +3766,7 @@ var deserializeAws_queryLoadBalancerAttributes = function (output, context) {
|
|
|
3764
3766
|
if (output.AdditionalAttributes === "") {
|
|
3765
3767
|
contents.AdditionalAttributes = [];
|
|
3766
3768
|
}
|
|
3767
|
-
if (output["AdditionalAttributes"] !== undefined && output["AdditionalAttributes"]["member"] !== undefined) {
|
|
3769
|
+
else if (output["AdditionalAttributes"] !== undefined && output["AdditionalAttributes"]["member"] !== undefined) {
|
|
3768
3770
|
contents.AdditionalAttributes = deserializeAws_queryAdditionalAttributes(__getArrayIfSingleItem(output["AdditionalAttributes"]["member"]), context);
|
|
3769
3771
|
}
|
|
3770
3772
|
return contents;
|
|
@@ -3803,7 +3805,7 @@ var deserializeAws_queryLoadBalancerDescription = function (output, context) {
|
|
|
3803
3805
|
if (output.ListenerDescriptions === "") {
|
|
3804
3806
|
contents.ListenerDescriptions = [];
|
|
3805
3807
|
}
|
|
3806
|
-
if (output["ListenerDescriptions"] !== undefined && output["ListenerDescriptions"]["member"] !== undefined) {
|
|
3808
|
+
else if (output["ListenerDescriptions"] !== undefined && output["ListenerDescriptions"]["member"] !== undefined) {
|
|
3807
3809
|
contents.ListenerDescriptions = deserializeAws_queryListenerDescriptions(__getArrayIfSingleItem(output["ListenerDescriptions"]["member"]), context);
|
|
3808
3810
|
}
|
|
3809
3811
|
if (output["Policies"] !== undefined) {
|
|
@@ -3812,20 +3814,20 @@ var deserializeAws_queryLoadBalancerDescription = function (output, context) {
|
|
|
3812
3814
|
if (output.BackendServerDescriptions === "") {
|
|
3813
3815
|
contents.BackendServerDescriptions = [];
|
|
3814
3816
|
}
|
|
3815
|
-
if (output["BackendServerDescriptions"] !== undefined &&
|
|
3817
|
+
else if (output["BackendServerDescriptions"] !== undefined &&
|
|
3816
3818
|
output["BackendServerDescriptions"]["member"] !== undefined) {
|
|
3817
3819
|
contents.BackendServerDescriptions = deserializeAws_queryBackendServerDescriptions(__getArrayIfSingleItem(output["BackendServerDescriptions"]["member"]), context);
|
|
3818
3820
|
}
|
|
3819
3821
|
if (output.AvailabilityZones === "") {
|
|
3820
3822
|
contents.AvailabilityZones = [];
|
|
3821
3823
|
}
|
|
3822
|
-
if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
3824
|
+
else if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
3823
3825
|
contents.AvailabilityZones = deserializeAws_queryAvailabilityZones(__getArrayIfSingleItem(output["AvailabilityZones"]["member"]), context);
|
|
3824
3826
|
}
|
|
3825
3827
|
if (output.Subnets === "") {
|
|
3826
3828
|
contents.Subnets = [];
|
|
3827
3829
|
}
|
|
3828
|
-
if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
3830
|
+
else if (output["Subnets"] !== undefined && output["Subnets"]["member"] !== undefined) {
|
|
3829
3831
|
contents.Subnets = deserializeAws_querySubnets(__getArrayIfSingleItem(output["Subnets"]["member"]), context);
|
|
3830
3832
|
}
|
|
3831
3833
|
if (output["VPCId"] !== undefined) {
|
|
@@ -3834,7 +3836,7 @@ var deserializeAws_queryLoadBalancerDescription = function (output, context) {
|
|
|
3834
3836
|
if (output.Instances === "") {
|
|
3835
3837
|
contents.Instances = [];
|
|
3836
3838
|
}
|
|
3837
|
-
if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
3839
|
+
else if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
3838
3840
|
contents.Instances = deserializeAws_queryInstances(__getArrayIfSingleItem(output["Instances"]["member"]), context);
|
|
3839
3841
|
}
|
|
3840
3842
|
if (output["HealthCheck"] !== undefined) {
|
|
@@ -3846,7 +3848,7 @@ var deserializeAws_queryLoadBalancerDescription = function (output, context) {
|
|
|
3846
3848
|
if (output.SecurityGroups === "") {
|
|
3847
3849
|
contents.SecurityGroups = [];
|
|
3848
3850
|
}
|
|
3849
|
-
if (output["SecurityGroups"] !== undefined && output["SecurityGroups"]["member"] !== undefined) {
|
|
3851
|
+
else if (output["SecurityGroups"] !== undefined && output["SecurityGroups"]["member"] !== undefined) {
|
|
3850
3852
|
contents.SecurityGroups = deserializeAws_querySecurityGroups(__getArrayIfSingleItem(output["SecurityGroups"]["member"]), context);
|
|
3851
3853
|
}
|
|
3852
3854
|
if (output["CreatedTime"] !== undefined) {
|
|
@@ -3898,21 +3900,21 @@ var deserializeAws_queryPolicies = function (output, context) {
|
|
|
3898
3900
|
if (output.AppCookieStickinessPolicies === "") {
|
|
3899
3901
|
contents.AppCookieStickinessPolicies = [];
|
|
3900
3902
|
}
|
|
3901
|
-
if (output["AppCookieStickinessPolicies"] !== undefined &&
|
|
3903
|
+
else if (output["AppCookieStickinessPolicies"] !== undefined &&
|
|
3902
3904
|
output["AppCookieStickinessPolicies"]["member"] !== undefined) {
|
|
3903
3905
|
contents.AppCookieStickinessPolicies = deserializeAws_queryAppCookieStickinessPolicies(__getArrayIfSingleItem(output["AppCookieStickinessPolicies"]["member"]), context);
|
|
3904
3906
|
}
|
|
3905
3907
|
if (output.LBCookieStickinessPolicies === "") {
|
|
3906
3908
|
contents.LBCookieStickinessPolicies = [];
|
|
3907
3909
|
}
|
|
3908
|
-
if (output["LBCookieStickinessPolicies"] !== undefined &&
|
|
3910
|
+
else if (output["LBCookieStickinessPolicies"] !== undefined &&
|
|
3909
3911
|
output["LBCookieStickinessPolicies"]["member"] !== undefined) {
|
|
3910
3912
|
contents.LBCookieStickinessPolicies = deserializeAws_queryLBCookieStickinessPolicies(__getArrayIfSingleItem(output["LBCookieStickinessPolicies"]["member"]), context);
|
|
3911
3913
|
}
|
|
3912
3914
|
if (output.OtherPolicies === "") {
|
|
3913
3915
|
contents.OtherPolicies = [];
|
|
3914
3916
|
}
|
|
3915
|
-
if (output["OtherPolicies"] !== undefined && output["OtherPolicies"]["member"] !== undefined) {
|
|
3917
|
+
else if (output["OtherPolicies"] !== undefined && output["OtherPolicies"]["member"] !== undefined) {
|
|
3916
3918
|
contents.OtherPolicies = deserializeAws_queryPolicyNames(__getArrayIfSingleItem(output["OtherPolicies"]["member"]), context);
|
|
3917
3919
|
}
|
|
3918
3920
|
return contents;
|
|
@@ -3990,7 +3992,7 @@ var deserializeAws_queryPolicyDescription = function (output, context) {
|
|
|
3990
3992
|
if (output.PolicyAttributeDescriptions === "") {
|
|
3991
3993
|
contents.PolicyAttributeDescriptions = [];
|
|
3992
3994
|
}
|
|
3993
|
-
if (output["PolicyAttributeDescriptions"] !== undefined &&
|
|
3995
|
+
else if (output["PolicyAttributeDescriptions"] !== undefined &&
|
|
3994
3996
|
output["PolicyAttributeDescriptions"]["member"] !== undefined) {
|
|
3995
3997
|
contents.PolicyAttributeDescriptions = deserializeAws_queryPolicyAttributeDescriptions(__getArrayIfSingleItem(output["PolicyAttributeDescriptions"]["member"]), context);
|
|
3996
3998
|
}
|
|
@@ -4040,7 +4042,7 @@ var deserializeAws_queryPolicyTypeDescription = function (output, context) {
|
|
|
4040
4042
|
if (output.PolicyAttributeTypeDescriptions === "") {
|
|
4041
4043
|
contents.PolicyAttributeTypeDescriptions = [];
|
|
4042
4044
|
}
|
|
4043
|
-
if (output["PolicyAttributeTypeDescriptions"] !== undefined &&
|
|
4045
|
+
else if (output["PolicyAttributeTypeDescriptions"] !== undefined &&
|
|
4044
4046
|
output["PolicyAttributeTypeDescriptions"]["member"] !== undefined) {
|
|
4045
4047
|
contents.PolicyAttributeTypeDescriptions = deserializeAws_queryPolicyAttributeTypeDescriptions(__getArrayIfSingleItem(output["PolicyAttributeTypeDescriptions"]["member"]), context);
|
|
4046
4048
|
}
|
|
@@ -4072,7 +4074,7 @@ var deserializeAws_queryRegisterEndPointsOutput = function (output, context) {
|
|
|
4072
4074
|
if (output.Instances === "") {
|
|
4073
4075
|
contents.Instances = [];
|
|
4074
4076
|
}
|
|
4075
|
-
if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
4077
|
+
else if (output["Instances"] !== undefined && output["Instances"]["member"] !== undefined) {
|
|
4076
4078
|
contents.Instances = deserializeAws_queryInstances(__getArrayIfSingleItem(output["Instances"]["member"]), context);
|
|
4077
4079
|
}
|
|
4078
4080
|
return contents;
|
|
@@ -4084,7 +4086,7 @@ var deserializeAws_queryRemoveAvailabilityZonesOutput = function (output, contex
|
|
|
4084
4086
|
if (output.AvailabilityZones === "") {
|
|
4085
4087
|
contents.AvailabilityZones = [];
|
|
4086
4088
|
}
|
|
4087
|
-
if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
4089
|
+
else if (output["AvailabilityZones"] !== undefined && output["AvailabilityZones"]["member"] !== undefined) {
|
|
4088
4090
|
contents.AvailabilityZones = deserializeAws_queryAvailabilityZones(__getArrayIfSingleItem(output["AvailabilityZones"]["member"]), context);
|
|
4089
4091
|
}
|
|
4090
4092
|
return contents;
|
|
@@ -4171,7 +4173,7 @@ var deserializeAws_queryTagDescription = function (output, context) {
|
|
|
4171
4173
|
if (output.Tags === "") {
|
|
4172
4174
|
contents.Tags = [];
|
|
4173
4175
|
}
|
|
4174
|
-
if (output["Tags"] !== undefined && output["Tags"]["member"] !== undefined) {
|
|
4176
|
+
else if (output["Tags"] !== undefined && output["Tags"]["member"] !== undefined) {
|
|
4175
4177
|
contents.Tags = deserializeAws_queryTagList(__getArrayIfSingleItem(output["Tags"]["member"]), context);
|
|
4176
4178
|
}
|
|
4177
4179
|
return contents;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elastic-load-balancing",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.109.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,37 +18,38 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.109.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.109.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.109.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.109.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.109.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.109.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.109.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.109.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.109.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.109.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.109.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.109.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.109.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.109.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.109.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.109.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.109.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.109.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.109.0",
|
|
40
|
+
"@aws-sdk/types": "3.109.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.109.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
51
|
-
"@aws-sdk/util-waiter": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.109.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.109.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.109.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.109.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
|
+
"@aws-sdk/util-waiter": "3.109.0",
|
|
52
53
|
"entities": "2.2.0",
|
|
53
54
|
"fast-xml-parser": "3.19.0",
|
|
54
55
|
"tslib": "^2.3.1"
|