aws-sdk-elasticloadbalancingv2 1.68.0 → 1.72.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: 318a32164bfa3f0110e8dc8f06d1a88f149f9cca3e5654aaed16ae0d7d53740d
4
+ data.tar.gz: 2c94db7a0ff870fa887f8d7dc360628a53d92fd175306452e949a2d89afdf660
5
5
  SHA512:
6
- metadata.gz: c218b0f32691012ab7e54bf29ac47a7f30a92b8ff4203be31d0ba8f1fdb2bfb0a45cf8087cbf817bc3d4224fe82ec9a57b1e9cf8ed6173d328558dfb537ebcb5
7
- data.tar.gz: a4e3a7e84c9e9faff33b291eeece31f47de52b46dd2a8af094650e22cef0e60b4246ba0fc4ea839a8fbae989d2ca0f34c9cf08f6891bcaeb0d3726627dabfa15
6
+ metadata.gz: 9644bc6a075fdb260cb9fac423f5d4b18570e1df0d256eb7401e066abe0fc55255e4b99d578a00ebb2972cfbda259af8f2a93a49b93b035dc53628fd41d2fc87
7
+ data.tar.gz: 6e3931c6811bc3d24286bc54eb35837904b3000b8b958a85889520b24c66ca4474e4c9700bdf4d7e5292f26099ed95a3c5f989205dd448ea877732965618c1af
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.72.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.71.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.70.0 (2021-10-14)
15
+ ------------------
16
+
17
+ * Feature - Adds new option to filter by availability on each type of load balancer when describing ssl policies.
18
+
19
+ 1.69.0 (2021-10-11)
20
+ ------------------
21
+
22
+ * Feature - Enable support for ALB IPv6 Target Groups (IP Address Type)
23
+
4
24
  1.68.0 (2021-09-27)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.72.0
@@ -275,6 +275,15 @@ module Aws::ElasticLoadBalancingV2
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -1424,6 +1433,11 @@ module Aws::ElasticLoadBalancingV2
1424
1433
  # @option params [Array<Types::Tag>] :tags
1425
1434
  # The tags to assign to the target group.
1426
1435
  #
1436
+ # @option params [String] :ip_address_type
1437
+ # The type of IP address used for this target group. The possible values
1438
+ # are `ipv4` and `ipv6`. This is an optional parameter. If not
1439
+ # specified, the IP address type defaults to `ipv4`.
1440
+ #
1427
1441
  # @return [Types::CreateTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1428
1442
  #
1429
1443
  # * {Types::CreateTargetGroupOutput#target_groups #target_groups} => Array&lt;Types::TargetGroup&gt;
@@ -1491,6 +1505,7 @@ module Aws::ElasticLoadBalancingV2
1491
1505
  # value: "TagValue",
1492
1506
  # },
1493
1507
  # ],
1508
+ # ip_address_type: "ipv4", # accepts ipv4, ipv6
1494
1509
  # })
1495
1510
  #
1496
1511
  # @example Response structure
@@ -1515,6 +1530,7 @@ module Aws::ElasticLoadBalancingV2
1515
1530
  # resp.target_groups[0].load_balancer_arns[0] #=> String
1516
1531
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
1517
1532
  # resp.target_groups[0].protocol_version #=> String
1533
+ # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
1518
1534
  #
1519
1535
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroup AWS API Documentation
1520
1536
  #
@@ -2318,6 +2334,10 @@ module Aws::ElasticLoadBalancingV2
2318
2334
  # @option params [Integer] :page_size
2319
2335
  # The maximum number of results to return with this call.
2320
2336
  #
2337
+ # @option params [String] :load_balancer_type
2338
+ # The type of load balancer. The default lists the SSL policies for all
2339
+ # load balancers.
2340
+ #
2321
2341
  # @return [Types::DescribeSSLPoliciesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2322
2342
  #
2323
2343
  # * {Types::DescribeSSLPoliciesOutput#ssl_policies #ssl_policies} => Array&lt;Types::SslPolicy&gt;
