@aws-sdk/client-secrets-manager 3.109.0 → 3.118.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 CHANGED
@@ -3,6 +3,30 @@
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.118.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.117.0...v3.118.0) (2022-06-24)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-secrets-manager
9
+
10
+
11
+
12
+
13
+
14
+ # [3.112.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.111.0...v3.112.0) (2022-06-16)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-secrets-manager
17
+
18
+
19
+
20
+
21
+
22
+ # [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
23
+
24
+ **Note:** Version bump only for package @aws-sdk/client-secrets-manager
25
+
26
+
27
+
28
+
29
+
6
30
  # [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
7
31
 
8
32
  **Note:** Version bump only for package @aws-sdk/client-secrets-manager
@@ -239,6 +239,8 @@ export declare class SecretsManager extends SecretsManagerClient {
239
239
  /**
240
240
  * <p>Lists the secrets that are stored by Secrets Manager in the Amazon Web Services account, not including secrets
241
241
  * that are marked for deletion. To see secrets marked for deletion, use the Secrets Manager console.</p>
242
+ * <p>ListSecrets is eventually consistent, however it might not reflect changes from the last five minutes.
243
+ * To get the latest information for a specific secret, use <a>DescribeSecret</a>.</p>
242
244
  * <p>To list the versions of a secret, use <a>ListSecretVersionIds</a>.</p>
243
245
  * <p>To get the secret value from <code>SecretString</code> or <code>SecretBinary</code>,
244
246
  * call <a>GetSecretValue</a>.</p>
@@ -301,8 +303,8 @@ export declare class SecretsManager extends SecretsManagerClient {
301
303
  * <p>If this operation moves the staging label <code>AWSCURRENT</code> from another version to this
302
304
  * version, then Secrets Manager also automatically moves the staging label <code>AWSPREVIOUS</code> to
303
305
  * the version that <code>AWSCURRENT</code> was removed from.</p>
304
- * <p>This operation is idempotent. If a version with a <code>VersionId</code> with the same
305
- * value as the <code>ClientRequestToken</code> parameter already exists, and you specify the
306
+ * <p>This operation is idempotent. If you call this operation with a <code>ClientRequestToken</code>
307
+ * that matches an existing version's VersionId, and you specify the
306
308
  * same secret data, the operation succeeds but does nothing. However, if the secret data is
307
309
  * different, then the operation fails because you can't modify an existing version; you can
308
310
  * only create new ones.</p>
@@ -483,8 +485,8 @@ export declare class SecretsManager extends SecretsManagerClient {
483
485
  * <p>If you include <code>SecretString</code> or <code>SecretBinary</code> to create a new
484
486
  * secret version, Secrets Manager automatically attaches the staging label <code>AWSCURRENT</code> to the new
485
487
  * version. </p>
486
- * <p>If you call this operation with a <code>VersionId</code> that matches an existing version's
487
- * <code>ClientRequestToken</code>, the operation results in an error. You can't modify an existing
488
+ * <p>If you call this operation with a <code>ClientRequestToken</code> that matches an existing version's
489
+ * <code>VersionId</code>, the operation results in an error. You can't modify an existing
488
490
  * version, you can only create a new version. To remove a version, remove all staging labels from it. See
489
491
  * <a>UpdateSecretVersionStage</a>.</p>
490
492
  * <p>If you don't specify an KMS encryption key, Secrets Manager uses the Amazon Web Services managed key
@@ -9,6 +9,8 @@ export interface ListSecretsCommandOutput extends ListSecretsResponse, __Metadat
9
9
  /**
10
10
  * <p>Lists the secrets that are stored by Secrets Manager in the Amazon Web Services account, not including secrets
11
11
  * that are marked for deletion. To see secrets marked for deletion, use the Secrets Manager console.</p>
12
+ * <p>ListSecrets is eventually consistent, however it might not reflect changes from the last five minutes.
13
+ * To get the latest information for a specific secret, use <a>DescribeSecret</a>.</p>
12
14
  * <p>To list the versions of a secret, use <a>ListSecretVersionIds</a>.</p>
13
15
  * <p>To get the secret value from <code>SecretString</code> or <code>SecretBinary</code>,
14
16
  * call <a>GetSecretValue</a>.</p>
@@ -23,8 +23,8 @@ export interface PutSecretValueCommandOutput extends PutSecretValueResponse, __M
23
23
  * <p>If this operation moves the staging label <code>AWSCURRENT</code> from another version to this
24
24
  * version, then Secrets Manager also automatically moves the staging label <code>AWSPREVIOUS</code> to
25
25
  * the version that <code>AWSCURRENT</code> was removed from.</p>
26
- * <p>This operation is idempotent. If a version with a <code>VersionId</code> with the same
27
- * value as the <code>ClientRequestToken</code> parameter already exists, and you specify the
26
+ * <p>This operation is idempotent. If you call this operation with a <code>ClientRequestToken</code>
27
+ * that matches an existing version's VersionId, and you specify the
28
28
  * same secret data, the operation succeeds but does nothing. However, if the secret data is
29
29
  * different, then the operation fails because you can't modify an existing version; you can
30
30
  * only create new ones.</p>
@@ -19,8 +19,8 @@ export interface UpdateSecretCommandOutput extends UpdateSecretResponse, __Metad
19
19
  * <p>If you include <code>SecretString</code> or <code>SecretBinary</code> to create a new
20
20
  * secret version, Secrets Manager automatically attaches the staging label <code>AWSCURRENT</code> to the new
21
21
  * version. </p>
22
- * <p>If you call this operation with a <code>VersionId</code> that matches an existing version's
23
- * <code>ClientRequestToken</code>, the operation results in an error. You can't modify an existing
22
+ * <p>If you call this operation with a <code>ClientRequestToken</code> that matches an existing version's
23
+ * <code>VersionId</code>, the operation results in an error. You can't modify an existing
24
24
  * version, you can only create a new version. To remove a version, remove all staging labels from it. See
25
25
  * <a>UpdateSecretVersionStage</a>.</p>
26
26
  * <p>If you don't specify an KMS encryption key, Secrets Manager uses the Amazon Web Services managed key
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-secrets-manager",
3
3
  "description": "AWS SDK for JavaScript Secrets Manager Client for Node.js, Browser and React Native",
4
- "version": "3.109.0",
4
+ "version": "3.118.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,35 +18,35 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.109.0",
22
- "@aws-sdk/config-resolver": "3.109.0",
23
- "@aws-sdk/credential-provider-node": "3.109.0",
24
- "@aws-sdk/fetch-http-handler": "3.109.0",
25
- "@aws-sdk/hash-node": "3.109.0",
26
- "@aws-sdk/invalid-dependency": "3.109.0",
27
- "@aws-sdk/middleware-content-length": "3.109.0",
28
- "@aws-sdk/middleware-host-header": "3.109.0",
29
- "@aws-sdk/middleware-logger": "3.109.0",
30
- "@aws-sdk/middleware-recursion-detection": "3.109.0",
31
- "@aws-sdk/middleware-retry": "3.109.0",
32
- "@aws-sdk/middleware-serde": "3.109.0",
33
- "@aws-sdk/middleware-signing": "3.109.0",
34
- "@aws-sdk/middleware-stack": "3.109.0",
35
- "@aws-sdk/middleware-user-agent": "3.109.0",
36
- "@aws-sdk/node-config-provider": "3.109.0",
37
- "@aws-sdk/node-http-handler": "3.109.0",
38
- "@aws-sdk/protocol-http": "3.109.0",
39
- "@aws-sdk/smithy-client": "3.109.0",
40
- "@aws-sdk/types": "3.109.0",
41
- "@aws-sdk/url-parser": "3.109.0",
21
+ "@aws-sdk/client-sts": "3.118.0",
22
+ "@aws-sdk/config-resolver": "3.110.0",
23
+ "@aws-sdk/credential-provider-node": "3.118.0",
24
+ "@aws-sdk/fetch-http-handler": "3.110.0",
25
+ "@aws-sdk/hash-node": "3.110.0",
26
+ "@aws-sdk/invalid-dependency": "3.110.0",
27
+ "@aws-sdk/middleware-content-length": "3.110.0",
28
+ "@aws-sdk/middleware-host-header": "3.110.0",
29
+ "@aws-sdk/middleware-logger": "3.110.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
+ "@aws-sdk/middleware-retry": "3.110.0",
32
+ "@aws-sdk/middleware-serde": "3.110.0",
33
+ "@aws-sdk/middleware-signing": "3.110.0",
34
+ "@aws-sdk/middleware-stack": "3.110.0",
35
+ "@aws-sdk/middleware-user-agent": "3.110.0",
36
+ "@aws-sdk/node-config-provider": "3.110.0",
37
+ "@aws-sdk/node-http-handler": "3.110.0",
38
+ "@aws-sdk/protocol-http": "3.110.0",
39
+ "@aws-sdk/smithy-client": "3.110.0",
40
+ "@aws-sdk/types": "3.110.0",
41
+ "@aws-sdk/url-parser": "3.110.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.109.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.109.0",
48
- "@aws-sdk/util-user-agent-browser": "3.109.0",
49
- "@aws-sdk/util-user-agent-node": "3.109.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.110.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.110.0",
49
+ "@aws-sdk/util-user-agent-node": "3.118.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",
51
51
  "@aws-sdk/util-utf8-node": "3.109.0",
52
52
  "tslib": "^2.3.1",