@aws-sdk/client-secrets-manager 3.43.0 → 3.45.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.
- package/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/dist-cjs/endpoints.js +1 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-types/SecretsManager.d.ts +142 -727
- package/dist-types/SecretsManagerClient.d.ts +1 -1
- package/dist-types/commands/CancelRotateSecretCommand.d.ts +7 -49
- package/dist-types/commands/CreateSecretCommand.d.ts +19 -87
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +2 -24
- package/dist-types/commands/DeleteSecretCommand.d.ts +9 -42
- package/dist-types/commands/DescribeSecretCommand.d.ts +2 -28
- package/dist-types/commands/GetRandomPasswordCommand.d.ts +1 -11
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +4 -27
- package/dist-types/commands/GetSecretValueCommand.d.ts +4 -25
- package/dist-types/commands/ListSecretVersionIdsCommand.d.ts +6 -25
- package/dist-types/commands/ListSecretsCommand.d.ts +7 -26
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +4 -31
- package/dist-types/commands/PutSecretValueCommand.d.ts +15 -83
- package/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +1 -1
- package/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +1 -2
- package/dist-types/commands/RestoreSecretCommand.d.ts +1 -18
- package/dist-types/commands/RotateSecretCommand.d.ts +17 -60
- package/dist-types/commands/StopReplicationToReplicaCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +8 -29
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -21
- package/dist-types/commands/UpdateSecretCommand.d.ts +19 -83
- package/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +6 -28
- package/dist-types/commands/ValidateResourcePolicyCommand.d.ts +5 -25
- package/dist-types/models/models_0.d.ts +400 -479
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-secrets-manager
|
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ You should always submit the input as a single JSON text string.</p>
|
|
|
61
61
|
account and delivers log files to an Amazon S3 bucket. By using information that's collected
|
|
62
62
|
by Amazon Web Services CloudTrail, you can determine the requests successfully made to Secrets Manager, who made the
|
|
63
63
|
request, when it was made, and so on. For more about Amazon Web Services Secrets Manager and support for Amazon Web Services
|
|
64
|
-
CloudTrail, see <a href="
|
|
64
|
+
CloudTrail, see <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/monitoring.html#monitoring_cloudtrail">Logging
|
|
65
65
|
Amazon Web Services Secrets Manager Events with Amazon Web Services CloudTrail</a> in the <i>Amazon Web Services Secrets Manager User Guide</i>.
|
|
66
66
|
To learn more about CloudTrail, including enabling it and find your log files, see the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html">Amazon Web Services CloudTrail User Guide</a>.</p>
|
|
67
67
|
|
package/dist-cjs/endpoints.js
CHANGED