aws-sdk-secretsmanager 1.93.0 → 1.94.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-secretsmanager/client.rb +6 -4
- data/lib/aws-sdk-secretsmanager/client_api.rb +1 -0
- data/lib/aws-sdk-secretsmanager/types.rb +7 -3
- data/lib/aws-sdk-secretsmanager.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 90b6b17beac96a75fa114deedc7f2b0fc5d111589a6ebecac0d650247ca7e06f
|
|
4
|
+
data.tar.gz: 1fba70e32ac03688b5aba70ce39a9a1d7f0e29a84d6fb75700e7da47042bbd18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 372c9d992882113d256286a9fb08ebf971ab87128f53faa9ba996b73c6e8d2dca539e799cfbaa702df5672488cf7296f8fb59d1259b5dcf41082ed598a02a91d
|
|
7
|
+
data.tar.gz: 3f746dc848647d512b379a891ec1591b74e26358a854421b232788189bf8f7faa20358e5477a681ac1404f66831f3568b85f16b1a4204e4926bb9a29b391b6f2
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.94.0
|
|
@@ -1501,7 +1501,8 @@ module Aws::SecretsManager
|
|
|
1501
1501
|
# [5]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
|
|
1502
1502
|
#
|
|
1503
1503
|
# @option params [required, String] :secret_id
|
|
1504
|
-
# The ARN or name of the secret to retrieve.
|
|
1504
|
+
# The ARN or name of the secret to retrieve. To retrieve a secret from
|
|
1505
|
+
# another account, you must use an ARN.
|
|
1505
1506
|
#
|
|
1506
1507
|
# For an ARN, we recommend that you specify a complete ARN rather than a
|
|
1507
1508
|
# partial ARN. See [Finding a secret from a partial ARN][1].
|
|
@@ -2497,7 +2498,7 @@ module Aws::SecretsManager
|
|
|
2497
2498
|
#
|
|
2498
2499
|
#
|
|
2499
2500
|
#
|
|
2500
|
-
# [1]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/rotate-
|
|
2501
|
+
# [1]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/rotate-secrets_lambda-functions.html#rotate-secrets_lambda-functions-code
|
|
2501
2502
|
#
|
|
2502
2503
|
# @return [Types::RotateSecretResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2503
2504
|
#
|
|
@@ -3217,7 +3218,8 @@ module Aws::SecretsManager
|
|
|
3217
3218
|
# [4]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access.html
|
|
3218
3219
|
#
|
|
3219
3220
|
# @option params [String] :secret_id
|
|
3220
|
-
#
|
|
3221
|
+
# The ARN or name of the secret with the resource-based policy you want
|
|
3222
|
+
# to validate.
|
|
3221
3223
|
#
|
|
3222
3224
|
# @option params [required, String] :resource_policy
|
|
3223
3225
|
# A JSON-formatted string that contains an Amazon Web Services
|
|
@@ -3287,7 +3289,7 @@ module Aws::SecretsManager
|
|
|
3287
3289
|
params: params,
|
|
3288
3290
|
config: config)
|
|
3289
3291
|
context[:gem_name] = 'aws-sdk-secretsmanager'
|
|
3290
|
-
context[:gem_version] = '1.
|
|
3292
|
+
context[:gem_version] = '1.94.0'
|
|
3291
3293
|
Seahorse::Client::Request.new(handlers, context)
|
|
3292
3294
|
end
|
|
3293
3295
|
|
|
@@ -531,6 +531,7 @@ module Aws::SecretsManager
|
|
|
531
531
|
"endpointPrefix" => "secretsmanager",
|
|
532
532
|
"jsonVersion" => "1.1",
|
|
533
533
|
"protocol" => "json",
|
|
534
|
+
"protocols" => ["json"],
|
|
534
535
|
"serviceFullName" => "AWS Secrets Manager",
|
|
535
536
|
"serviceId" => "Secrets Manager",
|
|
536
537
|
"signatureVersion" => "v4",
|
|
@@ -527,6 +527,8 @@ module Aws::SecretsManager
|
|
|
527
527
|
#
|
|
528
528
|
# @!attribute [rw] rotation_enabled
|
|
529
529
|
# Specifies whether automatic rotation is turned on for this secret.
|
|
530
|
+
# If the secret has never been configured for rotation, Secrets
|
|
531
|
+
# Manager returns null.
|
|
530
532
|
#
|
|
531
533
|
# To turn on rotation, use RotateSecret. To turn off rotation, use
|
|
532
534
|
# CancelRotateSecret.
|
|
@@ -861,7 +863,8 @@ module Aws::SecretsManager
|
|
|
861
863
|
end
|
|
862
864
|
|
|
863
865
|
# @!attribute [rw] secret_id
|
|
864
|
-
# The ARN or name of the secret to retrieve.
|
|
866
|
+
# The ARN or name of the secret to retrieve. To retrieve a secret from
|
|
867
|
+
# another account, you must use an ARN.
|
|
865
868
|
#
|
|
866
869
|
# For an ARN, we recommend that you specify a complete ARN rather than
|
|
867
870
|
# a partial ARN. See [Finding a secret from a partial ARN][1].
|
|
@@ -1705,7 +1708,7 @@ module Aws::SecretsManager
|
|
|
1705
1708
|
#
|
|
1706
1709
|
#
|
|
1707
1710
|
#
|
|
1708
|
-
# [1]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/rotate-
|
|
1711
|
+
# [1]: https://docs.aws.amazon.com/secretsmanager/latest/userguide/rotate-secrets_lambda-functions.html#rotate-secrets_lambda-functions-code
|
|
1709
1712
|
# @return [Boolean]
|
|
1710
1713
|
#
|
|
1711
1714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/secretsmanager-2017-10-17/RotateSecretRequest AWS API Documentation
|
|
@@ -2365,7 +2368,8 @@ module Aws::SecretsManager
|
|
|
2365
2368
|
end
|
|
2366
2369
|
|
|
2367
2370
|
# @!attribute [rw] secret_id
|
|
2368
|
-
#
|
|
2371
|
+
# The ARN or name of the secret with the resource-based policy you
|
|
2372
|
+
# want to validate.
|
|
2369
2373
|
# @return [String]
|
|
2370
2374
|
#
|
|
2371
2375
|
# @!attribute [rw] resource_policy
|
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.
|
|
4
|
+
version: 1.94.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-05-
|
|
11
|
+
date: 2024-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|