@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
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-secrets-manager
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-secrets-manager
|
|
@@ -1,115 +1,400 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CancelRotateSecretCommandInput,
|
|
4
|
+
CancelRotateSecretCommandOutput,
|
|
5
|
+
} from "./commands/CancelRotateSecretCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateSecretCommandInput,
|
|
8
|
+
CreateSecretCommandOutput,
|
|
9
|
+
} from "./commands/CreateSecretCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteResourcePolicyCommandInput,
|
|
12
|
+
DeleteResourcePolicyCommandOutput,
|
|
13
|
+
} from "./commands/DeleteResourcePolicyCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteSecretCommandInput,
|
|
16
|
+
DeleteSecretCommandOutput,
|
|
17
|
+
} from "./commands/DeleteSecretCommand";
|
|
18
|
+
import {
|
|
19
|
+
DescribeSecretCommandInput,
|
|
20
|
+
DescribeSecretCommandOutput,
|
|
21
|
+
} from "./commands/DescribeSecretCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetRandomPasswordCommandInput,
|
|
24
|
+
GetRandomPasswordCommandOutput,
|
|
25
|
+
} from "./commands/GetRandomPasswordCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetResourcePolicyCommandInput,
|
|
28
|
+
GetResourcePolicyCommandOutput,
|
|
29
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetSecretValueCommandInput,
|
|
32
|
+
GetSecretValueCommandOutput,
|
|
33
|
+
} from "./commands/GetSecretValueCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListSecretsCommandInput,
|
|
36
|
+
ListSecretsCommandOutput,
|
|
37
|
+
} from "./commands/ListSecretsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListSecretVersionIdsCommandInput,
|
|
40
|
+
ListSecretVersionIdsCommandOutput,
|
|
41
|
+
} from "./commands/ListSecretVersionIdsCommand";
|
|
42
|
+
import {
|
|
43
|
+
PutResourcePolicyCommandInput,
|
|
44
|
+
PutResourcePolicyCommandOutput,
|
|
45
|
+
} from "./commands/PutResourcePolicyCommand";
|
|
46
|
+
import {
|
|
47
|
+
PutSecretValueCommandInput,
|
|
48
|
+
PutSecretValueCommandOutput,
|
|
49
|
+
} from "./commands/PutSecretValueCommand";
|
|
50
|
+
import {
|
|
51
|
+
RemoveRegionsFromReplicationCommandInput,
|
|
52
|
+
RemoveRegionsFromReplicationCommandOutput,
|
|
53
|
+
} from "./commands/RemoveRegionsFromReplicationCommand";
|
|
54
|
+
import {
|
|
55
|
+
ReplicateSecretToRegionsCommandInput,
|
|
56
|
+
ReplicateSecretToRegionsCommandOutput,
|
|
57
|
+
} from "./commands/ReplicateSecretToRegionsCommand";
|
|
58
|
+
import {
|
|
59
|
+
RestoreSecretCommandInput,
|
|
60
|
+
RestoreSecretCommandOutput,
|
|
61
|
+
} from "./commands/RestoreSecretCommand";
|
|
62
|
+
import {
|
|
63
|
+
RotateSecretCommandInput,
|
|
64
|
+
RotateSecretCommandOutput,
|
|
65
|
+
} from "./commands/RotateSecretCommand";
|
|
66
|
+
import {
|
|
67
|
+
StopReplicationToReplicaCommandInput,
|
|
68
|
+
StopReplicationToReplicaCommandOutput,
|
|
69
|
+
} from "./commands/StopReplicationToReplicaCommand";
|
|
70
|
+
import {
|
|
71
|
+
TagResourceCommandInput,
|
|
72
|
+
TagResourceCommandOutput,
|
|
73
|
+
} from "./commands/TagResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
UntagResourceCommandInput,
|
|
76
|
+
UntagResourceCommandOutput,
|
|
77
|
+
} from "./commands/UntagResourceCommand";
|
|
78
|
+
import {
|
|
79
|
+
UpdateSecretCommandInput,
|
|
80
|
+
UpdateSecretCommandOutput,
|
|
81
|
+
} from "./commands/UpdateSecretCommand";
|
|
82
|
+
import {
|
|
83
|
+
UpdateSecretVersionStageCommandInput,
|
|
84
|
+
UpdateSecretVersionStageCommandOutput,
|
|
85
|
+
} from "./commands/UpdateSecretVersionStageCommand";
|
|
86
|
+
import {
|
|
87
|
+
ValidateResourcePolicyCommandInput,
|
|
88
|
+
ValidateResourcePolicyCommandOutput,
|
|
89
|
+
} from "./commands/ValidateResourcePolicyCommand";
|
|
90
|
+
import { SecretsManagerClient } from "./SecretsManagerClient";
|
|
91
|
+
|
|
92
|
+
export declare class SecretsManager extends SecretsManagerClient {
|
|
93
|
+
cancelRotateSecret(
|
|
94
|
+
args: CancelRotateSecretCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<CancelRotateSecretCommandOutput>;
|
|
97
|
+
cancelRotateSecret(
|
|
98
|
+
args: CancelRotateSecretCommandInput,
|
|
99
|
+
cb: (err: any, data?: CancelRotateSecretCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
cancelRotateSecret(
|
|
102
|
+
args: CancelRotateSecretCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: CancelRotateSecretCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
createSecret(
|
|
108
|
+
args: CreateSecretCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<CreateSecretCommandOutput>;
|
|
111
|
+
createSecret(
|
|
112
|
+
args: CreateSecretCommandInput,
|
|
113
|
+
cb: (err: any, data?: CreateSecretCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
createSecret(
|
|
116
|
+
args: CreateSecretCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: CreateSecretCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
deleteResourcePolicy(
|
|
122
|
+
args: DeleteResourcePolicyCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<DeleteResourcePolicyCommandOutput>;
|
|
125
|
+
deleteResourcePolicy(
|
|
126
|
+
args: DeleteResourcePolicyCommandInput,
|
|
127
|
+
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
deleteResourcePolicy(
|
|
130
|
+
args: DeleteResourcePolicyCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
deleteSecret(
|
|
136
|
+
args: DeleteSecretCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<DeleteSecretCommandOutput>;
|
|
139
|
+
deleteSecret(
|
|
140
|
+
args: DeleteSecretCommandInput,
|
|
141
|
+
cb: (err: any, data?: DeleteSecretCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
deleteSecret(
|
|
144
|
+
args: DeleteSecretCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: DeleteSecretCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
|
|
149
|
+
describeSecret(
|
|
150
|
+
args: DescribeSecretCommandInput,
|
|
151
|
+
options?: __HttpHandlerOptions
|
|
152
|
+
): Promise<DescribeSecretCommandOutput>;
|
|
153
|
+
describeSecret(
|
|
154
|
+
args: DescribeSecretCommandInput,
|
|
155
|
+
cb: (err: any, data?: DescribeSecretCommandOutput) => void
|
|
156
|
+
): void;
|
|
157
|
+
describeSecret(
|
|
158
|
+
args: DescribeSecretCommandInput,
|
|
159
|
+
options: __HttpHandlerOptions,
|
|
160
|
+
cb: (err: any, data?: DescribeSecretCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
|
|
163
|
+
getRandomPassword(
|
|
164
|
+
args: GetRandomPasswordCommandInput,
|
|
165
|
+
options?: __HttpHandlerOptions
|
|
166
|
+
): Promise<GetRandomPasswordCommandOutput>;
|
|
167
|
+
getRandomPassword(
|
|
168
|
+
args: GetRandomPasswordCommandInput,
|
|
169
|
+
cb: (err: any, data?: GetRandomPasswordCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
getRandomPassword(
|
|
172
|
+
args: GetRandomPasswordCommandInput,
|
|
173
|
+
options: __HttpHandlerOptions,
|
|
174
|
+
cb: (err: any, data?: GetRandomPasswordCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
|
|
177
|
+
getResourcePolicy(
|
|
178
|
+
args: GetResourcePolicyCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<GetResourcePolicyCommandOutput>;
|
|
181
|
+
getResourcePolicy(
|
|
182
|
+
args: GetResourcePolicyCommandInput,
|
|
183
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
getResourcePolicy(
|
|
186
|
+
args: GetResourcePolicyCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
|
|
191
|
+
getSecretValue(
|
|
192
|
+
args: GetSecretValueCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<GetSecretValueCommandOutput>;
|
|
195
|
+
getSecretValue(
|
|
196
|
+
args: GetSecretValueCommandInput,
|
|
197
|
+
cb: (err: any, data?: GetSecretValueCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
getSecretValue(
|
|
200
|
+
args: GetSecretValueCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: GetSecretValueCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
|
|
205
|
+
listSecrets(
|
|
206
|
+
args: ListSecretsCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<ListSecretsCommandOutput>;
|
|
209
|
+
listSecrets(
|
|
210
|
+
args: ListSecretsCommandInput,
|
|
211
|
+
cb: (err: any, data?: ListSecretsCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
listSecrets(
|
|
214
|
+
args: ListSecretsCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: ListSecretsCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
|
|
219
|
+
listSecretVersionIds(
|
|
220
|
+
args: ListSecretVersionIdsCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<ListSecretVersionIdsCommandOutput>;
|
|
223
|
+
listSecretVersionIds(
|
|
224
|
+
args: ListSecretVersionIdsCommandInput,
|
|
225
|
+
cb: (err: any, data?: ListSecretVersionIdsCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
listSecretVersionIds(
|
|
228
|
+
args: ListSecretVersionIdsCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: ListSecretVersionIdsCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
|
|
233
|
+
putResourcePolicy(
|
|
234
|
+
args: PutResourcePolicyCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<PutResourcePolicyCommandOutput>;
|
|
237
|
+
putResourcePolicy(
|
|
238
|
+
args: PutResourcePolicyCommandInput,
|
|
239
|
+
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
putResourcePolicy(
|
|
242
|
+
args: PutResourcePolicyCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
|
|
247
|
+
putSecretValue(
|
|
248
|
+
args: PutSecretValueCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<PutSecretValueCommandOutput>;
|
|
251
|
+
putSecretValue(
|
|
252
|
+
args: PutSecretValueCommandInput,
|
|
253
|
+
cb: (err: any, data?: PutSecretValueCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
putSecretValue(
|
|
256
|
+
args: PutSecretValueCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: PutSecretValueCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
|
|
261
|
+
removeRegionsFromReplication(
|
|
262
|
+
args: RemoveRegionsFromReplicationCommandInput,
|
|
263
|
+
options?: __HttpHandlerOptions
|
|
264
|
+
): Promise<RemoveRegionsFromReplicationCommandOutput>;
|
|
265
|
+
removeRegionsFromReplication(
|
|
266
|
+
args: RemoveRegionsFromReplicationCommandInput,
|
|
267
|
+
cb: (err: any, data?: RemoveRegionsFromReplicationCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
removeRegionsFromReplication(
|
|
270
|
+
args: RemoveRegionsFromReplicationCommandInput,
|
|
271
|
+
options: __HttpHandlerOptions,
|
|
272
|
+
cb: (err: any, data?: RemoveRegionsFromReplicationCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
|
|
275
|
+
replicateSecretToRegions(
|
|
276
|
+
args: ReplicateSecretToRegionsCommandInput,
|
|
277
|
+
options?: __HttpHandlerOptions
|
|
278
|
+
): Promise<ReplicateSecretToRegionsCommandOutput>;
|
|
279
|
+
replicateSecretToRegions(
|
|
280
|
+
args: ReplicateSecretToRegionsCommandInput,
|
|
281
|
+
cb: (err: any, data?: ReplicateSecretToRegionsCommandOutput) => void
|
|
282
|
+
): void;
|
|
283
|
+
replicateSecretToRegions(
|
|
284
|
+
args: ReplicateSecretToRegionsCommandInput,
|
|
285
|
+
options: __HttpHandlerOptions,
|
|
286
|
+
cb: (err: any, data?: ReplicateSecretToRegionsCommandOutput) => void
|
|
287
|
+
): void;
|
|
288
|
+
|
|
289
|
+
restoreSecret(
|
|
290
|
+
args: RestoreSecretCommandInput,
|
|
291
|
+
options?: __HttpHandlerOptions
|
|
292
|
+
): Promise<RestoreSecretCommandOutput>;
|
|
293
|
+
restoreSecret(
|
|
294
|
+
args: RestoreSecretCommandInput,
|
|
295
|
+
cb: (err: any, data?: RestoreSecretCommandOutput) => void
|
|
296
|
+
): void;
|
|
297
|
+
restoreSecret(
|
|
298
|
+
args: RestoreSecretCommandInput,
|
|
299
|
+
options: __HttpHandlerOptions,
|
|
300
|
+
cb: (err: any, data?: RestoreSecretCommandOutput) => void
|
|
301
|
+
): void;
|
|
302
|
+
|
|
303
|
+
rotateSecret(
|
|
304
|
+
args: RotateSecretCommandInput,
|
|
305
|
+
options?: __HttpHandlerOptions
|
|
306
|
+
): Promise<RotateSecretCommandOutput>;
|
|
307
|
+
rotateSecret(
|
|
308
|
+
args: RotateSecretCommandInput,
|
|
309
|
+
cb: (err: any, data?: RotateSecretCommandOutput) => void
|
|
310
|
+
): void;
|
|
311
|
+
rotateSecret(
|
|
312
|
+
args: RotateSecretCommandInput,
|
|
313
|
+
options: __HttpHandlerOptions,
|
|
314
|
+
cb: (err: any, data?: RotateSecretCommandOutput) => void
|
|
315
|
+
): void;
|
|
316
|
+
|
|
317
|
+
stopReplicationToReplica(
|
|
318
|
+
args: StopReplicationToReplicaCommandInput,
|
|
319
|
+
options?: __HttpHandlerOptions
|
|
320
|
+
): Promise<StopReplicationToReplicaCommandOutput>;
|
|
321
|
+
stopReplicationToReplica(
|
|
322
|
+
args: StopReplicationToReplicaCommandInput,
|
|
323
|
+
cb: (err: any, data?: StopReplicationToReplicaCommandOutput) => void
|
|
324
|
+
): void;
|
|
325
|
+
stopReplicationToReplica(
|
|
326
|
+
args: StopReplicationToReplicaCommandInput,
|
|
327
|
+
options: __HttpHandlerOptions,
|
|
328
|
+
cb: (err: any, data?: StopReplicationToReplicaCommandOutput) => void
|
|
329
|
+
): void;
|
|
330
|
+
|
|
331
|
+
tagResource(
|
|
332
|
+
args: TagResourceCommandInput,
|
|
333
|
+
options?: __HttpHandlerOptions
|
|
334
|
+
): Promise<TagResourceCommandOutput>;
|
|
335
|
+
tagResource(
|
|
336
|
+
args: TagResourceCommandInput,
|
|
337
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
338
|
+
): void;
|
|
339
|
+
tagResource(
|
|
340
|
+
args: TagResourceCommandInput,
|
|
341
|
+
options: __HttpHandlerOptions,
|
|
342
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
343
|
+
): void;
|
|
344
|
+
|
|
345
|
+
untagResource(
|
|
346
|
+
args: UntagResourceCommandInput,
|
|
347
|
+
options?: __HttpHandlerOptions
|
|
348
|
+
): Promise<UntagResourceCommandOutput>;
|
|
349
|
+
untagResource(
|
|
350
|
+
args: UntagResourceCommandInput,
|
|
351
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
352
|
+
): void;
|
|
353
|
+
untagResource(
|
|
354
|
+
args: UntagResourceCommandInput,
|
|
355
|
+
options: __HttpHandlerOptions,
|
|
356
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
357
|
+
): void;
|
|
358
|
+
|
|
359
|
+
updateSecret(
|
|
360
|
+
args: UpdateSecretCommandInput,
|
|
361
|
+
options?: __HttpHandlerOptions
|
|
362
|
+
): Promise<UpdateSecretCommandOutput>;
|
|
363
|
+
updateSecret(
|
|
364
|
+
args: UpdateSecretCommandInput,
|
|
365
|
+
cb: (err: any, data?: UpdateSecretCommandOutput) => void
|
|
366
|
+
): void;
|
|
367
|
+
updateSecret(
|
|
368
|
+
args: UpdateSecretCommandInput,
|
|
369
|
+
options: __HttpHandlerOptions,
|
|
370
|
+
cb: (err: any, data?: UpdateSecretCommandOutput) => void
|
|
371
|
+
): void;
|
|
372
|
+
|
|
373
|
+
updateSecretVersionStage(
|
|
374
|
+
args: UpdateSecretVersionStageCommandInput,
|
|
375
|
+
options?: __HttpHandlerOptions
|
|
376
|
+
): Promise<UpdateSecretVersionStageCommandOutput>;
|
|
377
|
+
updateSecretVersionStage(
|
|
378
|
+
args: UpdateSecretVersionStageCommandInput,
|
|
379
|
+
cb: (err: any, data?: UpdateSecretVersionStageCommandOutput) => void
|
|
380
|
+
): void;
|
|
381
|
+
updateSecretVersionStage(
|
|
382
|
+
args: UpdateSecretVersionStageCommandInput,
|
|
383
|
+
options: __HttpHandlerOptions,
|
|
384
|
+
cb: (err: any, data?: UpdateSecretVersionStageCommandOutput) => void
|
|
385
|
+
): void;
|
|
386
|
+
|
|
387
|
+
validateResourcePolicy(
|
|
388
|
+
args: ValidateResourcePolicyCommandInput,
|
|
389
|
+
options?: __HttpHandlerOptions
|
|
390
|
+
): Promise<ValidateResourcePolicyCommandOutput>;
|
|
391
|
+
validateResourcePolicy(
|
|
392
|
+
args: ValidateResourcePolicyCommandInput,
|
|
393
|
+
cb: (err: any, data?: ValidateResourcePolicyCommandOutput) => void
|
|
394
|
+
): void;
|
|
395
|
+
validateResourcePolicy(
|
|
396
|
+
args: ValidateResourcePolicyCommandInput,
|
|
397
|
+
options: __HttpHandlerOptions,
|
|
398
|
+
cb: (err: any, data?: ValidateResourcePolicyCommandOutput) => void
|
|
399
|
+
): void;
|
|
400
|
+
}
|