aws-sdk-elasticloadbalancingv2 1.124.0 → 1.126.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: cc60381b7cef624b030ac7284a9debaa999367e2e5b284787e9ce5a93d0984ca
4
- data.tar.gz: 3b15fa3ee038e48ecd1b7e87a70a134648367430b84a27c99ea7cf00a6d37c84
3
+ metadata.gz: 8599c471db2b48d86e177065fbe991310fb1fc32d980d289ce3e1361d29ab206
4
+ data.tar.gz: 9370acfbe3a22635e65d426d369fc601bdab0b4df03f3bffddd5fb3f32e9252b
5
5
  SHA512:
6
- metadata.gz: 3798c5fd1f79d7b40dddf1499385abf4d4af1b8b5e0fa8905ff0670f9e86a22162d84bbc38de8242fa89e3f0f9cd76ce941da608e9445b720c9221b95ae69078
7
- data.tar.gz: '07409836613935c684b153b45e0e9f04c206f8d24c35fece969e80e405558dbaf30fd43bde5a0af7b7c4bc1b160c9ad886bb795b470d203dd29158b5b7ac8ed0'
6
+ metadata.gz: 9bc7be8ce0d278e52abb251b3334d554f0444290fd3fd61bd52f7f9e0bc4270ada7fc3361ac3e102b86b48864f2b69676635e0e40e6fb00945bba849e827eaf8
7
+ data.tar.gz: 1a1f326c14d136184051e4c8ccd4070352d44f859e55655e6722b2c0268f1b0630771e7c8287df7801107edd46fe496405395cb046b8fdb5fd0d22f1da63bdb8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.126.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.125.0 (2024-11-22)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for advertising trusted CA certificate names in associated trust stores.
13
+
4
14
  1.124.0 (2024-11-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.124.0
1
+ 1.126.0
@@ -257,11 +257,34 @@ module Aws::ElasticLoadBalancingV2
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -860,6 +883,7 @@ module Aws::ElasticLoadBalancingV2
860
883
  # trust_store_arn: "TrustStoreArn",
861
884
  # ignore_client_certificate_expiry: false,
862
885
  # trust_store_association_status: "active", # accepts active, removed
886
+ # advertise_trust_store_ca_names: "on", # accepts on, off
863
887
  # },
864
888
  # })
865
889
  #
@@ -920,6 +944,7 @@ module Aws::ElasticLoadBalancingV2
920
944
  # resp.listeners[0].mutual_authentication.trust_store_arn #=> String
921
945
  # resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
922
946
  # resp.listeners[0].mutual_authentication.trust_store_association_status #=> String, one of "active", "removed"
947
+ # resp.listeners[0].mutual_authentication.advertise_trust_store_ca_names #=> String, one of "on", "off"
923
948
  #
924
949
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateListener AWS API Documentation
925
950
  #
@@ -2373,6 +2398,7 @@ module Aws::ElasticLoadBalancingV2
2373
2398
  # resp.listeners[0].mutual_authentication.trust_store_arn #=> String
2374
2399
  # resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
2375
2400
  # resp.listeners[0].mutual_authentication.trust_store_association_status #=> String, one of "active", "removed"
2401
+ # resp.listeners[0].mutual_authentication.advertise_trust_store_ca_names #=> String, one of "on", "off"
2376
2402
  # resp.next_marker #=> String
2377
2403
  #
2378
2404
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeListeners AWS API Documentation
@@ -3798,6 +3824,7 @@ module Aws::ElasticLoadBalancingV2
3798
3824
  # trust_store_arn: "TrustStoreArn",
3799
3825
  # ignore_client_certificate_expiry: false,
3800
3826
  # trust_store_association_status: "active", # accepts active, removed
3827
+ # advertise_trust_store_ca_names: "on", # accepts on, off
3801
3828
  # },
3802
3829
  # })
3803
3830
  #
@@ -3858,6 +3885,7 @@ module Aws::ElasticLoadBalancingV2
3858
3885
  # resp.listeners[0].mutual_authentication.trust_store_arn #=> String
3859
3886
  # resp.listeners[0].mutual_authentication.ignore_client_certificate_expiry #=> Boolean
3860
3887
  # resp.listeners[0].mutual_authentication.trust_store_association_status #=> String, one of "active", "removed"
3888
+ # resp.listeners[0].mutual_authentication.advertise_trust_store_ca_names #=> String, one of "on", "off"
3861
3889
  #
3862
3890
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyListener AWS API Documentation
3863
3891
  #
@@ -5186,7 +5214,7 @@ module Aws::ElasticLoadBalancingV2
5186
5214
  tracer: tracer
5187
5215
  )
5188
5216
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5189
- context[:gem_version] = '1.124.0'
5217
+ context[:gem_version] = '1.126.0'
5190
5218
  Seahorse::Client::Request.new(handlers, context)
