aws-sdk-elasticbeanstalk 1.80.0 → 1.82.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: f4794dbd68caf8e1f09633e0aea1abd51ae33ec127b8266971ea8979ae2977ce
4
- data.tar.gz: 7def805333cc0aeb2805d1caf67db44504bda68e36331555d01477479b883e2c
3
+ metadata.gz: bd3bc28ca11b2914a0bae325bdbc198536b0ffb013eb0fffe5b95995410415d3
4
+ data.tar.gz: 2a42d8eaa3cda3b5fb330b7ec769109e5520c934cfcd229c9a42960a4f84e385
5
5
  SHA512:
6
- metadata.gz: f182c2355455a72f5132101961e39d436fcf2fdf13c0f0e9beb3a2ec204f000bdee859f76c21812ffaac92047a893827a879d23fb2690c0559ebbfed19f2de8f
7
- data.tar.gz: c5ad355076ca5e5e0bd647405e9e930283f243196651cbf3db4d38799c2817530f0318fd55122af857e136152f34b5fdf635feb3607cc511854b9b67d78c9f4e
6
+ metadata.gz: 8d1e515ab910840099e375b7b8e4e721b5bbfc9a240e0aa98b14f222258084cdc7b736bfa37334c86ea3ac639a64eab23fbcad09bcb48b073ce3f94623dd76ac
7
+ data.tar.gz: '061902167fe20cd2569fa1d0763c860e08baaed5e59c7f9548e0b49da94762b9217f4b9f47de0d76a98e99f8ffcd9453989fc897d699f9d85261a05e8f844ae3'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.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.81.0 (2024-11-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.80.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.82.0
@@ -257,11 +257,34 @@ module Aws::ElasticBeanstalk
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.
@@ -3187,20 +3210,17 @@ module Aws::ElasticBeanstalk
3187
3210
  # `contains` \| `in` \| `not_in`
3188
3211
  #
3189
3212
  # ^
3190
- #
3191
3213
  # * `Attribute = LifecycleState`:
3192
3214
  #
3193
3215
  # * `Operator`: `=` \| `!=` \| `in` \| `not_in`
3194
3216
  #
3195
3217
  # * `Values`: `beta` \| `supported` \| `deprecated` \| `retired`
3196
- #
3197
3218
  # * `Attribute = PlatformName`:
3198
3219
  #
3199
3220
  # * `Operator`: `=` \| `!=` \| `begins_with` \| `ends_with` \|
3200
3221
  # `contains` \| `in` \| `not_in`
3201
3222
  #
3202
3223
  # ^
3203
- #
3204
3224
  # * `Attribute = TierType`:
3205
3225
  #
3206
3226
  # * `Operator`: `=` \| `!=`
@@ -4626,7 +4646,7 @@ module Aws::ElasticBeanstalk
4626
4646
  tracer: tracer
4627
4647
  )
4628
4648
  context[:gem_name] = 'aws-sdk-elasticbeanstalk'
4629
- context[:gem_version] = '1.80.0'
4649
+ context[:gem_version] = '1.82.0'
4630
4650
  Seahorse::Client::Request.new(handlers, context)
4631
4651
  end
4632
4652
 
@@ -2815,20 +2815,17 @@ module Aws::ElasticBeanstalk
2815
2815
  # `contains` \| `in` \| `not_in`
2816
2816
  #
2817
2817
  # ^
2818
- #
2819
2818
  # * `Attribute = LifecycleState`:
2820
2819
  #
2821
2820
  # * `Operator`: `=` \| `!=` \| `in` \| `not_in`
2822
2821
  #
2823
2822
  # * `Values`: `beta` \| `supported` \| `deprecated` \| `retired`
2824
- #
2825
2823
  # * `Attribute = PlatformName`:
2826
2824
  #
2827
2825
  # * `Operator`: `=` \| `!=` \| `begins_with` \| `ends_with` \|
2828
2826
  # `contains` \| `in` \| `not_in`
2829
2827
  #
2830
2828
  # ^
2831
- #
2832
2829
  # * `Attribute = TierType`:
2833
2830
  #
2834
2831
  # * `Operator`: `=` \| `!=`
@@ -55,7 +55,7 @@ module Aws::ElasticBeanstalk
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticbeanstalk/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticbeanstalk/endpoints'
57
57
 
58
- GEM_VERSION = '1.80.0'
58
+ GEM_VERSION = '1.82.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),
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),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticbeanstalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.80.0
4
+ version: 1.82.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-18 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