aws-sdk-elasticloadbalancingv2 1.120.0 → 1.122.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: b70dd355b4e7c776f687b755b79caea77d4ab17a4433568a71251f782d0e782b
4
- data.tar.gz: e3ac69839072861e08a7628ad4ff803f7f776e1022be7e07e0b0fa8ea272de9e
3
+ metadata.gz: d91d828a1f8700080a9c4f5f87c36aa8bb017cdabca9274429c99dd5bf07b18e
4
+ data.tar.gz: dc4cae342956e223c344597206102690c68c5a59e85101b435abedc9d925b79a
5
5
  SHA512:
6
- metadata.gz: a44398192f3c1299819497c670c40c55554e73c37c7cb69deb8e5d7e2e4cdf8706c142820e458cdbce8692fa58220ce1786a0ef52e586820cc7d53c7764d1bec
7
- data.tar.gz: ed729207e33eeeba1bdc1dd5411a7ed682ab200c65c228a937c34977ae0a185e2c1206af372cf9295b8dd363c6dc850af1ebc00839bf5513f4e55890edbaceb7
6
+ metadata.gz: 6ce39125c7b2f0d160219515ae82704d6ea2694e7cc3582ea66b26063327a727381285975f7622624d31aa486115cab4cbdbe6b232e1ebfb74cc0080ecdeb5e8
7
+ data.tar.gz: 22385531394c5e0dfba9cdb6fa757821637d0800ae388c809eed436fb86a9ac299dedf285e04e3346025702b01fd946ef8c8a9a109fd8d7daad4ee9e08dfaba3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.122.0 (2024-11-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.121.0 (2024-11-06)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.120.0 (2024-10-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.120.0
1
+ 1.122.0
@@ -5096,7 +5096,7 @@ module Aws::ElasticLoadBalancingV2
5096
5096
  tracer: tracer
5097
5097
  )
5098
5098
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5099
- context[:gem_version] = '1.120.0'
5099
+ context[:gem_version] = '1.122.0'
5100
5100
  Seahorse::Client::Request.new(handlers, context)
5101
5101
  end
5102
5102
 
@@ -2445,7 +2445,6 @@ module Aws::ElasticLoadBalancingV2
2445
2445
  # * If the value is `remove`, the Application Load Balancer removes
2446
2446
  # the `X-Forwarded-For` header in the HTTP request before it sends
2447
2447
  # it to targets.
2448
- #
2449
2448
  # * `routing.http2.enabled` - Indicates whether HTTP/2 is enabled. The
2450
2449
  # possible values are `true` and `false`. The default is `true`.
2451
2450
  # Elastic Load Balancing requires that message header names contain
@@ -3022,39 +3021,39 @@ module Aws::ElasticLoadBalancingV2
3022
3021
  #
3023
3022
  # You can reuse URI components using the following reserved keywords:
3024
3023
  #
3025
- # * \#\\\{protocol\\}
3024
+ # * \#\{protocol}
3026
3025
  #
3027
- # * \#\\\{host\\}
3026
+ # * \#\{host}
3028
3027
  #
3029
- # * \#\\\{port\\}
3028
+ # * \#\{port}
3030
3029
  #
3031
- # * \#\\\{path\\} (the leading "/" is removed)
3030
+ # * \#\{path} (the leading "/" is removed)
3032
3031
  #
3033
- # * \#\\\{query\\}
3032
+ # * \#\{query}
3034
3033
  #
3035
- # For example, you can change the path to "/new/#\\\{path\\}", the
3036
- # hostname to "example.#\\\{host\\}", or the query to
3037
- # "#\\\{query\\}&value=xyz".
3034
+ # For example, you can change the path to "/new/#\{path}", the
3035
+ # hostname to "example.#\{host}", or the query to
3036
+ # "#\{query}&value=xyz".
3038
3037
  #
3039
3038
  # @!attribute [rw] protocol
3040
- # The protocol. You can specify HTTP, HTTPS, or #\\\{protocol\\}. You
3041
- # can redirect HTTP to HTTP, HTTP to HTTPS, and HTTPS to HTTPS. You
3042
- # can't redirect HTTPS to HTTP.
3039
+ # The protocol. You can specify HTTP, HTTPS, or #\{protocol}. You can
3040
+ # redirect HTTP to HTTP, HTTP to HTTPS, and HTTPS to HTTPS. You can't
3041
+ # redirect HTTPS to HTTP.
3043
3042
  # @return [String]
3044
3043
  #
3045
3044
  # @!attribute [rw] port
3046
- # The port. You can specify a value from 1 to 65535 or #\\\{port\\}.
3045
+ # The port. You can specify a value from 1 to 65535 or #\{port}.
3047
3046
  # @return [String]
3048
3047
  #
3049
3048
  # @!attribute [rw] host
3050
3049
  # The hostname. This component is not percent-encoded. The hostname
3051
- # can contain #\\\{host\\}.
3050
+ # can contain #\{host}.
3052
3051
  # @return [String]
3053
3052
  #
3054
3053
  # @!attribute [rw] path
3055
3054
  # The absolute path, starting with the leading "/". This component
3056
- # is not percent-encoded. The path can contain #\\\{host\\},
3057
- # #\\\{path\\}, and #\\\{port\\}.
3055
+ # is not percent-encoded. The path can contain #\{host}, #\{path}, and
3056
+ # #\{port}.
3058
3057
  # @return [String]
3059
3058
  #
3060
3059
  # @!attribute [rw] query
@@ -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.120.0'
58
+ GEM_VERSION = '1.122.0'
59
59
 
60
60
  end
61
61
 
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.120.0
4
+ version: 1.122.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: 2024-10-31 00:00:00.000000000 Z
11
+ date: 2024-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core