aws-sdk-elasticloadbalancingv2 1.154.0 → 1.155.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
  SHA256:
3
- metadata.gz: 7aa66ac06dd1d01cb58e8ffde1ac9cf572700ce5b8383f4ad7d345040e2522aa
4
- data.tar.gz: 774c32d895a53c3b0acf17b5111854c699b0d643b47fa8482e85a98d46a313d8
3
+ metadata.gz: b3937453adbfe2c7d0a3e8f4c943aedcebf626a51c96dd07f5c67790ff10e4bc
4
+ data.tar.gz: 8ca17a724fdfe79a4cfebbcdd4747a1258ad192ea8daa76dfb832a0486d82c70
5
5
  SHA512:
6
- metadata.gz: b70fdec5afbf27f52fd7d08875d13acc6d0025a91f50ad2689bda81692b285ebccd19aa3061fc0de3a413cc3b68b02318168dd064576b6a23b2657cb55c2a3bc
7
- data.tar.gz: db1279a11ed68972568841c87cba3cc3deabfb12425d7233a420d13f7a73659b85218e780366ad7715c52a4fef8340f8c8bd5cdacac2f70d464ab50ae94a0c70
6
+ metadata.gz: 97544cbcbe880d6fb642c608cafbeb6ef5ce6c8ab28a6fb17f08aed3e5ff4772a5581a7ea1e70b0b9e17de4aad7dc47b93834c0db38ba9f3280666d66c5c1a2c
7
+ data.tar.gz: 72f9eba841bbed91e5565d2ca2c39b3b32b0f2ca0aad792e534a5be4f0dfff44b058329e94356344c672213e6664b2f2f2eb4fa5fc5643bedd744011196f4c11
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.155.0 (2026-07-15)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for the IpAddressType field on SourceIpConfig, enabling Network Load Balancer listener rules to match traffic based on whether the source IP is IPv4 or IPv6.
8
+
4
9
  1.154.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.154.0
1
+ 1.155.0
@@ -1395,6 +1395,7 @@ module Aws::ElasticLoadBalancingV2
1395
1395
  # },
1396
1396
  # source_ip_config: {
1397
1397
  # values: ["StringValue"],
1398
+ # ip_address_type: "ipv4", # accepts ipv4, ipv6
1398
1399
  # },
1399
1400
  # regex_values: ["StringValue"],
1400
1401
  # },
@@ -1529,6 +1530,7 @@ module Aws::ElasticLoadBalancingV2
1529
1530
  # resp.rules[0].conditions[0].http_request_method_config.values[0] #=> String
1530
1531
  # resp.rules[0].conditions[0].source_ip_config.values #=> Array
1531
1532
  # resp.rules[0].conditions[0].source_ip_config.values[0] #=> String
1533
+ # resp.rules[0].conditions[0].source_ip_config.ip_address_type #=> String, one of "ipv4", "ipv6"
1532
1534
  # resp.rules[0].conditions[0].regex_values #=> Array
1533
1535
  # resp.rules[0].conditions[0].regex_values[0] #=> String
1534
1536
  # resp.rules[0].actions #=> Array
@@ -2833,6 +2835,7 @@ module Aws::ElasticLoadBalancingV2
2833
2835
  # resp.rules[0].conditions[0].http_request_method_config.values[0] #=> String
2834
2836
  # resp.rules[0].conditions[0].source_ip_config.values #=> Array
2835
2837
  # resp.rules[0].conditions[0].source_ip_config.values[0] #=> String
2838
+ # resp.rules[0].conditions[0].source_ip_config.ip_address_type #=> String, one of "ipv4", "ipv6"
2836
2839
  # resp.rules[0].conditions[0].regex_values #=> Array
2837
2840
  # resp.rules[0].conditions[0].regex_values[0] #=> String
2838
2841
  # resp.rules[0].actions #=> Array
@@ -4421,6 +4424,7 @@ module Aws::ElasticLoadBalancingV2
4421
4424
  # },
4422
4425
  # source_ip_config: {
4423
4426
  # values: ["StringValue"],
4427
+ # ip_address_type: "ipv4", # accepts ipv4, ipv6
4424
4428
  # },
4425
4429
  # regex_values: ["StringValue"],
4426
4430
  # },
@@ -4549,6 +4553,7 @@ module Aws::ElasticLoadBalancingV2
4549
4553
  # resp.rules[0].conditions[0].http_request_method_config.values[0] #=> String
4550
4554
  # resp.rules[0].conditions[0].source_ip_config.values #=> Array
4551
4555
  # resp.rules[0].conditions[0].source_ip_config.values[0] #=> String
4556
+ # resp.rules[0].conditions[0].source_ip_config.ip_address_type #=> String, one of "ipv4", "ipv6"
4552
4557
  # resp.rules[0].conditions[0].regex_values #=> Array
4553
4558
  # resp.rules[0].conditions[0].regex_values[0] #=> String
4554
4559
  # resp.rules[0].actions #=> Array