@@ -2432,6 +2452,7 @@ module Aws::ElasticLoadBalancingV2
2432
2452
  # names: ["SslPolicyName"],
2433
2453
  # marker: "Marker",
2434
2454
  # page_size: 1,
2455
+ # load_balancer_type: "application", # accepts application, network, gateway
2435
2456
  # })
2436
2457
  #
2437
2458
  # @example Response structure
@@ -2443,6 +2464,8 @@ module Aws::ElasticLoadBalancingV2
2443
2464
  # resp.ssl_policies[0].ciphers[0].name #=> String
2444
2465
  # resp.ssl_policies[0].ciphers[0].priority #=> Integer
2445
2466
  # resp.ssl_policies[0].name #=> String
2467
+ # resp.ssl_policies[0].supported_load_balancer_types #=> Array
2468
+ # resp.ssl_policies[0].supported_load_balancer_types[0] #=> String
2446
2469
  # resp.next_marker #=> String
2447
2470
  #
2448
2471
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeSSLPolicies AWS API Documentation
@@ -2694,6 +2717,7 @@ module Aws::ElasticLoadBalancingV2
2694
2717
  # resp.target_groups[0].load_balancer_arns[0] #=> String
2695
2718
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
2696
2719
  # resp.target_groups[0].protocol_version #=> String
2720
+ # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
2697
2721
  # resp.next_marker #=> String
2698
2722
  #
2699
2723
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetGroups AWS API Documentation
@@ -3659,6 +3683,7 @@ module Aws::ElasticLoadBalancingV2
3659
3683
  # resp.target_groups[0].load_balancer_arns[0] #=> String
3660
3684
  # resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
3661
3685
  # resp.target_groups[0].protocol_version #=> String
3686
+ # resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
3662
3687
  #
3663
3688
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroup AWS API Documentation
3664
3689
  #
@@ -4274,7 +4299,7 @@ module Aws::ElasticLoadBalancingV2
4274
4299
  params: params,
4275
4300
  config: config)
4276
4301
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4277
- context[:gem_version] = '1.68.0'
4302
+ context[:gem_version] = '1.72.0'
4278
4303
  Seahorse::Client::Request.new(handlers, context)
4279
4304
  end
4280
4305
 
@@ -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"))
@@ -519,6 +521,7 @@ module Aws::ElasticLoadBalancingV2
519
521
  DescribeSSLPoliciesInput.add_member(:names, Shapes::ShapeRef.new(shape: SslPolicyNames, location_name: "Names"))
520
522
  DescribeSSLPoliciesInput.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
521
523
  DescribeSSLPoliciesInput.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
524
+ DescribeSSLPoliciesInput.add_member(:load_balancer_type, Shapes::ShapeRef.new(shape: LoadBalancerTypeEnum, location_name: "LoadBalancerType"))
522
525
  DescribeSSLPoliciesInput.struct_class = Types::DescribeSSLPoliciesInput
523
526
 
524
527
  DescribeSSLPoliciesOutput.add_member(:ssl_policies, Shapes::ShapeRef.new(shape: SslPolicies, location_name: "SslPolicies"))
@@ -835,6 +838,7 @@ module Aws::ElasticLoadBalancingV2
835
838
  SslPolicy.add_member(:ssl_protocols, Shapes::ShapeRef.new(shape: SslProtocols, location_name: "SslProtocols"))
836
839
  SslPolicy.add_member(:ciphers, Shapes::ShapeRef.new(shape: Ciphers, location_name: "Ciphers"))
837
840
  SslPolicy.add_member(:name, Shapes::ShapeRef.new(shape: SslPolicyName, location_name: "Name"))
841
+ SslPolicy.add_member(:supported_load_balancer_types, Shapes::ShapeRef.new(shape: ListOfString, location_name: "SupportedLoadBalancerTypes"))
838
842
  SslPolicy.struct_class = Types::SslPolicy
839
843
 
840
844
  SslPolicyNames.member = Shapes::ShapeRef.new(shape: SslPolicyName)
@@ -891,6 +895,7 @@ module Aws::ElasticLoadBalancingV2
891
895
  TargetGroup.add_member(:load_balancer_arns, Shapes::ShapeRef.new(shape: LoadBalancerArns, location_name: "LoadBalancerArns"))
892
896
  TargetGroup.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
893
897
  TargetGroup.add_member(:protocol_version, Shapes::ShapeRef.new(shape: ProtocolVersion, location_name: "ProtocolVersion"))
898
+ TargetGroup.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
894
899
  TargetGroup.struct_class = Types::TargetGroup
895
900
 
896
901
  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
@@ -1638,6 +1646,7 @@ module Aws::ElasticLoadBalancingV2
1638
1646
  # names: ["SslPolicyName"],
1639
1647
  # marker: "Marker",
1640
1648
  # page_size: 1,
1649
+ # load_balancer_type: "application", # accepts application, network, gateway
1641
1650
  # }
1642
1651
  #
1643
1652
  # @!attribute [rw] names
@@ -1653,12 +1662,18 @@ module Aws::ElasticLoadBalancingV2
1653
1662
  # The maximum number of results to return with this call.
1654
1663
  # @return [Integer]
1655
1664
  #
1665
+ # @!attribute [rw] load_balancer_type
1666
+ # The type of load balancer. The default lists the SSL policies for
1667
+ # all load balancers.
1668
+ # @return [String]
1669
+ #
1656
1670
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeSSLPoliciesInput AWS API Documentation
1657
1671
  #
1658
1672
  class DescribeSSLPoliciesInput < Struct.new(
1659
1673
  :names,
1660
1674
  :marker,
1661
- :page_size)
1675
+ :page_size,
1676
+ :load_balancer_type)
1662
1677
  SENSITIVE = []
1663
1678
  include Aws::Structure
1664
1679
  end
@@ -2489,6 +2504,9 @@ module Aws::ElasticLoadBalancingV2
2489
2504
  #
2490
2505
  # For Network Load Balancers and Gateway Load Balancers, this must be
2491
2506
  # "200–399".
2507
+ #
2508
+ # Note that when using shorthand syntax, some values such as commas
2509
+ # need to be escaped.
2492
2510
  # @return [String]
2493
2511
  #
2494
2512
  # @!attribute [rw] grpc_code
@@ -3779,12 +3797,17 @@ module Aws::ElasticLoadBalancingV2
3779
3797
  # The name of the policy.
3780
3798
  # @return [String]
3781
3799
  #
3800
+ # @!attribute [rw] supported_load_balancer_types
3801
+ # The supported load balancers.
3802
+ # @return [Array<String>]
3803
+ #
3782
3804
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SslPolicy AWS API Documentation
3783
3805
  #
3784
3806
  class SslPolicy < Struct.new(
3785
3807
  :ssl_protocols,
3786
3808
  :ciphers,
3787
- :name)
3809
+ :name,
3810
+ :supported_load_balancer_types)
3788
3811
  SENSITIVE = []
3789
3812
  include Aws::Structure
3790
3813
  end
@@ -4024,6 +4047,12 @@ module Aws::ElasticLoadBalancingV2
4024
4047
  # are `GRPC`, `HTTP1`, and `HTTP2`.
4025
4048
  # @return [String]
4026
4049
  #
4050
+ # @!attribute [rw] ip_address_type
4051
+ # The type of IP address used for this target group. The possible
4052
+ # values are `ipv4` and `ipv6`. This is an optional parameter. If not
4053
+ # specified, the IP address type defaults to `ipv4`.
4054
+ # @return [String]
4055
+ #
4027
4056
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroup AWS API Documentation
4028
4057
  #
4029
4058
  class TargetGroup < Struct.new(
@@ -4043,7 +4072,8 @@ module Aws::ElasticLoadBalancingV2
4043
4072
  :matcher,
4044
4073
  :load_balancer_arns,
4045
4074
  :target_type,
4046
- :protocol_version)
4075
+ :protocol_version,
4076
+ :ip_address_type)
4047
4077
  SENSITIVE = []
4048
4078
  include Aws::Structure
4049
4079
  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.72.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.72.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-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.120.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement