aws-sdk-secretsmanager 1.109.0 → 1.111.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: 730b8496ed543075db0faa6d437c3610c1b6dbcd889880c1561cc689d3f97d07
4
- data.tar.gz: e9da4b25247aa0effae35bb95b498553c895551a71b6d8aab4dd93f6bdf0ac92
3
+ metadata.gz: 46551cd2494b894ff81d44a5d2627237ab2804953540a49f94bd9badbcecf813
4
+ data.tar.gz: 2b36c041fe3eabd5dc60e28b185c56b121c56ec7369bc5364168df3329356dd5
5
5
  SHA512:
6
- metadata.gz: eb0ca31f721dc545a7246049db3eb63ee2142d8e140c538154c2496f548646f2c0e724e1380382b811271d01e562eeb2ed29e990b9fa92ce3d16510ef12d5e5b
7
- data.tar.gz: 332fdf5c70c3978ff557ab7dee4d5fc6400f3114f2a7c5624fa58ab86881cc9b68c982bfe478218d8cbaa6eb40bb899fef361c44ecb130e17531d83f05640ebd
6
+ metadata.gz: 177216225df01bb76ed926dd9ee1a5fe140f3ac5b978070942d52649b5a9b6040ed0f92501f53425d23f49d8e037e60e7032fb0818f6277b67d4a0153b4bf7be
7
+ data.tar.gz: 701360a1b5d1d6c87338354d4698e4b1587c8d0c857b445494799e5419d9408810a43b684053f3b7c7a763056a8f03a69341d1982e7edcc5a0c56cd9f4ff7318
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.111.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.110.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.109.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.109.0
1
+ 1.111.0
@@ -257,11 +257,34 @@ module Aws::SecretsManager
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.
@@ -882,7 +905,7 @@ module Aws::SecretsManager
882
905
  # A list of tags to attach to the secret. Each tag is a key and value
883
906
  # pair of strings in a JSON text string, for example:
884
907
  #
885
- # `[\{"Key":"CostCenter","Value":"12345"\},\{"Key":"environment","Value":"production"\}]`
908
+ # `[{"Key":"CostCenter","Value":"12345"},{"Key":"environment","Value":"production"}]`
886
909
  #
887
910
  # Secrets Manager tag key names are case sensitive. A tag with the key
888
911
  # "ABC" is a different tag from one with key "abc".
@@ -1342,7 +1365,7 @@ module Aws::SecretsManager
1342
1365
  # length and include every character type that the system you are
1343
1366
  # generating a password for can support. By default, Secrets Manager
1344
1367
  # uses uppercase and lowercase letters, numbers, and the following
1345
- # characters in passwords: `` !"#$%&'()*+,-./:;<=>?@[\\]^_`\{|\}~ ``
1368
+ # characters in passwords: `` !"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~ ``
1346
1369
  #
1347
1370
  # Secrets Manager generates a CloudTrail log entry when you call this
1348
1371
  # action.
@@ -1370,7 +1393,7 @@ module Aws::SecretsManager
1370
1393
  # @option params [Boolean] :exclude_punctuation
1371
1394
  # Specifies whether to exclude the following punctuation characters from
1372
1395
  # the password: `` ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _
1373
- # ` \{ | \} ~ ``. If you don't include this switch, the password can
1396
+ # ` { | } ~ ``. If you don't include this switch, the password can
1374
1397
  # contain punctuation.
1375
1398
  #
1376
1399
  # @option params [Boolean] :exclude_uppercase
@@ -3395,7 +3418,7 @@ module Aws::SecretsManager
3395
3418
  tracer: tracer
3396
3419
  )
3397
3420
  context[:gem_name] = 'aws-sdk-secretsmanager'
3398
- context[:gem_version] = '1.109.0'
3421
+ context[:gem_version] = '1.111.0'
3399
3422
  Seahorse::Client::Request.new(handlers, context)
3400
3423
  end
3401
3424
 
@@ -274,7 +274,7 @@ module Aws::SecretsManager
274
274
  # A list of tags to attach to the secret. Each tag is a key and value
275
275
  # pair of strings in a JSON text string, for example:
276
276
  #
277
- # `[\{"Key":"CostCenter","Value":"12345"\},\{"Key":"environment","Value":"production"\}]`
277
+ # `[{"Key":"CostCenter","Value":"12345"},{"Key":"environment","Value":"production"}]`
278
278
  #
279
279
  # Secrets Manager tag key names are case sensitive. A tag with the key
280
280
  # "ABC" is a different tag from one with key "abc".
@@ -767,7 +767,7 @@ module Aws::SecretsManager
767
767
  # @!attribute [rw] exclude_punctuation
768
768
  # Specifies whether to exclude the following punctuation characters
769
769
  # from the password: `` ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [
770
- # \ ] ^ _ ` \{ | \} ~ ``. If you don't include this switch, the
770
+ # \ ] ^ _ ` { | } ~ ``. If you don't include this switch, the
771
771
  # password can contain punctuation.
772
772
  # @return [Boolean]
773
773
  #
@@ -54,7 +54,7 @@ module Aws::SecretsManager
54
54
  autoload :EndpointProvider, 'aws-sdk-secretsmanager/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-secretsmanager/endpoints'
56
56
 
57
- GEM_VERSION = '1.109.0'
57
+ GEM_VERSION = '1.111.0'
58
58
 
59
59
  end
60
60
 
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-secretsmanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.109.0
4
+ version: 1.111.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