5191
5219
  end
5192
5220
 
@@ -26,6 +26,7 @@ module Aws::ElasticLoadBalancingV2
26
26
  AddTrustStoreRevocationsInput = Shapes::StructureShape.new(name: 'AddTrustStoreRevocationsInput')
27
27
  AddTrustStoreRevocationsOutput = Shapes::StructureShape.new(name: 'AddTrustStoreRevocationsOutput')
28
28
  AdministrativeOverride = Shapes::StructureShape.new(name: 'AdministrativeOverride')
29
+ AdvertiseTrustStoreCaNamesEnum = Shapes::StringShape.new(name: 'AdvertiseTrustStoreCaNamesEnum')
29
30
  AllocationId = Shapes::StringShape.new(name: 'AllocationId')
30
31
  AllocationIdNotFoundException = Shapes::StructureShape.new(name: 'AllocationIdNotFoundException', error: {"code"=>"AllocationIdNotFound", "httpStatusCode"=>400, "senderFault"=>true})
31
32
  AlpnPolicyName = Shapes::ListShape.new(name: 'AlpnPolicyName')
@@ -1009,6 +1010,7 @@ module Aws::ElasticLoadBalancingV2
1009
1010
  MutualAuthenticationAttributes.add_member(:trust_store_arn, Shapes::ShapeRef.new(shape: TrustStoreArn, location_name: "TrustStoreArn"))
1010
1011
  MutualAuthenticationAttributes.add_member(:ignore_client_certificate_expiry, Shapes::ShapeRef.new(shape: IgnoreClientCertificateExpiry, location_name: "IgnoreClientCertificateExpiry"))
1011
1012
  MutualAuthenticationAttributes.add_member(:trust_store_association_status, Shapes::ShapeRef.new(shape: TrustStoreAssociationStatusEnum, location_name: "TrustStoreAssociationStatus"))
1013
+ MutualAuthenticationAttributes.add_member(:advertise_trust_store_ca_names, Shapes::ShapeRef.new(shape: AdvertiseTrustStoreCaNamesEnum, location_name: "AdvertiseTrustStoreCaNames"))
1012
1014
  MutualAuthenticationAttributes.struct_class = Types::MutualAuthenticationAttributes
1013
1015
 
1014
1016
  OperationNotPermittedException.struct_class = Types::OperationNotPermittedException
@@ -3143,13 +3143,18 @@ module Aws::ElasticLoadBalancingV2
3143
3143
  # Indicates a shared trust stores association status.
3144
3144
  # @return [String]
3145
3145
  #
3146
+ # @!attribute [rw] advertise_trust_store_ca_names
3147
+ # Indicates whether trust store CA certificate names are advertised.
3148
+ # @return [String]
3149
+ #
3146
3150
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/MutualAuthenticationAttributes AWS API Documentation
3147
3151
  #
3148
3152
  class MutualAuthenticationAttributes < Struct.new(
3149
3153
  :mode,
3150
3154
  :trust_store_arn,
3151
3155
  :ignore_client_certificate_expiry,
3152
- :trust_store_association_status)
3156
+ :trust_store_association_status,
3157
+ :advertise_trust_store_ca_names)
3153
3158
  SENSITIVE = []
3154
3159
  include Aws::Structure
3155
3160
  end
@@ -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.124.0'
58
+ GEM_VERSION = '1.126.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -207,7 +209,8 @@ module Aws
207
209
  mode: ::String?,
208
210
  trust_store_arn: ::String?,
209
211
  ignore_client_certificate_expiry: bool?,
210
- trust_store_association_status: ("active" | "removed")?
212
+ trust_store_association_status: ("active" | "removed")?,
213
+ advertise_trust_store_ca_names: ("on" | "off")?
211
214
  }
212
215
  ) -> _CreateListenerResponseSuccess
213
216
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateListenerResponseSuccess
@@ -804,7 +807,8 @@ module Aws
804
807
  mode: ::String?,
805
808
  trust_store_arn: ::String?,
806
809
  ignore_client_certificate_expiry: bool?,
807
- trust_store_association_status: ("active" | "removed")?
810
+ trust_store_association_status: ("active" | "removed")?,
811
+ advertise_trust_store_ca_names: ("on" | "off")?
808
812
  }
809
813
  ) -> _ModifyListenerResponseSuccess
810
814
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyListenerResponseSuccess
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -808,6 +808,7 @@ module Aws::ElasticLoadBalancingV2
808
808
  attr_accessor trust_store_arn: ::String
809
809
  attr_accessor ignore_client_certificate_expiry: bool
810
810
  attr_accessor trust_store_association_status: ("active" | "removed")
811
+ attr_accessor advertise_trust_store_ca_names: ("on" | "off")
811
812
  SENSITIVE: []
812
813
  end
813
814
 
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.124.0
4
+ version: 1.126.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-21 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement