aws-sdk-elasticloadbalancingv2 1.123.0 → 1.124.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: 8dc59829b736cf8dce62db23beb944a4fb60576940085d7446a0775d01d0c281
4
- data.tar.gz: 06522a049c6d1b659ac8a2b431c36571e337b28216012da5b2547614f31d6571
3
+ metadata.gz: cc60381b7cef624b030ac7284a9debaa999367e2e5b284787e9ce5a93d0984ca
4
+ data.tar.gz: 3b15fa3ee038e48ecd1b7e87a70a134648367430b84a27c99ea7cf00a6d37c84
5
5
  SHA512:
6
- metadata.gz: e0d92d02ab91e4fee8c4c4b4532b49bd116f269b776bad4b9dc19b876bfd9470d72059cfdb648317a3e63d717852be99dc3a7fdc30c0c01d226b30a3ca3ecb37
7
- data.tar.gz: eb5b1767936df38fd82e13c782cf9ad0d829ae3e79f205ab61ee629e1ee47d68b9452a96427b5d8662620e4a92b3af2894a37cf054e01797d5255357a5165ac0
6
+ metadata.gz: 3798c5fd1f79d7b40dddf1499385abf4d4af1b8b5e0fa8905ff0670f9e86a22162d84bbc38de8242fa89e3f0f9cd76ce941da608e9445b720c9221b95ae69078
7
+ data.tar.gz: '07409836613935c684b153b45e0e9f04c206f8d24c35fece969e80e405558dbaf30fd43bde5a0af7b7c4bc1b160c9ad886bb795b470d203dd29158b5b7ac8ed0'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.124.0 (2024-11-21)
5
+ ------------------
6
+
7
+ * Feature - This feature adds support for enabling zonal shift on cross-zone enabled Application Load Balancer, as well as modifying HTTP request and response headers.
8
+
4
9
  1.123.0 (2024-11-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.123.0
1
+ 1.124.0
@@ -5186,7 +5186,7 @@ module Aws::ElasticLoadBalancingV2
5186
5186
  tracer: tracer
5187
5187
  )
5188
5188
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5189
- context[:gem_version] = '1.123.0'
5189
+ context[:gem_version] = '1.124.0'
5190
5190
  Seahorse::Client::Request.new(handlers, context)
5191
5191
  end
5192
5192
 
@@ -2256,6 +2256,83 @@ module Aws::ElasticLoadBalancingV2
2256
2256
  # seconds.
2257
2257
  #
2258
2258
  # ^
