dlm.d.ts
15.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
import {Request} from '../lib/request';
import {Response} from '../lib/response';
import {AWSError} from '../lib/error';
import {Service} from '../lib/service';
import {ServiceConfigurationOptions} from '../lib/service';
import {ConfigBase as Config} from '../lib/config';
interface Blob {}
declare class DLM extends Service {
/**
* Constructs a service object. This object has one method for each API operation.
*/
constructor(options?: DLM.Types.ClientConfiguration)
config: Config & DLM.Types.ClientConfiguration;
/**
* Creates a policy to manage the lifecycle of the specified AWS resources. You can create up to 100 lifecycle policies.
*/
createLifecyclePolicy(params: DLM.Types.CreateLifecyclePolicyRequest, callback?: (err: AWSError, data: DLM.Types.CreateLifecyclePolicyResponse) => void): Request<DLM.Types.CreateLifecyclePolicyResponse, AWSError>;
/**
* Creates a policy to manage the lifecycle of the specified AWS resources. You can create up to 100 lifecycle policies.
*/
createLifecyclePolicy(callback?: (err: AWSError, data: DLM.Types.CreateLifecyclePolicyResponse) => void): Request<DLM.Types.CreateLifecyclePolicyResponse, AWSError>;
/**
* Deletes the specified lifecycle policy and halts the automated operations that the policy specified.
*/
deleteLifecyclePolicy(params: DLM.Types.DeleteLifecyclePolicyRequest, callback?: (err: AWSError, data: DLM.Types.DeleteLifecyclePolicyResponse) => void): Request<DLM.Types.DeleteLifecyclePolicyResponse, AWSError>;
/**
* Deletes the specified lifecycle policy and halts the automated operations that the policy specified.
*/
deleteLifecyclePolicy(callback?: (err: AWSError, data: DLM.Types.DeleteLifecyclePolicyResponse) => void): Request<DLM.Types.DeleteLifecyclePolicyResponse, AWSError>;
/**
* Gets summary information about all or the specified data lifecycle policies. To get complete information about a policy, use GetLifecyclePolicy.
*/
getLifecyclePolicies(params: DLM.Types.GetLifecyclePoliciesRequest, callback?: (err: AWSError, data: DLM.Types.GetLifecyclePoliciesResponse) => void): Request<DLM.Types.GetLifecyclePoliciesResponse, AWSError>;
/**
* Gets summary information about all or the specified data lifecycle policies. To get complete information about a policy, use GetLifecyclePolicy.
*/
getLifecyclePolicies(callback?: (err: AWSError, data: DLM.Types.GetLifecyclePoliciesResponse) => void): Request<DLM.Types.GetLifecyclePoliciesResponse, AWSError>;
/**
* Gets detailed information about the specified lifecycle policy.
*/
getLifecyclePolicy(params: DLM.Types.GetLifecyclePolicyRequest, callback?: (err: AWSError, data: DLM.Types.GetLifecyclePolicyResponse) => void): Request<DLM.Types.GetLifecyclePolicyResponse, AWSError>;
/**
* Gets detailed information about the specified lifecycle policy.
*/
getLifecyclePolicy(callback?: (err: AWSError, data: DLM.Types.GetLifecyclePolicyResponse) => void): Request<DLM.Types.GetLifecyclePolicyResponse, AWSError>;
/**
* Lists the tags for the specified resource.
*/
listTagsForResource(params: DLM.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: DLM.Types.ListTagsForResourceResponse) => void): Request<DLM.Types.ListTagsForResourceResponse, AWSError>;
/**
* Lists the tags for the specified resource.
*/
listTagsForResource(callback?: (err: AWSError, data: DLM.Types.ListTagsForResourceResponse) => void): Request<DLM.Types.ListTagsForResourceResponse, AWSError>;
/**
* Adds the specified tags to the specified resource.
*/
tagResource(params: DLM.Types.TagResourceRequest, callback?: (err: AWSError, data: DLM.Types.TagResourceResponse) => void): Request<DLM.Types.TagResourceResponse, AWSError>;
/**
* Adds the specified tags to the specified resource.
*/
tagResource(callback?: (err: AWSError, data: DLM.Types.TagResourceResponse) => void): Request<DLM.Types.TagResourceResponse, AWSError>;
/**
* Removes the specified tags from the specified resource.
*/
untagResource(params: DLM.Types.UntagResourceRequest, callback?: (err: AWSError, data: DLM.Types.UntagResourceResponse) => void): Request<DLM.Types.UntagResourceResponse, AWSError>;
/**
* Removes the specified tags from the specified resource.
*/
untagResource(callback?: (err: AWSError, data: DLM.Types.UntagResourceResponse) => void): Request<DLM.Types.UntagResourceResponse, AWSError>;
/**
* Updates the specified lifecycle policy.
*/
updateLifecyclePolicy(params: DLM.Types.UpdateLifecyclePolicyRequest, callback?: (err: AWSError, data: DLM.Types.UpdateLifecyclePolicyResponse) => void): Request<DLM.Types.UpdateLifecyclePolicyResponse, AWSError>;
/**
* Updates the specified lifecycle policy.
*/
updateLifecyclePolicy(callback?: (err: AWSError, data: DLM.Types.UpdateLifecyclePolicyResponse) => void): Request<DLM.Types.UpdateLifecyclePolicyResponse, AWSError>;
}
declare namespace DLM {
export type AvailabilityZone = string;
export type AvailabilityZoneList = AvailabilityZone[];
export type CopyTags = boolean;
export type Count = number;
export interface CreateLifecyclePolicyRequest {
/**
* The Amazon Resource Name (ARN) of the IAM role used to run the operations specified by the lifecycle policy.
*/
ExecutionRoleArn: ExecutionRoleArn;
/**
* A description of the lifecycle policy. The characters ^[0-9A-Za-z _-]+$ are supported.
*/
Description: PolicyDescription;
/**
* The desired activation state of the lifecycle policy after creation.
*/
State: SettablePolicyStateValues;
/**
* The configuration details of the lifecycle policy.
*/
PolicyDetails: PolicyDetails;
/**
* The tags to apply to the lifecycle policy during creation.
*/
Tags?: TagMap;
}
export interface CreateLifecyclePolicyResponse {
/**
* The identifier of the lifecycle policy.
*/
PolicyId?: PolicyId;
}
export interface CreateRule {
/**
* The interval between snapshots. The supported values are 2, 3, 4, 6, 8, 12, and 24.
*/
Interval: Interval;
/**
* The interval unit.
*/
IntervalUnit: IntervalUnitValues;
/**
* The time, in UTC, to start the operation. The supported format is hh:mm. The operation occurs within a one-hour window following the specified time.
*/
Times?: TimesList;
}
export interface DeleteLifecyclePolicyRequest {
/**
* The identifier of the lifecycle policy.
*/
PolicyId: PolicyId;
}
export interface DeleteLifecyclePolicyResponse {
}
export type ExcludeBootVolume = boolean;
export type ExecutionRoleArn = string;
export interface FastRestoreRule {
/**
* The number of snapshots to be enabled with fast snapshot restore.
*/
Count?: Count;
/**
* The amount of time to enable fast snapshot restore. The maximum is 100 years. This is equivalent to 1200 months, 5200 weeks, or 36500 days.
*/
Interval?: Interval;
/**
* The unit of time for enabling fast snapshot restore.
*/
IntervalUnit?: RetentionIntervalUnitValues;
/**
* The Availability Zones in which to enable fast snapshot restore.
*/
AvailabilityZones: AvailabilityZoneList;
}
export interface GetLifecyclePoliciesRequest {
/**
* The identifiers of the data lifecycle policies.
*/
PolicyIds?: PolicyIdList;
/**
* The activation state.
*/
State?: GettablePolicyStateValues;
/**
* The resource type.
*/
ResourceTypes?: ResourceTypeValuesList;
/**
* The target tag for a policy. Tags are strings in the format key=value.
*/
TargetTags?: TargetTagsFilterList;
/**
* The tags to add to objects created by the policy. Tags are strings in the format key=value. These user-defined tags are added in addition to the AWS-added lifecycle tags.
*/
TagsToAdd?: TagsToAddFilterList;
}
export interface GetLifecyclePoliciesResponse {
/**
* Summary information about the lifecycle policies.
*/
Policies?: LifecyclePolicySummaryList;
}
export interface GetLifecyclePolicyRequest {
/**
* The identifier of the lifecycle policy.
*/
PolicyId: PolicyId;
}
export interface GetLifecyclePolicyResponse {
/**
* Detailed information about the lifecycle policy.
*/
Policy?: LifecyclePolicy;
}
export type GettablePolicyStateValues = "ENABLED"|"DISABLED"|"ERROR"|string;
export type Interval = number;
export type IntervalUnitValues = "HOURS"|string;
export interface LifecyclePolicy {
/**
* The identifier of the lifecycle policy.
*/
PolicyId?: PolicyId;
/**
* The description of the lifecycle policy.
*/
Description?: PolicyDescription;
/**
* The activation state of the lifecycle policy.
*/
State?: GettablePolicyStateValues;
/**
* The description of the status.
*/
StatusMessage?: StatusMessage;
/**
* The Amazon Resource Name (ARN) of the IAM role used to run the operations specified by the lifecycle policy.
*/
ExecutionRoleArn?: ExecutionRoleArn;
/**
* The local date and time when the lifecycle policy was created.
*/
DateCreated?: Timestamp;
/**
* The local date and time when the lifecycle policy was last modified.
*/
DateModified?: Timestamp;
/**
* The configuration of the lifecycle policy
*/
PolicyDetails?: PolicyDetails;
/**
* The tags.
*/
Tags?: TagMap;
/**
* The Amazon Resource Name (ARN) of the policy.
*/
PolicyArn?: PolicyArn;
}
export interface LifecyclePolicySummary {
/**
* The identifier of the lifecycle policy.
*/
PolicyId?: PolicyId;
/**
* The description of the lifecycle policy.
*/
Description?: PolicyDescription;
/**
* The activation state of the lifecycle policy.
*/
State?: GettablePolicyStateValues;
/**
* The tags.
*/
Tags?: TagMap;
}
export type LifecyclePolicySummaryList = LifecyclePolicySummary[];
export interface ListTagsForResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
ResourceArn: PolicyArn;
}
export interface ListTagsForResourceResponse {
/**
* Information about the tags.
*/
Tags?: TagMap;
}
export interface Parameters {
/**
* When executing an EBS Snapshot Management – Instance policy, execute all CreateSnapshots calls with the excludeBootVolume set to the supplied field. Defaults to false. Only valid for EBS Snapshot Management – Instance policies.
*/
ExcludeBootVolume?: ExcludeBootVolume;
}
export type PolicyArn = string;
export type PolicyDescription = string;
export interface PolicyDetails {
/**
* This field determines the valid target resource types and actions a policy can manage. This field defaults to EBS_SNAPSHOT_MANAGEMENT if not present.
*/
PolicyType?: PolicyTypeValues;
/**
* The resource type.
*/
ResourceTypes?: ResourceTypeValuesList;
/**
* The single tag that identifies targeted resources for this policy.
*/
TargetTags?: TargetTagList;
/**
* The schedule of policy-defined actions.
*/
Schedules?: ScheduleList;
/**
* A set of optional parameters that can be provided by the policy.
*/
Parameters?: Parameters;
}
export type PolicyId = string;
export type PolicyIdList = PolicyId[];
export type PolicyTypeValues = "EBS_SNAPSHOT_MANAGEMENT"|string;
export type ResourceTypeValues = "VOLUME"|"INSTANCE"|string;
export type ResourceTypeValuesList = ResourceTypeValues[];
export interface RetainRule {
/**
* The number of snapshots to retain for each volume, up to a maximum of 1000.
*/
Count?: Count;
/**
* The amount of time to retain each snapshot. The maximum is 100 years. This is equivalent to 1200 months, 5200 weeks, or 36500 days.
*/
Interval?: Interval;
/**
* The unit of time for time-based retention.
*/
IntervalUnit?: RetentionIntervalUnitValues;
}
export type RetentionIntervalUnitValues = "DAYS"|"WEEKS"|"MONTHS"|"YEARS"|string;
export interface Schedule {
/**
* The name of the schedule.
*/
Name?: ScheduleName;
/**
* Copy all user-defined tags on a source volume to snapshots of the volume created by this policy.
*/
CopyTags?: CopyTags;
/**
* The tags to apply to policy-created resources. These user-defined tags are in addition to the AWS-added lifecycle tags.
*/
TagsToAdd?: TagsToAddList;
/**
* A collection of key/value pairs with values determined dynamically when the policy is executed. Keys may be any valid Amazon EC2 tag key. Values must be in one of the two following formats: $(instance-id) or $(timestamp). Variable tags are only valid for EBS Snapshot Management – Instance policies.
*/
VariableTags?: VariableTagsList;
/**
* The create rule.
*/
CreateRule?: CreateRule;
/**
* The retention rule.
*/
RetainRule?: RetainRule;
/**
* Enable fast snapshot restore.
*/
FastRestoreRule?: FastRestoreRule;
}
export type ScheduleList = Schedule[];
export type ScheduleName = string;
export type SettablePolicyStateValues = "ENABLED"|"DISABLED"|string;
export type StatusMessage = string;
export type String = string;
export interface Tag {
/**
* The tag key.
*/
Key: String;
/**
* The tag value.
*/
Value: String;
}
export type TagFilter = string;
export type TagKey = string;
export type TagKeyList = TagKey[];
export type TagMap = {[key: string]: TagValue};
export interface TagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
ResourceArn: PolicyArn;
/**
* One or more tags.
*/
Tags: TagMap;
}
export interface TagResourceResponse {
}
export type TagValue = string;
export type TagsToAddFilterList = TagFilter[];
export type TagsToAddList = Tag[];
export type TargetTagList = Tag[];
export type TargetTagsFilterList = TagFilter[];
export type Time = string;
export type TimesList = Time[];
export type Timestamp = Date;
export interface UntagResourceRequest {
/**
* The Amazon Resource Name (ARN) of the resource.
*/
ResourceArn: PolicyArn;
/**
* The tag keys.
*/
TagKeys: TagKeyList;
}
export interface UntagResourceResponse {
}
export interface UpdateLifecyclePolicyRequest {
/**
* The identifier of the lifecycle policy.
*/
PolicyId: PolicyId;
/**
* The Amazon Resource Name (ARN) of the IAM role used to run the operations specified by the lifecycle policy.
*/
ExecutionRoleArn?: ExecutionRoleArn;
/**
* The desired activation state of the lifecycle policy after creation.
*/
State?: SettablePolicyStateValues;
/**
* A description of the lifecycle policy.
*/
Description?: PolicyDescription;
/**
* The configuration of the lifecycle policy. You cannot update the policy type or the resource type.
*/
PolicyDetails?: PolicyDetails;
}
export interface UpdateLifecyclePolicyResponse {
}
export type VariableTagsList = Tag[];
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
export type apiVersion = "2018-01-12"|"latest"|string;
export interface ClientApiVersions {
/**
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
*/
apiVersion?: apiVersion;
}
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
/**
* Contains interfaces for use with the DLM client.
*/
export import Types = DLM;
}
export = DLM;