aws-sdk-elasticloadbalancingv2 1.68.0 → 1.69.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: 371cafb430a26edf2a9d2538bcb8573b7edf5feab4dbccb8aa9cab30aaca1618
4
- data.tar.gz: 5ddb9055f3b4dfb7af1fa9c16c5e4061c96ee941ac150598e9cb69318135f65b
3
+ metadata.gz: 1760e9d2226a02600366db38b0912840d6e0a546e8e3513ee84556127ea53a88
4
+ data.tar.gz: e7dc23df5e5212cb31545ecea5d18903c0ec01eee79d95c24689cdac7af1da8d
5
5
  SHA512:
6
- metadata.gz: c218b0f32691012ab7e54bf29ac47a7f30a92b8ff4203be31d0ba8f1fdb2bfb0a45cf8087cbf817bc3d4224fe82ec9a57b1e9cf8ed6173d328558dfb537ebcb5
7
- data.tar.gz: a4e3a7e84c9e9faff33b291eeece31f47de52b46dd2a8af094650e22cef0e60b4246ba0fc4ea839a8fbae989d2ca0f34c9cf08f6891bcaeb0d3726627dabfa15
6
+ metadata.gz: 1e375251d624f30b095d6a7a45b5c7088d2768ee97c19ed586b2e89598f06758e7d4f031086eceb003f075fa0e0d6b7ee692b3fc0627c3fbc145d0e1b9a33880
7
+ data.tar.gz: 28d9f6aa26cdccf4a1707946325a289e949b2afdb68f585e6b8b231523e3901e98661d27fc58cbc12914b00c49d4fd9c446e142eb2f67011b594b01d9390ce52
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2021-10-11)
5
+ ------------------
6
+
7
+ * Feature - Enable support for ALB IPv6 Target Groups (IP Address Type)
8
+
4
9
  1.68.0 (2021-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.69.0
@@ -1424,6 +1424,11 @@ module Aws::ElasticLoadBalancingV2
1424
1424
  # @option params [Array<Types::Tag>] :tags
1425
1425
  # The tags to assign to the target group.
1426
1426
  #
1427
+ # @option params [String] :ip_address_type
1428
+ # The type of IP address used for this target group. The possible values
1429
+ # are `ipv4` and `ipv6`. This is an optional parameter. If not
1430
+ # specified, the IP address type defaults to `ipv4`.
1431
+ #
1427
1432
  # @return [Types::CreateTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1428
1433
  #
1429
1434
  # * {Types::CreateTargetGroupOutput#target_groups #target_groups} => Array&lt;Types::TargetGroup&gt;
@@ -1491,6 +1496,7 @@ module Aws::ElasticLoadBalancingV2
1491
1496
  # value: "TagValue",
1492
1497
  # },
1493
1498
  # ],
1499
+ # ip_address_type: "ipv4", # accepts ipv4, ipv6
1494
1500
  # })
1495
1501
  #
1496
1502
  # @example Response structure
@@ -1515,6 +1521,7 @@ module Aws::ElasticLoadBalancingV2
1515
1521
  # resp.target_groups[0].load_balancer_arns[0] #=> String
1516
1522
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
1517
1523
  # resp.target_groups[0].protocol_version #=> String
1524
+ # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
1518
1525
  #
1519
1526
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroup AWS API Documentation
1520
1527
  #
@@ -2694,6 +2701,7 @@ module Aws::ElasticLoadBalancingV2
2694
2701
  # resp.target_groups[0].load_balancer_arns[0] #=> String
2695
2702
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
2696
2703
  # resp.target_groups[0].protocol_version #=> String
2704
+ # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
2697
2705
  # resp.next_marker #=> String
2698
2706
  #
2699
2707
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetGroups AWS API Documentation
@@ -3659,6 +3667,7 @@ module Aws::ElasticLoadBalancingV2
3659
3667
  # resp.target_groups[0].load_balancer_arns[0] #=> String
3660
3668
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
3661
3669
  # resp.target_groups[0].protocol_version #=> String
3670
+ # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
3662
3671
  #
3663
3672
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroup AWS API Documentation
3664
3673
  #
@@ -4274,7 +4283,7 @@ module Aws::ElasticLoadBalancingV2
4274
4283
  params: params,
4275
4284
  config: config)
4276
4285
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4277
- context[:gem_version] = '1.68.0'
4286
+ context[:gem_version] = '1.69.0'
4278
4287
  Seahorse::Client::Request.new(handlers, context)
4279
4288
  end
4280
4289
 
@@ -263,6 +263,7 @@ module Aws::ElasticLoadBalancingV2
263
263
  TargetGroupAttributeKey = Shapes::StringShape.new(name: 'TargetGroupAttributeKey')
264
264
  TargetGroupAttributeValue = Shapes::StringShape.new(name: 'TargetGroupAttributeValue')
265
265
  TargetGroupAttributes = Shapes::ListShape.new(name: 'TargetGroupAttributes')
266
+ TargetGroupIpAddressTypeEnum = Shapes::StringShape.new(name: 'TargetGroupIpAddressTypeEnum')
266
267
  TargetGroupList = Shapes::ListShape.new(name: 'TargetGroupList')
267
268
  TargetGroupName = Shapes::StringShape.new(name: 'TargetGroupName')
268
269
  TargetGroupNames = Shapes::ListShape.new(name: 'TargetGroupNames')
@@ -432,6 +433,7 @@ module Aws::ElasticLoadBalancingV2
432
433
  CreateTargetGroupInput.add_member(:matcher, Shapes::ShapeRef.new(shape: Matcher, location_name: "Matcher"))
433
434
  CreateTargetGroupInput.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
434
435
  CreateTargetGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
436
+ CreateTargetGroupInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
435
437
  CreateTargetGroupInput.struct_class = Types::CreateTargetGroupInput
436
438
 
437
439
  CreateTargetGroupOutput.add_member(:target_groups, Shapes::ShapeRef.new(shape: TargetGroups, location_name: "TargetGroups"))
@@ -891,6 +893,7 @@ module Aws::ElasticLoadBalancingV2
891
893
  TargetGroup.add_member(:load_balancer_arns, Shapes::ShapeRef.new(shape: LoadBalancerArns, location_name: "LoadBalancerArns"))
892
894
  TargetGroup.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
893
895
  TargetGroup.add_member(:protocol_version, Shapes::ShapeRef.new(shape: ProtocolVersion, location_name: "ProtocolVersion"))
896
+ TargetGroup.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
894
897
  TargetGroup.struct_class = Types::TargetGroup
895
898
 
896
899
  TargetGroupArns.member = Shapes::ShapeRef.new(shape: TargetGroupArn)
@@ -1034,6 +1034,7 @@ module Aws::ElasticLoadBalancingV2
1034
1034
  # value: "TagValue",
1035
1035
  # },
1036
1036
  # ],
1037
+ # ip_address_type: "ipv4", # accepts ipv4, ipv6
1037
1038
  # }
1038
1039
  #
1039
1040
  # @!attribute [rw] name
@@ -1173,6 +1174,12 @@ module Aws::ElasticLoadBalancingV2
1173
1174
  # The tags to assign to the target group.
1174
1175
  # @return [Array<Types::Tag>]
1175
1176
  #
1177
+ # @!attribute [rw] ip_address_type
1178
+ # The type of IP address used for this target group. The possible
1179
+ # values are `ipv4` and `ipv6`. This is an optional parameter. If not
1180
+ # specified, the IP address type defaults to `ipv4`.
1181
+ # @return [String]
1182
+ #
1176
1183
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroupInput AWS API Documentation
1177
1184
  #
1178
1185
  class CreateTargetGroupInput < Struct.new(
@@ -1191,7 +1198,8 @@ module Aws::ElasticLoadBalancingV2
1191
1198
  :unhealthy_threshold_count,
1192
1199
  :matcher,
1193
1200
  :target_type,
1194
- :tags)
1201
+ :tags,
1202
+ :ip_address_type)
1195
1203
  SENSITIVE = []
1196
1204
  include Aws::Structure
1197
1205
  end
@@ -2489,6 +2497,9 @@ module Aws::ElasticLoadBalancingV2
2489
2497
  #
2490
2498
  # For Network Load Balancers and Gateway Load Balancers, this must be
2491
2499
  # "200–399".
2500
+ #
2501
+ # Note that when using shorthand syntax, some values such as commas
2502
+ # need to be escaped.
2492
2503
  # @return [String]
2493
2504
  #
2494
2505
  # @!attribute [rw] grpc_code
@@ -4024,6 +4035,12 @@ module Aws::ElasticLoadBalancingV2
4024
4035
  # are `GRPC`, `HTTP1`, and `HTTP2`.
4025
4036
  # @return [String]
4026
4037
  #
4038
+ # @!attribute [rw] ip_address_type
4039
+ # The type of IP address used for this target group. The possible
4040
+ # values are `ipv4` and `ipv6`. This is an optional parameter. If not
4041
+ # specified, the IP address type defaults to `ipv4`.
4042
+ # @return [String]
4043
+ #
4027
4044
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroup AWS API Documentation
4028
4045
  #
4029
4046
  class TargetGroup < Struct.new(
@@ -4043,7 +4060,8 @@ module Aws::ElasticLoadBalancingV2
4043
4060
  :matcher,
4044
4061
  :load_balancer_arns,
4045
4062
  :target_type,
4046
- :protocol_version)
4063
+ :protocol_version,
4064
+ :ip_address_type)
4047
4065
  SENSITIVE = []
4048
4066
  include Aws::Structure
4049
4067
  end
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
49
49
  # @!group service
50
50
  module Aws::ElasticLoadBalancingV2
51
51
 
52
- GEM_VERSION = '1.68.0'
52
+ GEM_VERSION = '1.69.0'
53
53
 
54
54
  end
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.68.0
4
+ version: 1.69.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: 2021-09-27 00:00:00.000000000 Z
11
+ date: 2021-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core