@aws-sdk/client-dlm 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/DLMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +67 -1
- package/dist-cjs/protocols/Aws_restJson1.js +118 -290
- package/dist-es/index.js +1 -0
- package/dist-es/models/DLMServiceException.js +12 -0
- package/dist-es/models/models_0.js +63 -1
- package/dist-es/protocols/Aws_restJson1.js +201 -327
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DLMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +30 -13
- package/dist-types/ts3.4/DLM.d.ts +45 -0
- package/dist-types/ts3.4/DLMClient.d.ts +81 -0
- package/dist-types/ts3.4/commands/CreateLifecyclePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetLifecyclePoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateLifecyclePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/DLMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +536 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +26 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -0,0 +1,536 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DLMServiceException as __BaseException } from "./DLMServiceException";
|
|
3
|
+
|
|
4
|
+
export interface EncryptionConfiguration {
|
|
5
|
+
|
|
6
|
+
Encrypted: boolean | undefined;
|
|
7
|
+
|
|
8
|
+
CmkArn?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare namespace EncryptionConfiguration {
|
|
11
|
+
|
|
12
|
+
const filterSensitiveLog: (obj: EncryptionConfiguration) => any;
|
|
13
|
+
}
|
|
14
|
+
export declare enum RetentionIntervalUnitValues {
|
|
15
|
+
DAYS = "DAYS",
|
|
16
|
+
MONTHS = "MONTHS",
|
|
17
|
+
WEEKS = "WEEKS",
|
|
18
|
+
YEARS = "YEARS"
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface CrossRegionCopyRetainRule {
|
|
22
|
+
|
|
23
|
+
Interval?: number;
|
|
24
|
+
|
|
25
|
+
IntervalUnit?: RetentionIntervalUnitValues | string;
|
|
26
|
+
}
|
|
27
|
+
export declare namespace CrossRegionCopyRetainRule {
|
|
28
|
+
|
|
29
|
+
const filterSensitiveLog: (obj: CrossRegionCopyRetainRule) => any;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface CrossRegionCopyAction {
|
|
33
|
+
|
|
34
|
+
Target: string | undefined;
|
|
35
|
+
|
|
36
|
+
EncryptionConfiguration: EncryptionConfiguration | undefined;
|
|
37
|
+
|
|
38
|
+
RetainRule?: CrossRegionCopyRetainRule;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace CrossRegionCopyAction {
|
|
41
|
+
|
|
42
|
+
const filterSensitiveLog: (obj: CrossRegionCopyAction) => any;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export interface Action {
|
|
46
|
+
|
|
47
|
+
Name: string | undefined;
|
|
48
|
+
|
|
49
|
+
CrossRegionCopy: CrossRegionCopyAction[] | undefined;
|
|
50
|
+
}
|
|
51
|
+
export declare namespace Action {
|
|
52
|
+
|
|
53
|
+
const filterSensitiveLog: (obj: Action) => any;
|
|
54
|
+
}
|
|
55
|
+
export declare enum EventTypeValues {
|
|
56
|
+
SHARE_SNAPSHOT = "shareSnapshot"
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface EventParameters {
|
|
60
|
+
|
|
61
|
+
EventType: EventTypeValues | string | undefined;
|
|
62
|
+
|
|
63
|
+
SnapshotOwner: string[] | undefined;
|
|
64
|
+
|
|
65
|
+
DescriptionRegex: string | undefined;
|
|
66
|
+
}
|
|
67
|
+
export declare namespace EventParameters {
|
|
68
|
+
|
|
69
|
+
const filterSensitiveLog: (obj: EventParameters) => any;
|
|
70
|
+
}
|
|
71
|
+
export declare enum EventSourceValues {
|
|
72
|
+
MANAGED_CWE = "MANAGED_CWE"
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface EventSource {
|
|
76
|
+
|
|
77
|
+
Type: EventSourceValues | string | undefined;
|
|
78
|
+
|
|
79
|
+
Parameters?: EventParameters;
|
|
80
|
+
}
|
|
81
|
+
export declare namespace EventSource {
|
|
82
|
+
|
|
83
|
+
const filterSensitiveLog: (obj: EventSource) => any;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export interface _Parameters {
|
|
87
|
+
|
|
88
|
+
ExcludeBootVolume?: boolean;
|
|
89
|
+
|
|
90
|
+
NoReboot?: boolean;
|
|
91
|
+
}
|
|
92
|
+
export declare namespace _Parameters {
|
|
93
|
+
|
|
94
|
+
const filterSensitiveLog: (obj: _Parameters) => any;
|
|
95
|
+
}
|
|
96
|
+
export declare enum PolicyTypeValues {
|
|
97
|
+
EBS_SNAPSHOT_MANAGEMENT = "EBS_SNAPSHOT_MANAGEMENT",
|
|
98
|
+
EVENT_BASED_POLICY = "EVENT_BASED_POLICY",
|
|
99
|
+
IMAGE_MANAGEMENT = "IMAGE_MANAGEMENT"
|
|
100
|
+
}
|
|
101
|
+
export declare enum ResourceLocationValues {
|
|
102
|
+
CLOUD = "CLOUD",
|
|
103
|
+
OUTPOST = "OUTPOST"
|
|
104
|
+
}
|
|
105
|
+
export declare enum ResourceTypeValues {
|
|
106
|
+
INSTANCE = "INSTANCE",
|
|
107
|
+
VOLUME = "VOLUME"
|
|
108
|
+
}
|
|
109
|
+
export declare enum IntervalUnitValues {
|
|
110
|
+
HOURS = "HOURS"
|
|
111
|
+
}
|
|
112
|
+
export declare enum LocationValues {
|
|
113
|
+
CLOUD = "CLOUD",
|
|
114
|
+
OUTPOST_LOCAL = "OUTPOST_LOCAL"
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface CreateRule {
|
|
118
|
+
|
|
119
|
+
Location?: LocationValues | string;
|
|
120
|
+
|
|
121
|
+
Interval?: number;
|
|
122
|
+
|
|
123
|
+
IntervalUnit?: IntervalUnitValues | string;
|
|
124
|
+
|
|
125
|
+
Times?: string[];
|
|
126
|
+
|
|
127
|
+
CronExpression?: string;
|
|
128
|
+
}
|
|
129
|
+
export declare namespace CreateRule {
|
|
130
|
+
|
|
131
|
+
const filterSensitiveLog: (obj: CreateRule) => any;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
export interface CrossRegionCopyDeprecateRule {
|
|
135
|
+
|
|
136
|
+
Interval?: number;
|
|
137
|
+
|
|
138
|
+
IntervalUnit?: RetentionIntervalUnitValues | string;
|
|
139
|
+
}
|
|
140
|
+
export declare namespace CrossRegionCopyDeprecateRule {
|
|
141
|
+
|
|
142
|
+
const filterSensitiveLog: (obj: CrossRegionCopyDeprecateRule) => any;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface CrossRegionCopyRule {
|
|
146
|
+
|
|
147
|
+
TargetRegion?: string;
|
|
148
|
+
|
|
149
|
+
Target?: string;
|
|
150
|
+
|
|
151
|
+
Encrypted: boolean | undefined;
|
|
152
|
+
|
|
153
|
+
CmkArn?: string;
|
|
154
|
+
|
|
155
|
+
CopyTags?: boolean;
|
|
156
|
+
|
|
157
|
+
RetainRule?: CrossRegionCopyRetainRule;
|
|
158
|
+
|
|
159
|
+
DeprecateRule?: CrossRegionCopyDeprecateRule;
|
|
160
|
+
}
|
|
161
|
+
export declare namespace CrossRegionCopyRule {
|
|
162
|
+
|
|
163
|
+
const filterSensitiveLog: (obj: CrossRegionCopyRule) => any;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export interface DeprecateRule {
|
|
167
|
+
|
|
168
|
+
Count?: number;
|
|
169
|
+
|
|
170
|
+
Interval?: number;
|
|
171
|
+
|
|
172
|
+
IntervalUnit?: RetentionIntervalUnitValues | string;
|
|
173
|
+
}
|
|
174
|
+
export declare namespace DeprecateRule {
|
|
175
|
+
|
|
176
|
+
const filterSensitiveLog: (obj: DeprecateRule) => any;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface FastRestoreRule {
|
|
180
|
+
|
|
181
|
+
Count?: number;
|
|
182
|
+
|
|
183
|
+
Interval?: number;
|
|
184
|
+
|
|
185
|
+
IntervalUnit?: RetentionIntervalUnitValues | string;
|
|
186
|
+
|
|
187
|
+
AvailabilityZones: string[] | undefined;
|
|
188
|
+
}
|
|
189
|
+
export declare namespace FastRestoreRule {
|
|
190
|
+
|
|
191
|
+
const filterSensitiveLog: (obj: FastRestoreRule) => any;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export interface RetainRule {
|
|
195
|
+
|
|
196
|
+
Count?: number;
|
|
197
|
+
|
|
198
|
+
Interval?: number;
|
|
199
|
+
|
|
200
|
+
IntervalUnit?: RetentionIntervalUnitValues | string;
|
|
201
|
+
}
|
|
202
|
+
export declare namespace RetainRule {
|
|
203
|
+
|
|
204
|
+
const filterSensitiveLog: (obj: RetainRule) => any;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
export interface ShareRule {
|
|
208
|
+
|
|
209
|
+
TargetAccounts: string[] | undefined;
|
|
210
|
+
|
|
211
|
+
UnshareInterval?: number;
|
|
212
|
+
|
|
213
|
+
UnshareIntervalUnit?: RetentionIntervalUnitValues | string;
|
|
214
|
+
}
|
|
215
|
+
export declare namespace ShareRule {
|
|
216
|
+
|
|
217
|
+
const filterSensitiveLog: (obj: ShareRule) => any;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export interface Tag {
|
|
221
|
+
|
|
222
|
+
Key: string | undefined;
|
|
223
|
+
|
|
224
|
+
Value: string | undefined;
|
|
225
|
+
}
|
|
226
|
+
export declare namespace Tag {
|
|
227
|
+
|
|
228
|
+
const filterSensitiveLog: (obj: Tag) => any;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export interface Schedule {
|
|
232
|
+
|
|
233
|
+
Name?: string;
|
|
234
|
+
|
|
235
|
+
CopyTags?: boolean;
|
|
236
|
+
|
|
237
|
+
TagsToAdd?: Tag[];
|
|
238
|
+
|
|
239
|
+
VariableTags?: Tag[];
|
|
240
|
+
|
|
241
|
+
CreateRule?: CreateRule;
|
|
242
|
+
|
|
243
|
+
RetainRule?: RetainRule;
|
|
244
|
+
|
|
245
|
+
FastRestoreRule?: FastRestoreRule;
|
|
246
|
+
|
|
247
|
+
CrossRegionCopyRules?: CrossRegionCopyRule[];
|
|
248
|
+
|
|
249
|
+
ShareRules?: ShareRule[];
|
|
250
|
+
|
|
251
|
+
DeprecateRule?: DeprecateRule;
|
|
252
|
+
}
|
|
253
|
+
export declare namespace Schedule {
|
|
254
|
+
|
|
255
|
+
const filterSensitiveLog: (obj: Schedule) => any;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
export interface PolicyDetails {
|
|
259
|
+
|
|
260
|
+
PolicyType?: PolicyTypeValues | string;
|
|
261
|
+
|
|
262
|
+
ResourceTypes?: (ResourceTypeValues | string)[];
|
|
263
|
+
|
|
264
|
+
ResourceLocations?: (ResourceLocationValues | string)[];
|
|
265
|
+
|
|
266
|
+
TargetTags?: Tag[];
|
|
267
|
+
|
|
268
|
+
Schedules?: Schedule[];
|
|
269
|
+
|
|
270
|
+
Parameters?: _Parameters;
|
|
271
|
+
|
|
272
|
+
EventSource?: EventSource;
|
|
273
|
+
|
|
274
|
+
Actions?: Action[];
|
|
275
|
+
}
|
|
276
|
+
export declare namespace PolicyDetails {
|
|
277
|
+
|
|
278
|
+
const filterSensitiveLog: (obj: PolicyDetails) => any;
|
|
279
|
+
}
|
|
280
|
+
export declare enum SettablePolicyStateValues {
|
|
281
|
+
DISABLED = "DISABLED",
|
|
282
|
+
ENABLED = "ENABLED"
|
|
283
|
+
}
|
|
284
|
+
export interface CreateLifecyclePolicyRequest {
|
|
285
|
+
|
|
286
|
+
ExecutionRoleArn: string | undefined;
|
|
287
|
+
|
|
288
|
+
Description: string | undefined;
|
|
289
|
+
|
|
290
|
+
State: SettablePolicyStateValues | string | undefined;
|
|
291
|
+
|
|
292
|
+
PolicyDetails: PolicyDetails | undefined;
|
|
293
|
+
|
|
294
|
+
Tags?: {
|
|
295
|
+
[key: string]: string;
|
|
296
|
+
};
|
|
297
|
+
}
|
|
298
|
+
export declare namespace CreateLifecyclePolicyRequest {
|
|
299
|
+
|
|
300
|
+
const filterSensitiveLog: (obj: CreateLifecyclePolicyRequest) => any;
|
|
301
|
+
}
|
|
302
|
+
export interface CreateLifecyclePolicyResponse {
|
|
303
|
+
|
|
304
|
+
PolicyId?: string;
|
|
305
|
+
}
|
|
306
|
+
export declare namespace CreateLifecyclePolicyResponse {
|
|
307
|
+
|
|
308
|
+
const filterSensitiveLog: (obj: CreateLifecyclePolicyResponse) => any;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export declare class InternalServerException extends __BaseException {
|
|
312
|
+
readonly name: "InternalServerException";
|
|
313
|
+
readonly $fault: "server";
|
|
314
|
+
Message?: string;
|
|
315
|
+
Code?: string;
|
|
316
|
+
|
|
317
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
321
|
+
readonly name: "InvalidRequestException";
|
|
322
|
+
readonly $fault: "client";
|
|
323
|
+
Message?: string;
|
|
324
|
+
Code?: string;
|
|
325
|
+
|
|
326
|
+
RequiredParameters?: string[];
|
|
327
|
+
|
|
328
|
+
MutuallyExclusiveParameters?: string[];
|
|
329
|
+
|
|
330
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export declare class LimitExceededException extends __BaseException {
|
|
334
|
+
readonly name: "LimitExceededException";
|
|
335
|
+
readonly $fault: "client";
|
|
336
|
+
Message?: string;
|
|
337
|
+
Code?: string;
|
|
338
|
+
|
|
339
|
+
ResourceType?: string;
|
|
340
|
+
|
|
341
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
342
|
+
}
|
|
343
|
+
export interface DeleteLifecyclePolicyRequest {
|
|
344
|
+
|
|
345
|
+
PolicyId: string | undefined;
|
|
346
|
+
}
|
|
347
|
+
export declare namespace DeleteLifecyclePolicyRequest {
|
|
348
|
+
|
|
349
|
+
const filterSensitiveLog: (obj: DeleteLifecyclePolicyRequest) => any;
|
|
350
|
+
}
|
|
351
|
+
export interface DeleteLifecyclePolicyResponse {
|
|
352
|
+
}
|
|
353
|
+
export declare namespace DeleteLifecyclePolicyResponse {
|
|
354
|
+
|
|
355
|
+
const filterSensitiveLog: (obj: DeleteLifecyclePolicyResponse) => any;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
359
|
+
readonly name: "ResourceNotFoundException";
|
|
360
|
+
readonly $fault: "client";
|
|
361
|
+
Message?: string;
|
|
362
|
+
Code?: string;
|
|
363
|
+
|
|
364
|
+
ResourceType?: string;
|
|
365
|
+
|
|
366
|
+
ResourceIds?: string[];
|
|
367
|
+
|
|
368
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
369
|
+
}
|
|
370
|
+
export declare enum GettablePolicyStateValues {
|
|
371
|
+
DISABLED = "DISABLED",
|
|
372
|
+
ENABLED = "ENABLED",
|
|
373
|
+
ERROR = "ERROR"
|
|
374
|
+
}
|
|
375
|
+
export interface GetLifecyclePoliciesRequest {
|
|
376
|
+
|
|
377
|
+
PolicyIds?: string[];
|
|
378
|
+
|
|
379
|
+
State?: GettablePolicyStateValues | string;
|
|
380
|
+
|
|
381
|
+
ResourceTypes?: (ResourceTypeValues | string)[];
|
|
382
|
+
|
|
383
|
+
TargetTags?: string[];
|
|
384
|
+
|
|
385
|
+
TagsToAdd?: string[];
|
|
386
|
+
}
|
|
387
|
+
export declare namespace GetLifecyclePoliciesRequest {
|
|
388
|
+
|
|
389
|
+
const filterSensitiveLog: (obj: GetLifecyclePoliciesRequest) => any;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
export interface LifecyclePolicySummary {
|
|
393
|
+
|
|
394
|
+
PolicyId?: string;
|
|
395
|
+
|
|
396
|
+
Description?: string;
|
|
397
|
+
|
|
398
|
+
State?: GettablePolicyStateValues | string;
|
|
399
|
+
|
|
400
|
+
Tags?: {
|
|
401
|
+
[key: string]: string;
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
PolicyType?: PolicyTypeValues | string;
|
|
405
|
+
}
|
|
406
|
+
export declare namespace LifecyclePolicySummary {
|
|
407
|
+
|
|
408
|
+
const filterSensitiveLog: (obj: LifecyclePolicySummary) => any;
|
|
409
|
+
}
|
|
410
|
+
export interface GetLifecyclePoliciesResponse {
|
|
411
|
+
|
|
412
|
+
Policies?: LifecyclePolicySummary[];
|
|
413
|
+
}
|
|
414
|
+
export declare namespace GetLifecyclePoliciesResponse {
|
|
415
|
+
|
|
416
|
+
const filterSensitiveLog: (obj: GetLifecyclePoliciesResponse) => any;
|
|
417
|
+
}
|
|
418
|
+
export interface GetLifecyclePolicyRequest {
|
|
419
|
+
|
|
420
|
+
PolicyId: string | undefined;
|
|
421
|
+
}
|
|
422
|
+
export declare namespace GetLifecyclePolicyRequest {
|
|
423
|
+
|
|
424
|
+
const filterSensitiveLog: (obj: GetLifecyclePolicyRequest) => any;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
export interface LifecyclePolicy {
|
|
428
|
+
|
|
429
|
+
PolicyId?: string;
|
|
430
|
+
|
|
431
|
+
Description?: string;
|
|
432
|
+
|
|
433
|
+
State?: GettablePolicyStateValues | string;
|
|
434
|
+
|
|
435
|
+
StatusMessage?: string;
|
|
436
|
+
|
|
437
|
+
ExecutionRoleArn?: string;
|
|
438
|
+
|
|
439
|
+
DateCreated?: Date;
|
|
440
|
+
|
|
441
|
+
DateModified?: Date;
|
|
442
|
+
|
|
443
|
+
PolicyDetails?: PolicyDetails;
|
|
444
|
+
|
|
445
|
+
Tags?: {
|
|
446
|
+
[key: string]: string;
|
|
447
|
+
};
|
|
448
|
+
|
|
449
|
+
PolicyArn?: string;
|
|
450
|
+
}
|
|
451
|
+
export declare namespace LifecyclePolicy {
|
|
452
|
+
|
|
453
|
+
const filterSensitiveLog: (obj: LifecyclePolicy) => any;
|
|
454
|
+
}
|
|
455
|
+
export interface GetLifecyclePolicyResponse {
|
|
456
|
+
|
|
457
|
+
Policy?: LifecyclePolicy;
|
|
458
|
+
}
|
|
459
|
+
export declare namespace GetLifecyclePolicyResponse {
|
|
460
|
+
|
|
461
|
+
const filterSensitiveLog: (obj: GetLifecyclePolicyResponse) => any;
|
|
462
|
+
}
|
|
463
|
+
export interface ListTagsForResourceRequest {
|
|
464
|
+
|
|
465
|
+
ResourceArn: string | undefined;
|
|
466
|
+
}
|
|
467
|
+
export declare namespace ListTagsForResourceRequest {
|
|
468
|
+
|
|
469
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
470
|
+
}
|
|
471
|
+
export interface ListTagsForResourceResponse {
|
|
472
|
+
|
|
473
|
+
Tags?: {
|
|
474
|
+
[key: string]: string;
|
|
475
|
+
};
|
|
476
|
+
}
|
|
477
|
+
export declare namespace ListTagsForResourceResponse {
|
|
478
|
+
|
|
479
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
480
|
+
}
|
|
481
|
+
export interface TagResourceRequest {
|
|
482
|
+
|
|
483
|
+
ResourceArn: string | undefined;
|
|
484
|
+
|
|
485
|
+
Tags: {
|
|
486
|
+
[key: string]: string;
|
|
487
|
+
} | undefined;
|
|
488
|
+
}
|
|
489
|
+
export declare namespace TagResourceRequest {
|
|
490
|
+
|
|
491
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
492
|
+
}
|
|
493
|
+
export interface TagResourceResponse {
|
|
494
|
+
}
|
|
495
|
+
export declare namespace TagResourceResponse {
|
|
496
|
+
|
|
497
|
+
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
498
|
+
}
|
|
499
|
+
export interface UntagResourceRequest {
|
|
500
|
+
|
|
501
|
+
ResourceArn: string | undefined;
|
|
502
|
+
|
|
503
|
+
TagKeys: string[] | undefined;
|
|
504
|
+
}
|
|
505
|
+
export declare namespace UntagResourceRequest {
|
|
506
|
+
|
|
507
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
508
|
+
}
|
|
509
|
+
export interface UntagResourceResponse {
|
|
510
|
+
}
|
|
511
|
+
export declare namespace UntagResourceResponse {
|
|
512
|
+
|
|
513
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
514
|
+
}
|
|
515
|
+
export interface UpdateLifecyclePolicyRequest {
|
|
516
|
+
|
|
517
|
+
PolicyId: string | undefined;
|
|
518
|
+
|
|
519
|
+
ExecutionRoleArn?: string;
|
|
520
|
+
|
|
521
|
+
State?: SettablePolicyStateValues | string;
|
|
522
|
+
|
|
523
|
+
Description?: string;
|
|
524
|
+
|
|
525
|
+
PolicyDetails?: PolicyDetails;
|
|
526
|
+
}
|
|
527
|
+
export declare namespace UpdateLifecyclePolicyRequest {
|
|
528
|
+
|
|
529
|
+
const filterSensitiveLog: (obj: UpdateLifecyclePolicyRequest) => any;
|
|
530
|
+
}
|
|
531
|
+
export interface UpdateLifecyclePolicyResponse {
|
|
532
|
+
}
|
|
533
|
+
export declare namespace UpdateLifecyclePolicyResponse {
|
|
534
|
+
|
|
535
|
+
const filterSensitiveLog: (obj: UpdateLifecyclePolicyResponse) => any;
|
|
536
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { CreateLifecyclePolicyCommandInput, CreateLifecyclePolicyCommandOutput } from "../commands/CreateLifecyclePolicyCommand";
|
|
4
|
+
import { DeleteLifecyclePolicyCommandInput, DeleteLifecyclePolicyCommandOutput } from "../commands/DeleteLifecyclePolicyCommand";
|
|
5
|
+
import { GetLifecyclePoliciesCommandInput, GetLifecyclePoliciesCommandOutput } from "../commands/GetLifecyclePoliciesCommand";
|
|
6
|
+
import { GetLifecyclePolicyCommandInput, GetLifecyclePolicyCommandOutput } from "../commands/GetLifecyclePolicyCommand";
|
|
7
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
8
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
9
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
10
|
+
import { UpdateLifecyclePolicyCommandInput, UpdateLifecyclePolicyCommandOutput } from "../commands/UpdateLifecyclePolicyCommand";
|
|
11
|
+
export declare const serializeAws_restJson1CreateLifecyclePolicyCommand: (input: CreateLifecyclePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
|
+
export declare const serializeAws_restJson1DeleteLifecyclePolicyCommand: (input: DeleteLifecyclePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
+
export declare const serializeAws_restJson1GetLifecyclePoliciesCommand: (input: GetLifecyclePoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
|
+
export declare const serializeAws_restJson1GetLifecyclePolicyCommand: (input: GetLifecyclePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
+
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_restJson1UpdateLifecyclePolicyCommand: (input: UpdateLifecyclePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const deserializeAws_restJson1CreateLifecyclePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLifecyclePolicyCommandOutput>;
|
|
20
|
+
export declare const deserializeAws_restJson1DeleteLifecyclePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLifecyclePolicyCommandOutput>;
|
|
21
|
+
export declare const deserializeAws_restJson1GetLifecyclePoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLifecyclePoliciesCommandOutput>;
|
|
22
|
+
export declare const deserializeAws_restJson1GetLifecyclePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLifecyclePolicyCommandOutput>;
|
|
23
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
24
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
25
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_restJson1UpdateLifecyclePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLifecyclePolicyCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { DLMClientConfig } from "./DLMClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { DLMClientConfig } from "./DLMClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { DLMClientConfig } from "./DLMClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { DLMClientConfig } from "./DLMClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: DLMClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|