@aws-sdk/client-secrets-manager 3.529.1 → 3.534.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/dist-types/commands/BatchGetSecretValueCommand.d.ts +1 -1
- package/dist-types/commands/CreateSecretCommand.d.ts +1 -1
- package/dist-types/commands/GetRandomPasswordCommand.d.ts +1 -1
- package/dist-types/commands/GetSecretValueCommand.d.ts +1 -1
- package/dist-types/commands/PutSecretValueCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecretCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +37 -37
|
@@ -65,7 +65,7 @@ declare const BatchGetSecretValueCommand_base: {
|
|
|
65
65
|
* // ARN: "STRING_VALUE",
|
|
66
66
|
* // Name: "STRING_VALUE",
|
|
67
67
|
* // VersionId: "STRING_VALUE",
|
|
68
|
-
* // SecretBinary:
|
|
68
|
+
* // SecretBinary: new Uint8Array(),
|
|
69
69
|
* // SecretString: "STRING_VALUE",
|
|
70
70
|
* // VersionStages: [ // SecretVersionStagesType
|
|
71
71
|
* // "STRING_VALUE",
|
|
@@ -73,7 +73,7 @@ declare const CreateSecretCommand_base: {
|
|
|
73
73
|
* ClientRequestToken: "STRING_VALUE",
|
|
74
74
|
* Description: "STRING_VALUE",
|
|
75
75
|
* KmsKeyId: "STRING_VALUE",
|
|
76
|
-
* SecretBinary: "
|
|
76
|
+
* SecretBinary: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
77
77
|
* SecretString: "STRING_VALUE",
|
|
78
78
|
* Tags: [ // TagListType
|
|
79
79
|
* { // Tag
|
|
@@ -30,7 +30,7 @@ declare const GetRandomPasswordCommand_base: {
|
|
|
30
30
|
* maximum length and include every character type that the system you are generating a password
|
|
31
31
|
* for can support. By default, Secrets Manager uses uppercase and lowercase letters, numbers, and the following characters in passwords: <code>!\"#$%&'()*+,-./:;<=>?@[\\]^_`\{|\}~</code>
|
|
32
32
|
* </p>
|
|
33
|
-
* <p>Secrets Manager generates a CloudTrail log entry when you call this action
|
|
33
|
+
* <p>Secrets Manager generates a CloudTrail log entry when you call this action.</p>
|
|
34
34
|
* <p>
|
|
35
35
|
* <b>Required permissions: </b>
|
|
36
36
|
* <code>secretsmanager:GetRandomPassword</code>.
|
|
@@ -61,7 +61,7 @@ declare const GetSecretValueCommand_base: {
|
|
|
61
61
|
* // ARN: "STRING_VALUE",
|
|
62
62
|
* // Name: "STRING_VALUE",
|
|
63
63
|
* // VersionId: "STRING_VALUE",
|
|
64
|
-
* // SecretBinary:
|
|
64
|
+
* // SecretBinary: new Uint8Array(),
|
|
65
65
|
* // SecretString: "STRING_VALUE",
|
|
66
66
|
* // VersionStages: [ // SecretVersionStagesType
|
|
67
67
|
* // "STRING_VALUE",
|
|
@@ -63,7 +63,7 @@ declare const PutSecretValueCommand_base: {
|
|
|
63
63
|
* const input = { // PutSecretValueRequest
|
|
64
64
|
* SecretId: "STRING_VALUE", // required
|
|
65
65
|
* ClientRequestToken: "STRING_VALUE",
|
|
66
|
-
* SecretBinary: "
|
|
66
|
+
* SecretBinary: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
67
67
|
* SecretString: "STRING_VALUE",
|
|
68
68
|
* VersionStages: [ // SecretVersionStagesType
|
|
69
69
|
* "STRING_VALUE",
|
|
@@ -64,7 +64,7 @@ declare const UpdateSecretCommand_base: {
|
|
|
64
64
|
* ClientRequestToken: "STRING_VALUE",
|
|
65
65
|
* Description: "STRING_VALUE",
|
|
66
66
|
* KmsKeyId: "STRING_VALUE",
|
|
67
|
-
* SecretBinary: "
|
|
67
|
+
* SecretBinary: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
68
68
|
* SecretString: "STRING_VALUE",
|
|
69
69
|
* };
|
|
70
70
|
* const command = new UpdateSecretCommand(input);
|
|
@@ -120,7 +120,7 @@ export interface BatchGetSecretValueRequest {
|
|
|
120
120
|
* <p>The number of results to include in the response.</p>
|
|
121
121
|
* <p>If there are more results available, in the response, Secrets Manager includes <code>NextToken</code>.
|
|
122
122
|
* To get the next results, call <code>BatchGetSecretValue</code> again with the value from
|
|
123
|
-
* <code>NextToken</code
|
|
123
|
+
* <code>NextToken</code>. To use this parameter, you must also use the <code>Filters</code> parameter.</p>
|
|
124
124
|
*/
|
|
125
125
|
MaxResults?: number;
|
|
126
126
|
/**
|
|
@@ -846,6 +846,7 @@ export interface DescribeSecretResponse {
|
|
|
846
846
|
/**
|
|
847
847
|
* @public
|
|
848
848
|
* <p>The next rotation is scheduled to occur on or before this date. If the secret isn't configured for rotation or rotation has been disabled, Secrets Manager returns null. If rotation fails, Secrets Manager retries the entire rotation process multiple times. If rotation is unsuccessful, this date may be in the past.</p>
|
|
849
|
+
* <p>This date represents the latest date that rotation will occur, but it is not an approximate rotation date. In some cases, for example if you turn off automatic rotation and then turn it back on, the next rotation may occur much sooner than this date.</p>
|
|
849
850
|
*/
|
|
850
851
|
NextRotationDate?: Date;
|
|
851
852
|
/**
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -20,9 +20,9 @@ export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
|
20
20
|
apiVersion: string;
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
-
base64Encoder:
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
-
utf8Encoder:
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
base64Encoder:
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
15
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
utf8Encoder:
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -5,7 +5,7 @@ import { SecretsManagerClientConfig } from "./SecretsManagerClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder:
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|
|
@@ -25,9 +25,9 @@ export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
|
25
25
|
apiVersion: string;
|
|
26
26
|
urlParser: import("@smithy/types").UrlParser;
|
|
27
27
|
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
-
base64Encoder:
|
|
28
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
29
29
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
utf8Encoder:
|
|
30
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
31
31
|
disableHostPrefix: boolean;
|
|
32
32
|
serviceId: string;
|
|
33
33
|
logger: import("@smithy/types").Logger;
|
|
@@ -29,9 +29,9 @@ export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
|
29
29
|
apiVersion: string;
|
|
30
30
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
31
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
base64Encoder:
|
|
32
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
33
33
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
34
|
-
utf8Encoder:
|
|
34
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
35
35
|
disableHostPrefix: boolean;
|
|
36
36
|
serviceId: string;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
@@ -13,9 +13,9 @@ export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
|
13
13
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
14
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
15
15
|
base64Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
base64Encoder:
|
|
16
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
17
17
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
18
|
-
utf8Encoder:
|
|
18
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
19
19
|
disableHostPrefix: boolean;
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -2,7 +2,7 @@ import { SecretsManagerClientConfig } from "./SecretsManagerClient";
|
|
|
2
2
|
export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
3
3
|
apiVersion: string;
|
|
4
4
|
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
-
base64Encoder:
|
|
5
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
6
6
|
disableHostPrefix: boolean;
|
|
7
7
|
endpointProvider: (
|
|
8
8
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: SecretsManagerClientConfig) => {
|
|
|
17
17
|
serviceId: string;
|
|
18
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
19
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
utf8Encoder:
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
21
|
};
|
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.
|
|
4
|
+
"version": "3.534.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-secrets-manager",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.1.
|
|
36
|
-
"@smithy/core": "^1.3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.4.
|
|
38
|
-
"@smithy/hash-node": "^2.1.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.1.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.1.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.4.
|
|
42
|
-
"@smithy/middleware-retry": "^2.1.
|
|
43
|
-
"@smithy/middleware-serde": "^2.1
|
|
44
|
-
"@smithy/middleware-stack": "^2.1.
|
|
45
|
-
"@smithy/node-config-provider": "^2.2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.4.
|
|
47
|
-
"@smithy/protocol-http": "^3.2.
|
|
48
|
-
"@smithy/smithy-client": "^2.4.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.1.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.533.0",
|
|
24
|
+
"@aws-sdk/core": "3.533.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.533.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.533.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.533.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.533.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.533.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.533.0",
|
|
31
|
+
"@aws-sdk/types": "3.533.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.533.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.533.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.533.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.1.5",
|
|
36
|
+
"@smithy/core": "^1.3.8",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.4.5",
|
|
38
|
+
"@smithy/hash-node": "^2.1.4",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.1.4",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.1.4",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.4.6",
|
|
42
|
+
"@smithy/middleware-retry": "^2.1.7",
|
|
43
|
+
"@smithy/middleware-serde": "^2.2.1",
|
|
44
|
+
"@smithy/middleware-stack": "^2.1.4",
|
|
45
|
+
"@smithy/node-config-provider": "^2.2.5",
|
|
46
|
+
"@smithy/node-http-handler": "^2.4.3",
|
|
47
|
+
"@smithy/protocol-http": "^3.2.2",
|
|
48
|
+
"@smithy/smithy-client": "^2.4.5",
|
|
49
|
+
"@smithy/types": "^2.11.0",
|
|
50
|
+
"@smithy/url-parser": "^2.1.4",
|
|
51
|
+
"@smithy/util-base64": "^2.2.1",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.1.1",
|
|
53
|
-
"@smithy/util-body-length-node": "^2.2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.1.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.1.
|
|
57
|
-
"@smithy/util-middleware": "^2.1.
|
|
58
|
-
"@smithy/util-retry": "^2.1.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
53
|
+
"@smithy/util-body-length-node": "^2.2.2",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.1.7",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.2.7",
|
|
56
|
+
"@smithy/util-endpoints": "^1.1.5",
|
|
57
|
+
"@smithy/util-middleware": "^2.1.4",
|
|
58
|
+
"@smithy/util-retry": "^2.1.4",
|
|
59
|
+
"@smithy/util-utf8": "^2.2.0",
|
|
60
60
|
"tslib": "^2.5.0",
|
|
61
61
|
"uuid": "^9.0.1"
|
|
62
62
|
},
|