@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.
Files changed (41) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/SecretsManager.d.ts +400 -115
  3. package/dist-types/ts3.4/SecretsManagerClient.d.ts +262 -95
  4. package/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/index.d.ts +22 -22
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  28. package/dist-types/ts3.4/index.d.ts +6 -6
  29. package/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +8 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +745 -670
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  33. package/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  36. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +269 -68
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  41. package/package.json +34 -34
@@ -1,95 +1,262 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CancelRotateSecretCommandInput, CancelRotateSecretCommandOutput } from "./commands/CancelRotateSecretCommand";
10
- import { CreateSecretCommandInput, CreateSecretCommandOutput } from "./commands/CreateSecretCommand";
11
- import { DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput } from "./commands/DeleteResourcePolicyCommand";
12
- import { DeleteSecretCommandInput, DeleteSecretCommandOutput } from "./commands/DeleteSecretCommand";
13
- import { DescribeSecretCommandInput, DescribeSecretCommandOutput } from "./commands/DescribeSecretCommand";
14
- import { GetRandomPasswordCommandInput, GetRandomPasswordCommandOutput } from "./commands/GetRandomPasswordCommand";
15
- import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "./commands/GetResourcePolicyCommand";
16
- import { GetSecretValueCommandInput, GetSecretValueCommandOutput } from "./commands/GetSecretValueCommand";
17
- import { ListSecretsCommandInput, ListSecretsCommandOutput } from "./commands/ListSecretsCommand";
18
- import { ListSecretVersionIdsCommandInput, ListSecretVersionIdsCommandOutput } from "./commands/ListSecretVersionIdsCommand";
19
- import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
20
- import { PutSecretValueCommandInput, PutSecretValueCommandOutput } from "./commands/PutSecretValueCommand";
21
- import { RemoveRegionsFromReplicationCommandInput, RemoveRegionsFromReplicationCommandOutput } from "./commands/RemoveRegionsFromReplicationCommand";
22
- import { ReplicateSecretToRegionsCommandInput, ReplicateSecretToRegionsCommandOutput } from "./commands/ReplicateSecretToRegionsCommand";
23
- import { RestoreSecretCommandInput, RestoreSecretCommandOutput } from "./commands/RestoreSecretCommand";
24
- import { RotateSecretCommandInput, RotateSecretCommandOutput } from "./commands/RotateSecretCommand";
25
- import { StopReplicationToReplicaCommandInput, StopReplicationToReplicaCommandOutput } from "./commands/StopReplicationToReplicaCommand";
26
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
27
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
28
- import { UpdateSecretCommandInput, UpdateSecretCommandOutput } from "./commands/UpdateSecretCommand";
29
- import { UpdateSecretVersionStageCommandInput, UpdateSecretVersionStageCommandOutput } from "./commands/UpdateSecretVersionStageCommand";
30
- import { ValidateResourcePolicyCommandInput, ValidateResourcePolicyCommandOutput } from "./commands/ValidateResourcePolicyCommand";
31
- export declare type ServiceInputTypes = CancelRotateSecretCommandInput | CreateSecretCommandInput | DeleteResourcePolicyCommandInput | DeleteSecretCommandInput | DescribeSecretCommandInput | GetRandomPasswordCommandInput | GetResourcePolicyCommandInput | GetSecretValueCommandInput | ListSecretVersionIdsCommandInput | ListSecretsCommandInput | PutResourcePolicyCommandInput | PutSecretValueCommandInput | RemoveRegionsFromReplicationCommandInput | ReplicateSecretToRegionsCommandInput | RestoreSecretCommandInput | RotateSecretCommandInput | StopReplicationToReplicaCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateSecretCommandInput | UpdateSecretVersionStageCommandInput | ValidateResourcePolicyCommandInput;
32
- export declare type ServiceOutputTypes = CancelRotateSecretCommandOutput | CreateSecretCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSecretCommandOutput | DescribeSecretCommandOutput | GetRandomPasswordCommandOutput | GetResourcePolicyCommandOutput | GetSecretValueCommandOutput | ListSecretVersionIdsCommandOutput | ListSecretsCommandOutput | PutResourcePolicyCommandOutput | PutSecretValueCommandOutput | RemoveRegionsFromReplicationCommandOutput | ReplicateSecretToRegionsCommandOutput | RestoreSecretCommandOutput | RotateSecretCommandOutput | StopReplicationToReplicaCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateSecretCommandOutput | UpdateSecretVersionStageCommandOutput | ValidateResourcePolicyCommandOutput;
33
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
34
-
35
- requestHandler?: __HttpHandler;
36
-
37
- sha256?: __HashConstructor;
38
-
39
- urlParser?: __UrlParser;
40
-
41
- bodyLengthChecker?: __BodyLengthCalculator;
42
-
43
- streamCollector?: __StreamCollector;
44
-
45
- base64Decoder?: __Decoder;
46
-
47
- base64Encoder?: __Encoder;
48
-
49
- utf8Decoder?: __Decoder;
50
-
51
- utf8Encoder?: __Encoder;
52
-
53
- runtime?: string;
54
-
55
- disableHostPrefix?: boolean;
56
-
57
- maxAttempts?: number | __Provider<number>;
58
-
59
- retryMode?: string | __Provider<string>;
60
-
61
- logger?: __Logger;
62
-
63
- useDualstackEndpoint?: boolean | __Provider<boolean>;
64
-
65
- useFipsEndpoint?: boolean | __Provider<boolean>;
66
-
67
- serviceId?: string;
68
-
69
- region?: string | __Provider<string>;
70
-
71
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
72
-
73
- regionInfoProvider?: RegionInfoProvider;
74
-
75
- defaultUserAgentProvider?: Provider<__UserAgent>;
76
-
77
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
78
- }
79
- declare type SecretsManagerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
80
-
81
- export interface SecretsManagerClientConfig extends SecretsManagerClientConfigType {
82
- }
83
- declare type SecretsManagerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
84
-
85
- export interface SecretsManagerClientResolvedConfig extends SecretsManagerClientResolvedConfigType {
86
- }
87
-
88
- export declare class SecretsManagerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SecretsManagerClientResolvedConfig> {
89
-
90
- readonly config: SecretsManagerClientResolvedConfig;
91
- constructor(configuration: SecretsManagerClientConfig);
92
-
93
- destroy(): void;
94
- }
95
- export {};
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CancelRotateSecretRequest, CancelRotateSecretResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface CancelRotateSecretCommandInput extends CancelRotateSecretRequest {
6
- }
7
- export interface CancelRotateSecretCommandOutput extends CancelRotateSecretResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CancelRotateSecretCommand extends $Command<CancelRotateSecretCommandInput, CancelRotateSecretCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: CancelRotateSecretCommandInput;
12
- constructor(input: CancelRotateSecretCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelRotateSecretCommandInput, CancelRotateSecretCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CreateSecretRequest, CreateSecretResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface CreateSecretCommandInput extends CreateSecretRequest {
6
- }
7
- export interface CreateSecretCommandOutput extends CreateSecretResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateSecretCommand extends $Command<CreateSecretCommandInput, CreateSecretCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: CreateSecretCommandInput;
12
- constructor(input: CreateSecretCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSecretCommandInput, CreateSecretCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {
6
- }
7
- export interface DeleteResourcePolicyCommandOutput extends DeleteResourcePolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: DeleteResourcePolicyCommandInput;
12
- constructor(input: DeleteResourcePolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DeleteSecretRequest, DeleteSecretResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface DeleteSecretCommandInput extends DeleteSecretRequest {
6
- }
7
- export interface DeleteSecretCommandOutput extends DeleteSecretResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteSecretCommand extends $Command<DeleteSecretCommandInput, DeleteSecretCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: DeleteSecretCommandInput;
12
- constructor(input: DeleteSecretCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSecretCommandInput, DeleteSecretCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeSecretRequest, DescribeSecretResponse } from "../models/models_0";
4
- import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient";
5
- export interface DescribeSecretCommandInput extends DescribeSecretRequest {
6
- }
7
- export interface DescribeSecretCommandOutput extends DescribeSecretResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeSecretCommand extends $Command<DescribeSecretCommandInput, DescribeSecretCommandOutput, SecretsManagerClientResolvedConfig> {
11
- readonly input: DescribeSecretCommandInput;
12
- constructor(input: DescribeSecretCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecretsManagerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSecretCommandInput, DescribeSecretCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ }