aws-sdk-elasticloadbalancingv2 1.72.0 → 1.76.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 318a32164bfa3f0110e8dc8f06d1a88f149f9cca3e5654aaed16ae0d7d53740d
4
- data.tar.gz: 2c94db7a0ff870fa887f8d7dc360628a53d92fd175306452e949a2d89afdf660
3
+ metadata.gz: 97ada9cfa7b50e6f138b88d1921792e53567d3f0b75ce6cde33983a4978ec99c
4
+ data.tar.gz: c9ed5a33b4c7e94e788ee5c7063eb40dfc199229161e656db71bd62552959619
5
5
  SHA512:
6
- metadata.gz: 9644bc6a075fdb260cb9fac423f5d4b18570e1df0d256eb7401e066abe0fc55255e4b99d578a00ebb2972cfbda259af8f2a93a49b93b035dc53628fd41d2fc87
7
- data.tar.gz: 6e3931c6811bc3d24286bc54eb35837904b3000b8b958a85889520b24c66ca4474e4c9700bdf4d7e5292f26099ed95a3c5f989205dd448ea877732965618c1af
6
+ metadata.gz: 165765f2db364470d438e0045c9c55a75b31fd06998d3342d9378c58472e6f75fc765f958e027eb97c0a9361e34527dd647e54401359c2884adfadc858cd2819
7
+ data.tar.gz: 45a0f84ebdca1d2a8f2ed5beb69d51e5d1b30cc2cb0b883394aa87771b665e6fdb3c892ec301d5f0bd0dd35666d03599489daa2b02e64dabb592414ed0dc1f2f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.76.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.75.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.74.0 (2021-11-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.73.0 (2021-11-23)
20
+ ------------------
21
+
22
+ * Feature - This release allows you to create internal Application and Network Load Balancers in dualstack mode. This release also adds an attribute to block internet gateway (IGW) access to the load balancer, preventing unintended access to your internal load balancers through an internet gateway.
23
+
4
24
  1.72.0 (2021-11-04)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.76.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/query.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::ElasticLoadBalancingV2
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::Query)
78
82
 
@@ -119,7 +123,9 @@ module Aws::ElasticLoadBalancingV2
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::ElasticLoadBalancingV2
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -295,7 +305,7 @@ module Aws::ElasticLoadBalancingV2
295
305
  # seconds to wait when opening a HTTP session before raising a
296
306
  # `Timeout::Error`.
297
307
  #
298
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
299
309
  # number of seconds to wait for response data. This value can
300
310
  # safely be set per-request on the session.
301
311
  #
@@ -311,6 +321,9 @@ module Aws::ElasticLoadBalancingV2
311
321
  # disables this behaviour. This value can safely be set per
312
322
  # request on the session.
313
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
314
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
315
328
  # HTTP debug output will be sent to the `:logger`.
316
329
  #
@@ -867,8 +880,7 @@ module Aws::ElasticLoadBalancingV2
867
880
  # @option params [String] :ip_address_type
868
881
  # The type of IP addresses used by the subnets for your load balancer.
869
882
  # The possible values are `ipv4` (for IPv4 addresses) and `dualstack`
870
- # (for IPv4 and IPv6 addresses). Internal load balancers must use
871
- # `ipv4`.
883
+ # (for IPv4 and IPv6 addresses).
872
884
  #
873
885
  # @option params [String] :customer_owned_ipv_4_pool
874
886
  # \[Application Load Balancers on Outposts\] The ID of the
@@ -3938,9 +3950,9 @@ module Aws::ElasticLoadBalancingV2
3938
3950
  #
3939
3951
  # @option params [required, String] :ip_address_type
3940
3952
  # The IP address type. The possible values are `ipv4` (for IPv4
3941
- # addresses) and `dualstack` (for IPv4 and IPv6 addresses). Internal
3942
- # load balancers must use `ipv4`. You can’t specify `dualstack` for a
3943
- # load balancer with a UDP or TCP\_UDP listener.
3953
+ # addresses) and `dualstack` (for IPv4 and IPv6 addresses). You can’t
3954
+ # specify `dualstack` for a load balancer with a UDP or TCP\_UDP
3955
+ # listener.
3944
3956
  #
3945
3957
  # @return [Types::SetIpAddressTypeOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3946
3958
  #
@@ -4214,7 +4226,7 @@ module Aws::ElasticLoadBalancingV2
4214
4226
  # subnets for your load balancer. The possible values are `ipv4` (for
4215
4227
  # IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses). You
4216
4228
  # can’t specify `dualstack` for a load balancer with a UDP or TCP\_UDP
4217
- # listener. Internal load balancers must use `ipv4`.
4229
+ # listener. .
4218
4230
  #
4219
4231
  # @return [Types::SetSubnetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4220
4232
  #
@@ -4299,7 +4311,7 @@ module Aws::ElasticLoadBalancingV2
4299
4311
  params: params,
4300
4312
  config: config)
4301
4313
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4302
- context[:gem_version] = '1.72.0'
4314
+ context[:gem_version] = '1.76.0'
4303
4315
  Seahorse::Client::Request.new(handlers, context)
4304
4316
  end
4305
4317
 
@@ -820,8 +820,7 @@ module Aws::ElasticLoadBalancingV2
820
820
  # @!attribute [rw] ip_address_type
821
821
  # The type of IP addresses used by the subnets for your load balancer.
822
822
  # The possible values are `ipv4` (for IPv4 addresses) and `dualstack`
823
- # (for IPv4 and IPv6 addresses). Internal load balancers must use
824
- # `ipv4`.
823
+ # (for IPv4 and IPv6 addresses).
825
824
  # @return [String]
826
825
  #
827
826
  # @!attribute [rw] customer_owned_ipv_4_pool
@@ -2388,6 +2387,12 @@ module Aws::ElasticLoadBalancingV2
2388
2387
  # * `access_logs.s3.prefix` - The prefix for the location in the S3
2389
2388
  # bucket for the access logs.
2390
2389
  #
2390
+ # * `ipv6.deny-all-igw-traffic` - Blocks internet gateway (IGW) access
2391
+ # to the load balancer. It is set to `false` for internet-facing
2392
+ # load balancers and `true` for internal load balancers, preventing
2393
+ # unintended access to your internal load balancer through an
2394
+ # internet gateway.
2395
+ #
2391
2396
  # The following attributes are supported by only Application Load
2392
2397
  # Balancers:
2393
2398
  #
@@ -3552,9 +3557,9 @@ module Aws::ElasticLoadBalancingV2
3552
3557
  #
3553
3558
  # @!attribute [rw] ip_address_type
3554
3559
  # The IP address type. The possible values are `ipv4` (for IPv4
3555
- # addresses) and `dualstack` (for IPv4 and IPv6 addresses). Internal
3556
- # load balancers must use `ipv4`. You can’t specify `dualstack` for a
3557
- # load balancer with a UDP or TCP\_UDP listener.
3560
+ # addresses) and `dualstack` (for IPv4 and IPv6 addresses). You can’t
3561
+ # specify `dualstack` for a load balancer with a UDP or TCP\_UDP
3562
+ # listener.
3558
3563
  # @return [String]
3559
3564
  #
3560
3565
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetIpAddressTypeInput AWS API Documentation
@@ -3719,7 +3724,7 @@ module Aws::ElasticLoadBalancingV2
3719
3724
  # subnets for your load balancer. The possible values are `ipv4` (for
3720
3725
  # IPv4 addresses) and `dualstack` (for IPv4 and IPv6 addresses). You
3721
3726
  # can’t specify `dualstack` for a load balancer with a UDP or TCP\_UDP
3722
- # listener. Internal load balancers must use `ipv4`.
3727
+ # listener. .
3723
3728
  # @return [String]
3724
3729
  #
3725
3730
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SetSubnetsInput AWS API Documentation
@@ -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.72.0'
52
+ GEM_VERSION = '1.76.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.72.0
4
+ version: 1.76.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-11-04 00:00:00.000000000 Z
11
+ date: 2022-02-03 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.122.0
22
+ version: 3.126.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.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement