aws-sdk-elasticloadbalancingv2 1.38.0 → 1.39.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7fe96d404db235445a0fc6ec011508c1c365092a
|
4
|
+
data.tar.gz: efdd3c4b5842d436e266fb2e2e6bb3ffeb540d12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f487a30967b6bbfea337c838b74b3e6e61243c96fe8fc23bab6cc7d5b2554e5c71aa73c25c9fd823935a36f5d8259352308d402e823e707d1daeaf3ed537c79
|
7
|
+
data.tar.gz: 4aed3a3308f5125840de14e7d761bb3a7f8697061f128c607a41bb98fc78caac5e4c9f7dfb231742e207506f3eb1271a72538df3c20cf80dce34ca6f0b8d578b
|
@@ -723,7 +723,9 @@ module Aws::ElasticLoadBalancingV2
|
|
723
723
|
#
|
724
724
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
725
725
|
# Availability Zones. You can specify one Elastic IP address per subnet
|
726
|
-
# if you need static IP addresses for your load
|
726
|
+
# if you need static IP addresses for your internet-facing load
|
727
|
+
# balancer. For internal load balancers, you can specify one private IP
|
728
|
+
# address per subnet from the IPv4 range of the subnet.
|
727
729
|
#
|
728
730
|
# @option params [Array<String>] :security_groups
|
729
731
|
# \[Application Load Balancers\] The IDs of the security groups for the
|
@@ -861,6 +863,7 @@ module Aws::ElasticLoadBalancingV2
|
|
861
863
|
# {
|
862
864
|
# subnet_id: "SubnetId",
|
863
865
|
# allocation_id: "AllocationId",
|
866
|
+
# private_i_pv_4_address: "PrivateIPv4Address",
|
864
867
|
# },
|
865
868
|
# ],
|
866
869
|
# security_groups: ["SecurityGroupId"],
|
@@ -894,6 +897,7 @@ module Aws::ElasticLoadBalancingV2
|
|
894
897
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses #=> Array
|
895
898
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
896
899
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
900
|
+
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].private_i_pv_4_address #=> String
|
897
901
|
# resp.load_balancers[0].security_groups #=> Array
|
898
902
|
# resp.load_balancers[0].security_groups[0] #=> String
|
899
903
|
# resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
@@ -1987,6 +1991,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1987
1991
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses #=> Array
|
1988
1992
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
1989
1993
|
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
1994
|
+
# resp.load_balancers[0].availability_zones[0].load_balancer_addresses[0].private_i_pv_4_address #=> String
|
1990
1995
|
# resp.load_balancers[0].security_groups #=> Array
|
1991
1996
|
# resp.load_balancers[0].security_groups[0] #=> String
|
1992
1997
|
# resp.load_balancers[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
@@ -3979,11 +3984,13 @@ module Aws::ElasticLoadBalancingV2
|
|
3979
3984
|
req.send_request(options)
|
3980
3985
|
end
|
3981
3986
|
|
3982
|
-
# Enables the Availability
|
3983
|
-
# specified
|
3987
|
+
# Enables the Availability Zones for the specified public subnets for
|
3988
|
+
# the specified load balancer. The specified subnets replace the
|
3984
3989
|
# previously enabled subnets.
|
3985
3990
|
#
|
3986
|
-
#
|
3991
|
+
# When you specify subnets for a Network Load Balancer, you must include
|
3992
|
+
# all subnets that were enabled previously, with their existing
|
3993
|
+
# configurations, plus any additional subnets.
|
3987
3994
|
#
|
3988
3995
|
# @option params [required, String] :load_balancer_arn
|
3989
3996
|
# The Amazon Resource Name (ARN) of the load balancer.
|
@@ -3994,11 +4001,18 @@ module Aws::ElasticLoadBalancingV2
|
|
3994
4001
|
# Availability Zone. You must specify either subnets or subnet mappings.
|
3995
4002
|
#
|
3996
4003
|
# @option params [Array<Types::SubnetMapping>] :subnet_mappings
|
3997
|
-
# The IDs of the public subnets. You
|
3998
|
-
# two Availability Zones. You can specify only one subnet per
|
4004
|
+
# The IDs of the public subnets. You can specify only one subnet per
|
3999
4005
|
# Availability Zone. You must specify either subnets or subnet mappings.
|
4000
4006
|
#
|
4001
|
-
# You
|
4007
|
+
# \[Application Load Balancers\] You must specify subnets from at least
|
4008
|
+
# two Availability Zones. You cannot specify Elastic IP addresses for
|
4009
|
+
# your subnets.
|
4010
|
+
#
|
4011
|
+
# \[Network Load Balancers\] You can specify subnets from one or more
|
4012
|
+
# Availability Zones. If you need static IP addresses for your
|
4013
|
+
# internet-facing load balancer, you can specify one Elastic IP address
|
4014
|
+
# per subnet. For internal load balancers, you can specify one private
|
4015
|
+
# IP address per subnet from the IPv4 range of the subnet.
|
4002
4016
|
#
|
4003
4017
|
# @return [Types::SetSubnetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4004
4018
|
#
|
@@ -4040,6 +4054,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4040
4054
|
# {
|
4041
4055
|
# subnet_id: "SubnetId",
|
4042
4056
|
# allocation_id: "AllocationId",
|
4057
|
+
# private_i_pv_4_address: "PrivateIPv4Address",
|
4043
4058
|
# },
|
4044
4059
|
# ],
|
4045
4060
|
# })
|
@@ -4052,6 +4067,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4052
4067
|
# resp.availability_zones[0].load_balancer_addresses #=> Array
|
4053
4068
|
# resp.availability_zones[0].load_balancer_addresses[0].ip_address #=> String
|
4054
4069
|
# resp.availability_zones[0].load_balancer_addresses[0].allocation_id #=> String
|
4070
|
+
# resp.availability_zones[0].load_balancer_addresses[0].private_i_pv_4_address #=> String
|
4055
4071
|
#
|
4056
4072
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnets AWS API Documentation
|
4057
4073
|
#
|
@@ -4075,7 +4091,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4075
4091
|
params: params,
|
4076
4092
|
config: config)
|
4077
4093
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4078
|
-
context[:gem_version] = '1.
|
4094
|
+
context[:gem_version] = '1.39.0'
|
4079
4095
|
Seahorse::Client::Request.new(handlers, context)
|
4080
4096
|
end
|
4081
4097
|
|
@@ -179,6 +179,7 @@ module Aws::ElasticLoadBalancingV2
|
|
179
179
|
PathPatternConditionConfig = Shapes::StructureShape.new(name: 'PathPatternConditionConfig')
|
180
180
|
Port = Shapes::IntegerShape.new(name: 'Port')
|
181
181
|
PriorityInUseException = Shapes::StructureShape.new(name: 'PriorityInUseException')
|
182
|
+
PrivateIPv4Address = Shapes::StringShape.new(name: 'PrivateIPv4Address')
|
182
183
|
ProtocolEnum = Shapes::StringShape.new(name: 'ProtocolEnum')
|
183
184
|
QueryStringConditionConfig = Shapes::StructureShape.new(name: 'QueryStringConditionConfig')
|
184
185
|
QueryStringKeyValuePair = Shapes::StructureShape.new(name: 'QueryStringKeyValuePair')
|
@@ -583,6 +584,7 @@ module Aws::ElasticLoadBalancingV2
|
|
583
584
|
|
584
585
|
LoadBalancerAddress.add_member(:ip_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "IpAddress"))
|
585
586
|
LoadBalancerAddress.add_member(:allocation_id, Shapes::ShapeRef.new(shape: AllocationId, location_name: "AllocationId"))
|
587
|
+
LoadBalancerAddress.add_member(:private_i_pv_4_address, Shapes::ShapeRef.new(shape: PrivateIPv4Address, location_name: "PrivateIPv4Address"))
|
586
588
|
LoadBalancerAddress.struct_class = Types::LoadBalancerAddress
|
587
589
|
|
588
590
|
LoadBalancerAddresses.member = Shapes::ShapeRef.new(shape: LoadBalancerAddress)
|
@@ -769,6 +771,7 @@ module Aws::ElasticLoadBalancingV2
|
|
769
771
|
|
770
772
|
SubnetMapping.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
|
771
773
|
SubnetMapping.add_member(:allocation_id, Shapes::ShapeRef.new(shape: AllocationId, location_name: "AllocationId"))
|
774
|
+
SubnetMapping.add_member(:private_i_pv_4_address, Shapes::ShapeRef.new(shape: PrivateIPv4Address, location_name: "PrivateIPv4Address"))
|
772
775
|
SubnetMapping.struct_class = Types::SubnetMapping
|
773
776
|
|
774
777
|
SubnetMappings.member = Shapes::ShapeRef.new(shape: SubnetMapping)
|
@@ -419,7 +419,9 @@ module Aws::ElasticLoadBalancingV2
|
|
419
419
|
# @!attribute [rw] load_balancer_addresses
|
420
420
|
# \[Network Load Balancers\] If you need static IP addresses for your
|
421
421
|
# load balancer, you can specify one Elastic IP address per
|
422
|
-
# Availability Zone when you create
|
422
|
+
# Availability Zone when you create an internal-facing load balancer.
|
423
|
+
# For internal load balancers, you can specify a private IP address
|
424
|
+
# from the IPv4 range of the subnet.
|
423
425
|
# @return [Array<Types::LoadBalancerAddress>]
|
424
426
|
#
|
425
427
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/AvailabilityZone AWS API Documentation
|
@@ -642,6 +644,7 @@ module Aws::ElasticLoadBalancingV2
|
|
642
644
|
# {
|
643
645
|
# subnet_id: "SubnetId",
|
644
646
|
# allocation_id: "AllocationId",
|
647
|
+
# private_i_pv_4_address: "PrivateIPv4Address",
|
645
648
|
# },
|
646
649
|
# ],
|
647
650
|
# security_groups: ["SecurityGroupId"],
|
@@ -688,7 +691,9 @@ module Aws::ElasticLoadBalancingV2
|
|
688
691
|
#
|
689
692
|
# \[Network Load Balancers\] You can specify subnets from one or more
|
690
693
|
# Availability Zones. You can specify one Elastic IP address per
|
691
|
-
# subnet if you need static IP addresses for your load
|
694
|
+
# subnet if you need static IP addresses for your internet-facing load
|
695
|
+
# balancer. For internal load balancers, you can specify one private
|
696
|
+
# IP address per subnet from the IPv4 range of the subnet.
|
692
697
|
# @return [Array<Types::SubnetMapping>]
|
693
698
|
#
|
694
699
|
# @!attribute [rw] security_groups
|
@@ -2046,14 +2051,20 @@ module Aws::ElasticLoadBalancingV2
|
|
2046
2051
|
#
|
2047
2052
|
# @!attribute [rw] allocation_id
|
2048
2053
|
# \[Network Load Balancers\] The allocation ID of the Elastic IP
|
2049
|
-
# address.
|
2054
|
+
# address for an internal-facing load balancer.
|
2055
|
+
# @return [String]
|
2056
|
+
#
|
2057
|
+
# @!attribute [rw] private_i_pv_4_address
|
2058
|
+
# \[Network Load Balancers\] The private IPv4 address for an internal
|
2059
|
+
# load balancer.
|
2050
2060
|
# @return [String]
|
2051
2061
|
#
|
2052
2062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/LoadBalancerAddress AWS API Documentation
|
2053
2063
|
#
|
2054
2064
|
class LoadBalancerAddress < Struct.new(
|
2055
2065
|
:ip_address,
|
2056
|
-
:allocation_id
|
2066
|
+
:allocation_id,
|
2067
|
+
:private_i_pv_4_address)
|
2057
2068
|
include Aws::Structure
|
2058
2069
|
end
|
2059
2070
|
|
@@ -3258,6 +3269,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3258
3269
|
# {
|
3259
3270
|
# subnet_id: "SubnetId",
|
3260
3271
|
# allocation_id: "AllocationId",
|
3272
|
+
# private_i_pv_4_address: "PrivateIPv4Address",
|
3261
3273
|
# },
|
3262
3274
|
# ],
|
3263
3275
|
# }
|
@@ -3274,12 +3286,19 @@ module Aws::ElasticLoadBalancingV2
|
|
3274
3286
|
# @return [Array<String>]
|
3275
3287
|
#
|
3276
3288
|
# @!attribute [rw] subnet_mappings
|
3277
|
-
# The IDs of the public subnets. You
|
3278
|
-
# least two Availability Zones. You can specify only one subnet per
|
3289
|
+
# The IDs of the public subnets. You can specify only one subnet per
|
3279
3290
|
# Availability Zone. You must specify either subnets or subnet
|
3280
3291
|
# mappings.
|
3281
3292
|
#
|
3282
|
-
#
|
3293
|
+
# \[Application Load Balancers\] You must specify subnets from at
|
3294
|
+
# least two Availability Zones. You cannot specify Elastic IP
|
3295
|
+
# addresses for your subnets.
|
3296
|
+
#
|
3297
|
+
# \[Network Load Balancers\] You can specify subnets from one or more
|
3298
|
+
# Availability Zones. If you need static IP addresses for your
|
3299
|
+
# internet-facing load balancer, you can specify one Elastic IP
|
3300
|
+
# address per subnet. For internal load balancers, you can specify one
|
3301
|
+
# private IP address per subnet from the IPv4 range of the subnet.
|
3283
3302
|
# @return [Array<Types::SubnetMapping>]
|
3284
3303
|
#
|
3285
3304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnetsInput AWS API Documentation
|
@@ -3365,6 +3384,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3365
3384
|
# {
|
3366
3385
|
# subnet_id: "SubnetId",
|
3367
3386
|
# allocation_id: "AllocationId",
|
3387
|
+
# private_i_pv_4_address: "PrivateIPv4Address",
|
3368
3388
|
# }
|
3369
3389
|
#
|
3370
3390
|
# @!attribute [rw] subnet_id
|
@@ -3373,14 +3393,20 @@ module Aws::ElasticLoadBalancingV2
|
|
3373
3393
|
#
|
3374
3394
|
# @!attribute [rw] allocation_id
|
3375
3395
|
# \[Network Load Balancers\] The allocation ID of the Elastic IP
|
3376
|
-
# address.
|
3396
|
+
# address for an internet-facing load balancer.
|
3397
|
+
# @return [String]
|
3398
|
+
#
|
3399
|
+
# @!attribute [rw] private_i_pv_4_address
|
3400
|
+
# \[Network Load Balancers\] The private IPv4 address for an internal
|
3401
|
+
# load balancer.
|
3377
3402
|
# @return [String]
|
3378
3403
|
#
|
3379
3404
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SubnetMapping AWS API Documentation
|
3380
3405
|
#
|
3381
3406
|
class SubnetMapping < Struct.new(
|
3382
3407
|
:subnet_id,
|
3383
|
-
:allocation_id
|
3408
|
+
:allocation_id,
|
3409
|
+
:private_i_pv_4_address)
|
3384
3410
|
include Aws::Structure
|
3385
3411
|
end
|
3386
3412
|
|
@@ -3607,6 +3633,11 @@ module Aws::ElasticLoadBalancingV2
|
|
3607
3633
|
# The following attributes are supported by Application Load Balancers
|
3608
3634
|
# if the target is not a Lambda function:
|
3609
3635
|
#
|
3636
|
+
# * `load_balancing.algorithm.type` - The load balancing algorithm
|
3637
|
+
# determines how the load balancer selects targets when routing
|
3638
|
+
# requests. The value is `round_robin` or
|
3639
|
+
# `least_outstanding_requests`. The default is `round_robin`.
|
3640
|
+
#
|
3610
3641
|
# * `slow_start.duration_seconds` - The time period, in seconds,
|
3611
3642
|
# during which a newly registered target receives a linearly
|
3612
3643
|
# increasing share of the traffic to the target group. After this
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticloadbalancingv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-11-
|
11
|
+
date: 2019-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|