@@ -5226,6 +5231,7 @@ module Aws::ElasticLoadBalancingV2
5226
5231
  # resp.rules[0].conditions[0].http_request_method_config.values[0] #=> String
5227
5232
  # resp.rules[0].conditions[0].source_ip_config.values #=> Array
5228
5233
  # resp.rules[0].conditions[0].source_ip_config.values[0] #=> String
5234
+ # resp.rules[0].conditions[0].source_ip_config.ip_address_type #=> String, one of "ipv4", "ipv6"
5229
5235
  # resp.rules[0].conditions[0].regex_values #=> Array
5230
5236
  # resp.rules[0].conditions[0].regex_values[0] #=> String
5231
5237
  # resp.rules[0].actions #=> Array
@@ -5528,7 +5534,7 @@ module Aws::ElasticLoadBalancingV2
5528
5534
  tracer: tracer
5529
5535
  )
5530
5536
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5531
- context[:gem_version] = '1.154.0'
5537
+ context[:gem_version] = '1.155.0'
5532
5538
  Seahorse::Client::Request.new(handlers, context)
5533
5539
  end
5534
5540
 
@@ -338,6 +338,7 @@ module Aws::ElasticLoadBalancingV2
338
338
  SetSecurityGroupsOutput = Shapes::StructureShape.new(name: 'SetSecurityGroupsOutput')
339
339
  SetSubnetsInput = Shapes::StructureShape.new(name: 'SetSubnetsInput')
340
340
  SetSubnetsOutput = Shapes::StructureShape.new(name: 'SetSubnetsOutput')
341
+ SourceIpAddressTypeEnum = Shapes::StringShape.new(name: 'SourceIpAddressTypeEnum')
341
342
  SourceIpConditionConfig = Shapes::StructureShape.new(name: 'SourceIpConditionConfig')
342
343
  SourceNatIpv6Prefix = Shapes::StringShape.new(name: 'SourceNatIpv6Prefix')
343
344
  SourceNatIpv6Prefixes = Shapes::ListShape.new(name: 'SourceNatIpv6Prefixes')
@@ -1233,6 +1234,7 @@ module Aws::ElasticLoadBalancingV2
1233
1234
  SetSubnetsOutput.struct_class = Types::SetSubnetsOutput
1234
1235
 
1235
1236
  SourceIpConditionConfig.add_member(:values, Shapes::ShapeRef.new(shape: ListOfString, location_name: "Values"))
1237
+ SourceIpConditionConfig.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: SourceIpAddressTypeEnum, location_name: "IpAddressType"))
1236
1238
  SourceIpConditionConfig.struct_class = Types::SourceIpConditionConfig
1237
1239
 
1238
1240
  SourceNatIpv6Prefixes.member = Shapes::ShapeRef.new(shape: SourceNatIpv6Prefix)
@@ -4141,10 +4141,21 @@ module Aws::ElasticLoadBalancingV2
4141
4141
  # [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html#http-header-conditions
4142
4142
  # @return [Array<String>]
4143
4143
  #
4144
+ # @!attribute [rw] ip_address_type
4145
+ # The IP address type for Network Load Balancers.
4146
+ #
4147
+ # The valid values are:
4148
+ #
4149
+ # * `ipv4` – IPv4 addresses only.
4150
+ #
4151
+ # * `ipv6` – IPv6 addresses only.
4152
+ # @return [String]
4153
+ #
4144
4154
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SourceIpConditionConfig AWS API Documentation
4145
4155
  #
4146
4156
  class SourceIpConditionConfig < Struct.new(
4147
- :values)
4157
+ :values,
4158
+ :ip_address_type)
4148
4159
  SENSITIVE = []
4149
4160
  include Aws::Structure
4150
4161
  end
@@ -55,7 +55,7 @@ module Aws::ElasticLoadBalancingV2
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticloadbalancingv2/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticloadbalancingv2/endpoints'
57
57
 
58
- GEM_VERSION = '1.154.0'
58
+ GEM_VERSION = '1.155.0'
59
59
 
60
60
  end
61
61
 
data/sig/params.rbs CHANGED
@@ -112,7 +112,8 @@ module Aws
112
112
  values: Array[::String]?
113
113
  }?,
114
114
  source_ip_config: {
115
- values: Array[::String]?
115
+ values: Array[::String]?,
116
+ ip_address_type: ("ipv4" | "ipv6")?
116
117
  }?,
117
118
  regex_values: Array[::String]?
118
119
  }
data/sig/types.rbs CHANGED
@@ -1049,6 +1049,7 @@ module Aws::ElasticLoadBalancingV2
1049
1049
 
1050
1050
  class SourceIpConditionConfig
1051
1051
  attr_accessor values: ::Array[::String]
1052
+ attr_accessor ip_address_type: ("ipv4" | "ipv6")
1052
1053
  SENSITIVE: []
1053
1054
  end
1054
1055
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticloadbalancingv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.154.0
4
+ version: 1.155.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services