2259
+ #
2260
+ # The following attributes are only supported by Application Load
2261
+ # Balancers.
2262
+ #
2263
+ # * `routing.http.request.x_amzn_mtls_clientcert_serial_number.header_name`
2264
+ # - Enables you to modify the header name of the
2265
+ # **X-Amzn-Mtls-Clientcert-Serial-Number** HTTP request header.
2266
+ #
2267
+ # * `routing.http.request.x_amzn_mtls_clientcert_issuer.header_name` -
2268
+ # Enables you to modify the header name of the
2269
+ # **X-Amzn-Mtls-Clientcert-Issuer** HTTP request header.
2270
+ #
2271
+ # * `routing.http.request.x_amzn_mtls_clientcert_subject.header_name`
2272
+ # - Enables you to modify the header name of the
2273
+ # **X-Amzn-Mtls-Clientcert-Subject** HTTP request header.
2274
+ #
2275
+ # * `routing.http.request.x_amzn_mtls_clientcert_validity.header_name`
2276
+ # - Enables you to modify the header name of the
2277
+ # **X-Amzn-Mtls-Clientcert-Validity** HTTP request header.
2278
+ #
2279
+ # * `routing.http.request.x_amzn_mtls_clientcert_leaf.header_name` -
2280
+ # Enables you to modify the header name of the
2281
+ # **X-Amzn-Mtls-Clientcert-Leaf** HTTP request header.
2282
+ #
2283
+ # * `routing.http.request.x_amzn_mtls_clientcert.header_name` -
2284
+ # Enables you to modify the header name of the
2285
+ # **X-Amzn-Mtls-Clientcert** HTTP request header.
2286
+ #
2287
+ # * `routing.http.request.x_amzn_tls_version.header_name` - Enables
2288
+ # you to modify the header name of the **X-Amzn-Tls-Version** HTTP
2289
+ # request header.
2290
+ #
2291
+ # * `routing.http.request.x_amzn_tls_cipher_suite.header_name` -
2292
+ # Enables you to modify the header name of the
2293
+ # **X-Amzn-Tls-Cipher-Suite** HTTP request header.
2294
+ #
2295
+ # * `routing.http.response.server.enabled` - Enables you to allow or
2296
+ # remove the HTTP response server header.
2297
+ #
2298
+ # * `routing.http.response.strict_transport_security.header_value` -
2299
+ # Informs browsers that the site should only be accessed using
2300
+ # HTTPS, and that any future attempts to access it using HTTP should
2301
+ # automatically be converted to HTTPS.
2302
+ #
2303
+ # * `routing.http.response.access_control_allow_origin.header_value` -
2304
+ # Specifies which origins are allowed to access the server.
2305
+ #
2306
+ # * `routing.http.response.access_control_allow_methods.header_value`
2307
+ # - Returns which HTTP methods are allowed when accessing the server
2308
+ # from a different origin.
2309
+ #
2310
+ # * `routing.http.response.access_control_allow_headers.header_value`
2311
+ # - Specifies which headers can be used during the request.
2312
+ #
2313
+ # * `routing.http.response.access_control_allow_credentials.header_value`
2314
+ # - Indicates whether the browser should include credentials such as
2315
+ # cookies or authentication when making requests.
2316
+ #
2317
+ # * `routing.http.response.access_control_expose_headers.header_value`
2318
+ # - Returns which headers the browser can expose to the requesting
2319
+ # client.
2320
+ #
2321
+ # * `routing.http.response.access_control_max_age.header_value` -
2322
+ # Specifies how long the results of a preflight request can be
2323
+ # cached, in seconds.
2324
+ #
2325
+ # * `routing.http.response.content_security_policy.header_value` -
2326
+ # Specifies restrictions enforced by the browser to help minimize
2327
+ # the risk of certain types of security threats.
2328
+ #
2329
+ # * `routing.http.response.x_content_type_options.header_value` -
2330
+ # Indicates whether the MIME types advertised in the
2331
+ # **Content-Type** headers should be followed and not be changed.
2332
+ #
2333
+ # * `routing.http.response.x_frame_options.header_value` - Indicates
2334
+ # whether the browser is allowed to render a page in a **frame**,
2335
+ # **iframe**, **embed** or **object**.
2259
2336
  # @return [String]
2260
2337
  #
2261
2338
  # @!attribute [rw] value
@@ -2456,6 +2533,10 @@ module Aws::ElasticLoadBalancingV2
2456
2533
  # unintended access to your internal load balancer through an
2457
2534
  # internet gateway.
2458
2535
  #
2536
+ # * `zonal_shift.config.enabled` - Indicates whether zonal shift is
2537
+ # enabled. The possible values are `true` and `false`. The default
2538
+ # is `false`.
2539
+ #
2459
2540
  # The following attributes are supported by only Application Load
2460
2541
  # Balancers:
2461
2542
  #
@@ -2548,9 +2629,7 @@ module Aws::ElasticLoadBalancingV2
2548
2629
  # percent zonal affinity, and `any_availability_zone` with 0 percent
2549
2630
  # zonal affinity.
2550
2631
  #
2551
- # * `zonal_shift.config.enabled` - Indicates whether zonal shift is
2552
- # enabled. The possible values are `true` and `false`. The default
2553
- # is `false`.
2632
+ # ^
2554
2633
  # @return [String]
2555
2634
  #
2556
2635
  # @!attribute [rw] value
@@ -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.123.0'
58
+ GEM_VERSION = '1.124.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.123.0
4
+ version: 1.124.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-11-20 00:00:00.000000000 Z
11
+ date: 2024-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core