@aws-sdk/client-secrets-manager 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/SecretsManager.d.ts +400 -115
- package/dist-types/ts3.4/SecretsManagerClient.d.ts +262 -95
- package/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +22 -22
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +745 -670
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +269 -68
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,95 +1,262 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
CancelRotateSecretCommandInput,
|
|
47
|
+
CancelRotateSecretCommandOutput,
|
|
48
|
+
} from "./commands/CancelRotateSecretCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateSecretCommandInput,
|
|
51
|
+
CreateSecretCommandOutput,
|
|
52
|
+
} from "./commands/CreateSecretCommand";
|
|
53
|
+
import {
|
|
54
|
+
DeleteResourcePolicyCommandInput,
|
|
55
|
+
DeleteResourcePolicyCommandOutput,
|
|
56
|
+
} from "./commands/DeleteResourcePolicyCommand";
|
|
57
|
+
import {
|
|
58
|
+
DeleteSecretCommandInput,
|
|
59
|
+
DeleteSecretCommandOutput,
|
|
60
|
+
} from "./commands/DeleteSecretCommand";
|
|
61
|
+
import {
|
|
62
|
+
DescribeSecretCommandInput,
|
|
63
|
+
DescribeSecretCommandOutput,
|
|
64
|
+
} from "./commands/DescribeSecretCommand";
|
|
65
|
+
import {
|
|
66
|
+
GetRandomPasswordCommandInput,
|
|
67
|
+
GetRandomPasswordCommandOutput,
|
|
68
|
+
} from "./commands/GetRandomPasswordCommand";
|
|
69
|
+
import {
|
|
70
|
+
GetResourcePolicyCommandInput,
|
|
71
|
+
GetResourcePolicyCommandOutput,
|
|
72
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
73
|
+
import {
|
|
74
|
+
GetSecretValueCommandInput,
|
|
75
|
+
GetSecretValueCommandOutput,
|
|
76
|
+
} from "./commands/GetSecretValueCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListSecretsCommandInput,
|
|
79
|
+
ListSecretsCommandOutput,
|
|
80
|
+
} from "./commands/ListSecretsCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListSecretVersionIdsCommandInput,
|
|
83
|
+
ListSecretVersionIdsCommandOutput,
|
|
84
|
+
} from "./commands/ListSecretVersionIdsCommand";
|
|
85
|
+
import {
|
|
86
|
+
PutResourcePolicyCommandInput,
|
|
87
|
+
PutResourcePolicyCommandOutput,
|
|
88
|
+
} from "./commands/PutResourcePolicyCommand";
|
|
89
|
+
import {
|
|
90
|
+
PutSecretValueCommandInput,
|
|
91
|
+
PutSecretValueCommandOutput,
|
|
92
|
+
} from "./commands/PutSecretValueCommand";
|
|
93
|
+
import {
|
|
94
|
+
RemoveRegionsFromReplicationCommandInput,
|
|
95
|
+
RemoveRegionsFromReplicationCommandOutput,
|
|
96
|
+
} from "./commands/RemoveRegionsFromReplicationCommand";
|
|
97
|
+
import {
|
|
98
|
+
ReplicateSecretToRegionsCommandInput,
|
|
99
|
+
ReplicateSecretToRegionsCommandOutput,
|
|
100
|
+
} from "./commands/ReplicateSecretToRegionsCommand";
|
|
101
|
+
import {
|
|
102
|
+
RestoreSecretCommandInput,
|
|
103
|
+
RestoreSecretCommandOutput,
|
|
104
|
+
} from "./commands/RestoreSecretCommand";
|
|
105
|
+
import {
|
|
106
|
+
RotateSecretCommandInput,
|
|
107
|
+
RotateSecretCommandOutput,
|
|
108
|
+
} from "./commands/RotateSecretCommand";
|
|
109
|
+
import {
|
|
110
|
+
StopReplicationToReplicaCommandInput,
|
|
111
|
+
StopReplicationToReplicaCommandOutput,
|
|
112
|
+
} from "./commands/StopReplicationToReplicaCommand";
|
|
113
|
+
import {
|
|
114
|
+
TagResourceCommandInput,
|
|
115
|
+
TagResourceCommandOutput,
|
|
116
|
+
} from "./commands/TagResourceCommand";
|
|
117
|
+
import {
|
|
118
|
+
UntagResourceCommandInput,
|
|
119
|
+
UntagResourceCommandOutput,
|
|
120
|
+
} from "./commands/UntagResourceCommand";
|
|
121
|
+
import {
|
|
122
|
+
UpdateSecretCommandInput,
|
|
123
|
+
UpdateSecretCommandOutput,
|
|
124
|
+
} from "./commands/UpdateSecretCommand";
|
|
125
|
+
import {
|
|
126
|
+
UpdateSecretVersionStageCommandInput,
|
|
127
|
+
UpdateSecretVersionStageCommandOutput,
|
|
128
|
+
} from "./commands/UpdateSecretVersionStageCommand";
|
|
129
|
+
import {
|
|
130
|
+
ValidateResourcePolicyCommandInput,
|
|
131
|
+
ValidateResourcePolicyCommandOutput,
|
|
132
|
+
} from "./commands/ValidateResourcePolicyCommand";
|
|
133
|
+
export declare type ServiceInputTypes =
|
|
134
|
+
| CancelRotateSecretCommandInput
|
|
135
|
+
| CreateSecretCommandInput
|
|
136
|
+
| DeleteResourcePolicyCommandInput
|
|
137
|
+
| DeleteSecretCommandInput
|
|
138
|
+
| DescribeSecretCommandInput
|
|
139
|
+
| GetRandomPasswordCommandInput
|
|
140
|
+
| GetResourcePolicyCommandInput
|
|
141
|
+
| GetSecretValueCommandInput
|
|
142
|
+
| ListSecretVersionIdsCommandInput
|
|
143
|
+
| ListSecretsCommandInput
|
|
144
|
+
| PutResourcePolicyCommandInput
|
|
145
|
+
| PutSecretValueCommandInput
|
|
146
|
+
| RemoveRegionsFromReplicationCommandInput
|
|
147
|
+
| ReplicateSecretToRegionsCommandInput
|
|
148
|
+
| RestoreSecretCommandInput
|
|
149
|
+
| RotateSecretCommandInput
|
|
150
|
+
| StopReplicationToReplicaCommandInput
|
|
151
|
+
| TagResourceCommandInput
|
|
152
|
+
| UntagResourceCommandInput
|
|
153
|
+
| UpdateSecretCommandInput
|
|
154
|
+
| UpdateSecretVersionStageCommandInput
|
|
155
|
+
| ValidateResourcePolicyCommandInput;
|
|
156
|
+
export declare type ServiceOutputTypes =
|
|
157
|
+
| CancelRotateSecretCommandOutput
|
|
158
|
+
| CreateSecretCommandOutput
|
|
159
|
+
| DeleteResourcePolicyCommandOutput
|
|
160
|
+
| DeleteSecretCommandOutput
|
|
161
|
+
| DescribeSecretCommandOutput
|
|
162
|
+
| GetRandomPasswordCommandOutput
|
|
163
|
+
| GetResourcePolicyCommandOutput
|
|
164
|
+
| GetSecretValueCommandOutput
|
|
165
|
+
| ListSecretVersionIdsCommandOutput
|
|
166
|
+
| ListSecretsCommandOutput
|
|
167
|
+
| PutResourcePolicyCommandOutput
|
|
168
|
+
| PutSecretValueCommandOutput
|
|
169
|
+
| RemoveRegionsFromReplicationCommandOutput
|
|
170
|
+
| ReplicateSecretToRegionsCommandOutput
|
|
171
|
+
| RestoreSecretCommandOutput
|
|
172
|
+
| RotateSecretCommandOutput
|
|
173
|
+
| StopReplicationToReplicaCommandOutput
|
|
174
|
+
| TagResourceCommandOutput
|
|
175
|
+
| UntagResourceCommandOutput
|
|
176
|
+
| UpdateSecretCommandOutput
|
|
177
|
+
| UpdateSecretVersionStageCommandOutput
|
|
178
|
+
| ValidateResourcePolicyCommandOutput;
|
|
179
|
+
export interface ClientDefaults
|
|
180
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
181
|
+
requestHandler?: __HttpHandler;
|
|
182
|
+
|
|
183
|
+
sha256?: __HashConstructor;
|
|
184
|
+
|
|
185
|
+
urlParser?: __UrlParser;
|
|
186
|
+
|
|
187
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
188
|
+
|
|
189
|
+
streamCollector?: __StreamCollector;
|
|
190
|
+
|
|
191
|
+
base64Decoder?: __Decoder;
|
|
192
|
+
|
|
193
|
+
base64Encoder?: __Encoder;
|
|
194
|
+
|
|
195
|
+
utf8Decoder?: __Decoder;
|
|
196
|
+
|
|
197
|
+
utf8Encoder?: __Encoder;
|
|
198
|
+
|
|
199
|
+
runtime?: string;
|
|
200
|
+
|
|
201
|
+
disableHostPrefix?: boolean;
|
|
202
|
+
|
|
203
|
+
maxAttempts?: number | __Provider<number>;
|
|
204
|
+
|
|
205
|
+
retryMode?: string | __Provider<string>;
|
|
206
|
+
|
|
207
|
+
logger?: __Logger;
|
|
208
|
+
|
|
209
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
210
|
+
|
|
211
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
212
|
+
|
|
213
|
+
serviceId?: string;
|
|
214
|
+
|
|
215
|
+
region?: string | __Provider<string>;
|
|
216
|
+
|
|
217
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
218
|
+
|
|
219
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
220
|
+
|
|
221
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
222
|
+
|
|
223
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
224
|
+
}
|
|
225
|
+
declare type SecretsManagerClientConfigType = Partial<
|
|
226
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
227
|
+
> &
|
|
228
|
+
ClientDefaults &
|
|
229
|
+
RegionInputConfig &
|
|
230
|
+
EndpointsInputConfig &
|
|
231
|
+
RetryInputConfig &
|
|
232
|
+
HostHeaderInputConfig &
|
|
233
|
+
AwsAuthInputConfig &
|
|
234
|
+
UserAgentInputConfig;
|
|
235
|
+
|
|
236
|
+
export interface SecretsManagerClientConfig
|
|
237
|
+
extends SecretsManagerClientConfigType {}
|
|
238
|
+
declare type SecretsManagerClientResolvedConfigType =
|
|
239
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
240
|
+
Required<ClientDefaults> &
|
|
241
|
+
RegionResolvedConfig &
|
|
242
|
+
EndpointsResolvedConfig &
|
|
243
|
+
RetryResolvedConfig &
|
|
244
|
+
HostHeaderResolvedConfig &
|
|
245
|
+
AwsAuthResolvedConfig &
|
|
246
|
+
UserAgentResolvedConfig;
|
|
247
|
+
|
|
248
|
+
export interface SecretsManagerClientResolvedConfig
|
|
249
|
+
extends SecretsManagerClientResolvedConfigType {}
|
|
250
|
+
|
|
251
|
+
export declare class SecretsManagerClient extends __Client<
|
|
252
|
+
__HttpHandlerOptions,
|
|
253
|
+
ServiceInputTypes,
|
|
254
|
+
ServiceOutputTypes,
|
|
255
|
+
SecretsManagerClientResolvedConfig
|
|
256
|
+
> {
|
|
257
|
+
readonly config: SecretsManagerClientResolvedConfig;
|
|
258
|
+
constructor(configuration: SecretsManagerClientConfig);
|
|
259
|
+
|
|
260
|
+
destroy(): void;
|
|
261
|
+
}
|
|
262
|
+
export {};
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CancelRotateSecretRequest,
|
|
10
|
+
CancelRotateSecretResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface CancelRotateSecretCommandInput
|
|
18
|
+
extends CancelRotateSecretRequest {}
|
|
19
|
+
export interface CancelRotateSecretCommandOutput
|
|
20
|
+
extends CancelRotateSecretResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CancelRotateSecretCommand extends $Command<
|
|
24
|
+
CancelRotateSecretCommandInput,
|
|
25
|
+
CancelRotateSecretCommandOutput,
|
|
26
|
+
SecretsManagerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CancelRotateSecretCommandInput;
|
|
29
|
+
constructor(input: CancelRotateSecretCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CancelRotateSecretCommandInput, CancelRotateSecretCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { CreateSecretRequest, CreateSecretResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SecretsManagerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SecretsManagerClient";
|
|
14
|
+
export interface CreateSecretCommandInput extends CreateSecretRequest {}
|
|
15
|
+
export interface CreateSecretCommandOutput
|
|
16
|
+
extends CreateSecretResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class CreateSecretCommand extends $Command<
|
|
20
|
+
CreateSecretCommandInput,
|
|
21
|
+
CreateSecretCommandOutput,
|
|
22
|
+
SecretsManagerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateSecretCommandInput;
|
|
25
|
+
constructor(input: CreateSecretCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateSecretCommandInput, CreateSecretCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteResourcePolicyRequest,
|
|
10
|
+
DeleteResourcePolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface DeleteResourcePolicyCommandInput
|
|
18
|
+
extends DeleteResourcePolicyRequest {}
|
|
19
|
+
export interface DeleteResourcePolicyCommandOutput
|
|
20
|
+
extends DeleteResourcePolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteResourcePolicyCommand extends $Command<
|
|
24
|
+
DeleteResourcePolicyCommandInput,
|
|
25
|
+
DeleteResourcePolicyCommandOutput,
|
|
26
|
+
SecretsManagerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteResourcePolicyCommandInput;
|
|
29
|
+
constructor(input: DeleteResourcePolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteResourcePolicyCommandInput,
|
|
37
|
+
DeleteResourcePolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteSecretRequest, DeleteSecretResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SecretsManagerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SecretsManagerClient";
|
|
14
|
+
export interface DeleteSecretCommandInput extends DeleteSecretRequest {}
|
|
15
|
+
export interface DeleteSecretCommandOutput
|
|
16
|
+
extends DeleteSecretResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteSecretCommand extends $Command<
|
|
20
|
+
DeleteSecretCommandInput,
|
|
21
|
+
DeleteSecretCommandOutput,
|
|
22
|
+
SecretsManagerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteSecretCommandInput;
|
|
25
|
+
constructor(input: DeleteSecretCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteSecretCommandInput, DeleteSecretCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeSecretRequest,
|
|
10
|
+
DescribeSecretResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SecretsManagerClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SecretsManagerClient";
|
|
17
|
+
export interface DescribeSecretCommandInput extends DescribeSecretRequest {}
|
|
18
|
+
export interface DescribeSecretCommandOutput
|
|
19
|
+
extends DescribeSecretResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeSecretCommand extends $Command<
|
|
23
|
+
DescribeSecretCommandInput,
|
|
24
|
+
DescribeSecretCommandOutput,
|
|
25
|
+
SecretsManagerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeSecretCommandInput;
|
|
28
|
+
constructor(input: DescribeSecretCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SecretsManagerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeSecretCommandInput, DescribeSecretCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|