@aws-sdk/client-dlm 3.301.0 → 3.303.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/dist-cjs/models/models_0.js +41 -51
- package/dist-es/models/models_0.js +41 -51
- package/dist-types/models/models_0.d.ts +91 -41
- package/dist-types/ts3.4/models/models_0.d.ts +61 -41
- package/package.json +34 -34
|
@@ -2,51 +2,42 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.GettablePolicyStateValues = exports.ResourceNotFoundException = exports.LimitExceededException = exports.InvalidRequestException = exports.InternalServerException = exports.SettablePolicyStateValues = exports.LocationValues = exports.IntervalUnitValues = exports.ResourceTypeValues = exports.ResourceLocationValues = exports.PolicyTypeValues = exports.EventSourceValues = exports.EventTypeValues = exports.RetentionIntervalUnitValues = void 0;
|
|
4
4
|
const DLMServiceException_1 = require("./DLMServiceException");
|
|
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
|
-
(function (LocationValues) {
|
|
42
|
-
LocationValues["CLOUD"] = "CLOUD";
|
|
43
|
-
LocationValues["OUTPOST_LOCAL"] = "OUTPOST_LOCAL";
|
|
44
|
-
})(LocationValues = exports.LocationValues || (exports.LocationValues = {}));
|
|
45
|
-
var SettablePolicyStateValues;
|
|
46
|
-
(function (SettablePolicyStateValues) {
|
|
47
|
-
SettablePolicyStateValues["DISABLED"] = "DISABLED";
|
|
48
|
-
SettablePolicyStateValues["ENABLED"] = "ENABLED";
|
|
49
|
-
})(SettablePolicyStateValues = exports.SettablePolicyStateValues || (exports.SettablePolicyStateValues = {}));
|
|
5
|
+
exports.RetentionIntervalUnitValues = {
|
|
6
|
+
DAYS: "DAYS",
|
|
7
|
+
MONTHS: "MONTHS",
|
|
8
|
+
WEEKS: "WEEKS",
|
|
9
|
+
YEARS: "YEARS",
|
|
10
|
+
};
|
|
11
|
+
exports.EventTypeValues = {
|
|
12
|
+
SHARE_SNAPSHOT: "shareSnapshot",
|
|
13
|
+
};
|
|
14
|
+
exports.EventSourceValues = {
|
|
15
|
+
MANAGED_CWE: "MANAGED_CWE",
|
|
16
|
+
};
|
|
17
|
+
exports.PolicyTypeValues = {
|
|
18
|
+
EBS_SNAPSHOT_MANAGEMENT: "EBS_SNAPSHOT_MANAGEMENT",
|
|
19
|
+
EVENT_BASED_POLICY: "EVENT_BASED_POLICY",
|
|
20
|
+
IMAGE_MANAGEMENT: "IMAGE_MANAGEMENT",
|
|
21
|
+
};
|
|
22
|
+
exports.ResourceLocationValues = {
|
|
23
|
+
CLOUD: "CLOUD",
|
|
24
|
+
OUTPOST: "OUTPOST",
|
|
25
|
+
};
|
|
26
|
+
exports.ResourceTypeValues = {
|
|
27
|
+
INSTANCE: "INSTANCE",
|
|
28
|
+
VOLUME: "VOLUME",
|
|
29
|
+
};
|
|
30
|
+
exports.IntervalUnitValues = {
|
|
31
|
+
HOURS: "HOURS",
|
|
32
|
+
};
|
|
33
|
+
exports.LocationValues = {
|
|
34
|
+
CLOUD: "CLOUD",
|
|
35
|
+
OUTPOST_LOCAL: "OUTPOST_LOCAL",
|
|
36
|
+
};
|
|
37
|
+
exports.SettablePolicyStateValues = {
|
|
38
|
+
DISABLED: "DISABLED",
|
|
39
|
+
ENABLED: "ENABLED",
|
|
40
|
+
};
|
|
50
41
|
class InternalServerException extends DLMServiceException_1.DLMServiceException {
|
|
51
42
|
constructor(opts) {
|
|
52
43
|
super({
|
|
@@ -112,9 +103,8 @@ class ResourceNotFoundException extends DLMServiceException_1.DLMServiceExceptio
|
|
|
112
103
|
}
|
|
113
104
|
}
|
|
114
105
|
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
})(GettablePolicyStateValues = exports.GettablePolicyStateValues || (exports.GettablePolicyStateValues = {}));
|
|
106
|
+
exports.GettablePolicyStateValues = {
|
|
107
|
+
DISABLED: "DISABLED",
|
|
108
|
+
ENABLED: "ENABLED",
|
|
109
|
+
ERROR: "ERROR",
|
|
110
|
+
};
|
|
@@ -1,49 +1,40 @@
|
|
|
1
1
|
import { DLMServiceException as __BaseException } from "./DLMServiceException";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
export
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
(function (LocationValues) {
|
|
39
|
-
LocationValues["CLOUD"] = "CLOUD";
|
|
40
|
-
LocationValues["OUTPOST_LOCAL"] = "OUTPOST_LOCAL";
|
|
41
|
-
})(LocationValues || (LocationValues = {}));
|
|
42
|
-
export var SettablePolicyStateValues;
|
|
43
|
-
(function (SettablePolicyStateValues) {
|
|
44
|
-
SettablePolicyStateValues["DISABLED"] = "DISABLED";
|
|
45
|
-
SettablePolicyStateValues["ENABLED"] = "ENABLED";
|
|
46
|
-
})(SettablePolicyStateValues || (SettablePolicyStateValues = {}));
|
|
2
|
+
export const RetentionIntervalUnitValues = {
|
|
3
|
+
DAYS: "DAYS",
|
|
4
|
+
MONTHS: "MONTHS",
|
|
5
|
+
WEEKS: "WEEKS",
|
|
6
|
+
YEARS: "YEARS",
|
|
7
|
+
};
|
|
8
|
+
export const EventTypeValues = {
|
|
9
|
+
SHARE_SNAPSHOT: "shareSnapshot",
|
|
10
|
+
};
|
|
11
|
+
export const EventSourceValues = {
|
|
12
|
+
MANAGED_CWE: "MANAGED_CWE",
|
|
13
|
+
};
|
|
14
|
+
export const PolicyTypeValues = {
|
|
15
|
+
EBS_SNAPSHOT_MANAGEMENT: "EBS_SNAPSHOT_MANAGEMENT",
|
|
16
|
+
EVENT_BASED_POLICY: "EVENT_BASED_POLICY",
|
|
17
|
+
IMAGE_MANAGEMENT: "IMAGE_MANAGEMENT",
|
|
18
|
+
};
|
|
19
|
+
export const ResourceLocationValues = {
|
|
20
|
+
CLOUD: "CLOUD",
|
|
21
|
+
OUTPOST: "OUTPOST",
|
|
22
|
+
};
|
|
23
|
+
export const ResourceTypeValues = {
|
|
24
|
+
INSTANCE: "INSTANCE",
|
|
25
|
+
VOLUME: "VOLUME",
|
|
26
|
+
};
|
|
27
|
+
export const IntervalUnitValues = {
|
|
28
|
+
HOURS: "HOURS",
|
|
29
|
+
};
|
|
30
|
+
export const LocationValues = {
|
|
31
|
+
CLOUD: "CLOUD",
|
|
32
|
+
OUTPOST_LOCAL: "OUTPOST_LOCAL",
|
|
33
|
+
};
|
|
34
|
+
export const SettablePolicyStateValues = {
|
|
35
|
+
DISABLED: "DISABLED",
|
|
36
|
+
ENABLED: "ENABLED",
|
|
37
|
+
};
|
|
47
38
|
export class InternalServerException extends __BaseException {
|
|
48
39
|
constructor(opts) {
|
|
49
40
|
super({
|
|
@@ -105,9 +96,8 @@ export class ResourceNotFoundException extends __BaseException {
|
|
|
105
96
|
this.ResourceIds = opts.ResourceIds;
|
|
106
97
|
}
|
|
107
98
|
}
|
|
108
|
-
export
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
})(GettablePolicyStateValues || (GettablePolicyStateValues = {}));
|
|
99
|
+
export const GettablePolicyStateValues = {
|
|
100
|
+
DISABLED: "DISABLED",
|
|
101
|
+
ENABLED: "ENABLED",
|
|
102
|
+
ERROR: "ERROR",
|
|
103
|
+
};
|
|
@@ -21,13 +21,18 @@ export interface EncryptionConfiguration {
|
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* @public
|
|
24
|
+
* @enum
|
|
24
25
|
*/
|
|
25
|
-
export declare
|
|
26
|
-
DAYS
|
|
27
|
-
MONTHS
|
|
28
|
-
WEEKS
|
|
29
|
-
YEARS
|
|
30
|
-
}
|
|
26
|
+
export declare const RetentionIntervalUnitValues: {
|
|
27
|
+
readonly DAYS: "DAYS";
|
|
28
|
+
readonly MONTHS: "MONTHS";
|
|
29
|
+
readonly WEEKS: "WEEKS";
|
|
30
|
+
readonly YEARS: "YEARS";
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export type RetentionIntervalUnitValues = (typeof RetentionIntervalUnitValues)[keyof typeof RetentionIntervalUnitValues];
|
|
31
36
|
/**
|
|
32
37
|
* @public
|
|
33
38
|
* <p>Specifies a retention rule for cross-Region snapshot copies created by snapshot or
|
|
@@ -147,10 +152,15 @@ export interface ArchiveRule {
|
|
|
147
152
|
}
|
|
148
153
|
/**
|
|
149
154
|
* @public
|
|
155
|
+
* @enum
|
|
150
156
|
*/
|
|
151
|
-
export declare
|
|
152
|
-
SHARE_SNAPSHOT
|
|
153
|
-
}
|
|
157
|
+
export declare const EventTypeValues: {
|
|
158
|
+
readonly SHARE_SNAPSHOT: "shareSnapshot";
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export type EventTypeValues = (typeof EventTypeValues)[keyof typeof EventTypeValues];
|
|
154
164
|
/**
|
|
155
165
|
* @public
|
|
156
166
|
* <p>
|
|
@@ -178,10 +188,15 @@ export interface EventParameters {
|
|
|
178
188
|
}
|
|
179
189
|
/**
|
|
180
190
|
* @public
|
|
191
|
+
* @enum
|
|
181
192
|
*/
|
|
182
|
-
export declare
|
|
183
|
-
MANAGED_CWE
|
|
184
|
-
}
|
|
193
|
+
export declare const EventSourceValues: {
|
|
194
|
+
readonly MANAGED_CWE: "MANAGED_CWE";
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export type EventSourceValues = (typeof EventSourceValues)[keyof typeof EventSourceValues];
|
|
185
200
|
/**
|
|
186
201
|
* @public
|
|
187
202
|
* <p>
|
|
@@ -252,39 +267,64 @@ export interface _Parameters {
|
|
|
252
267
|
}
|
|
253
268
|
/**
|
|
254
269
|
* @public
|
|
270
|
+
* @enum
|
|
255
271
|
*/
|
|
256
|
-
export declare
|
|
257
|
-
EBS_SNAPSHOT_MANAGEMENT
|
|
258
|
-
EVENT_BASED_POLICY
|
|
259
|
-
IMAGE_MANAGEMENT
|
|
260
|
-
}
|
|
272
|
+
export declare const PolicyTypeValues: {
|
|
273
|
+
readonly EBS_SNAPSHOT_MANAGEMENT: "EBS_SNAPSHOT_MANAGEMENT";
|
|
274
|
+
readonly EVENT_BASED_POLICY: "EVENT_BASED_POLICY";
|
|
275
|
+
readonly IMAGE_MANAGEMENT: "IMAGE_MANAGEMENT";
|
|
276
|
+
};
|
|
261
277
|
/**
|
|
262
278
|
* @public
|
|
263
279
|
*/
|
|
264
|
-
export
|
|
265
|
-
CLOUD = "CLOUD",
|
|
266
|
-
OUTPOST = "OUTPOST"
|
|
267
|
-
}
|
|
280
|
+
export type PolicyTypeValues = (typeof PolicyTypeValues)[keyof typeof PolicyTypeValues];
|
|
268
281
|
/**
|
|
269
282
|
* @public
|
|
283
|
+
* @enum
|
|
270
284
|
*/
|
|
271
|
-
export declare
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
}
|
|
285
|
+
export declare const ResourceLocationValues: {
|
|
286
|
+
readonly CLOUD: "CLOUD";
|
|
287
|
+
readonly OUTPOST: "OUTPOST";
|
|
288
|
+
};
|
|
275
289
|
/**
|
|
276
290
|
* @public
|
|
277
291
|
*/
|
|
278
|
-
export
|
|
279
|
-
HOURS = "HOURS"
|
|
280
|
-
}
|
|
292
|
+
export type ResourceLocationValues = (typeof ResourceLocationValues)[keyof typeof ResourceLocationValues];
|
|
281
293
|
/**
|
|
282
294
|
* @public
|
|
295
|
+
* @enum
|
|
283
296
|
*/
|
|
284
|
-
export declare
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
}
|
|
297
|
+
export declare const ResourceTypeValues: {
|
|
298
|
+
readonly INSTANCE: "INSTANCE";
|
|
299
|
+
readonly VOLUME: "VOLUME";
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
export type ResourceTypeValues = (typeof ResourceTypeValues)[keyof typeof ResourceTypeValues];
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
* @enum
|
|
308
|
+
*/
|
|
309
|
+
export declare const IntervalUnitValues: {
|
|
310
|
+
readonly HOURS: "HOURS";
|
|
311
|
+
};
|
|
312
|
+
/**
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
315
|
+
export type IntervalUnitValues = (typeof IntervalUnitValues)[keyof typeof IntervalUnitValues];
|
|
316
|
+
/**
|
|
317
|
+
* @public
|
|
318
|
+
* @enum
|
|
319
|
+
*/
|
|
320
|
+
export declare const LocationValues: {
|
|
321
|
+
readonly CLOUD: "CLOUD";
|
|
322
|
+
readonly OUTPOST_LOCAL: "OUTPOST_LOCAL";
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
export type LocationValues = (typeof LocationValues)[keyof typeof LocationValues];
|
|
288
328
|
/**
|
|
289
329
|
* @public
|
|
290
330
|
* <p>
|
|
@@ -679,11 +719,16 @@ export interface PolicyDetails {
|
|
|
679
719
|
}
|
|
680
720
|
/**
|
|
681
721
|
* @public
|
|
722
|
+
* @enum
|
|
682
723
|
*/
|
|
683
|
-
export declare
|
|
684
|
-
DISABLED
|
|
685
|
-
ENABLED
|
|
686
|
-
}
|
|
724
|
+
export declare const SettablePolicyStateValues: {
|
|
725
|
+
readonly DISABLED: "DISABLED";
|
|
726
|
+
readonly ENABLED: "ENABLED";
|
|
727
|
+
};
|
|
728
|
+
/**
|
|
729
|
+
* @public
|
|
730
|
+
*/
|
|
731
|
+
export type SettablePolicyStateValues = (typeof SettablePolicyStateValues)[keyof typeof SettablePolicyStateValues];
|
|
687
732
|
/**
|
|
688
733
|
* @public
|
|
689
734
|
*/
|
|
@@ -813,12 +858,17 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
813
858
|
}
|
|
814
859
|
/**
|
|
815
860
|
* @public
|
|
861
|
+
* @enum
|
|
816
862
|
*/
|
|
817
|
-
export declare
|
|
818
|
-
DISABLED
|
|
819
|
-
ENABLED
|
|
820
|
-
ERROR
|
|
821
|
-
}
|
|
863
|
+
export declare const GettablePolicyStateValues: {
|
|
864
|
+
readonly DISABLED: "DISABLED";
|
|
865
|
+
readonly ENABLED: "ENABLED";
|
|
866
|
+
readonly ERROR: "ERROR";
|
|
867
|
+
};
|
|
868
|
+
/**
|
|
869
|
+
* @public
|
|
870
|
+
*/
|
|
871
|
+
export type GettablePolicyStateValues = (typeof GettablePolicyStateValues)[keyof typeof GettablePolicyStateValues];
|
|
822
872
|
/**
|
|
823
873
|
* @public
|
|
824
874
|
*/
|
|
@@ -4,12 +4,14 @@ export interface EncryptionConfiguration {
|
|
|
4
4
|
Encrypted: boolean | undefined;
|
|
5
5
|
CmkArn?: string;
|
|
6
6
|
}
|
|
7
|
-
export declare
|
|
8
|
-
DAYS
|
|
9
|
-
MONTHS
|
|
10
|
-
WEEKS
|
|
11
|
-
YEARS
|
|
12
|
-
}
|
|
7
|
+
export declare const RetentionIntervalUnitValues: {
|
|
8
|
+
readonly DAYS: "DAYS";
|
|
9
|
+
readonly MONTHS: "MONTHS";
|
|
10
|
+
readonly WEEKS: "WEEKS";
|
|
11
|
+
readonly YEARS: "YEARS";
|
|
12
|
+
};
|
|
13
|
+
export type RetentionIntervalUnitValues =
|
|
14
|
+
(typeof RetentionIntervalUnitValues)[keyof typeof RetentionIntervalUnitValues];
|
|
13
15
|
export interface CrossRegionCopyRetainRule {
|
|
14
16
|
Interval?: number;
|
|
15
17
|
IntervalUnit?: RetentionIntervalUnitValues | string;
|
|
@@ -34,17 +36,21 @@ export interface ArchiveRetainRule {
|
|
|
34
36
|
export interface ArchiveRule {
|
|
35
37
|
RetainRule: ArchiveRetainRule | undefined;
|
|
36
38
|
}
|
|
37
|
-
export declare
|
|
38
|
-
SHARE_SNAPSHOT
|
|
39
|
-
}
|
|
39
|
+
export declare const EventTypeValues: {
|
|
40
|
+
readonly SHARE_SNAPSHOT: "shareSnapshot";
|
|
41
|
+
};
|
|
42
|
+
export type EventTypeValues =
|
|
43
|
+
(typeof EventTypeValues)[keyof typeof EventTypeValues];
|
|
40
44
|
export interface EventParameters {
|
|
41
45
|
EventType: EventTypeValues | string | undefined;
|
|
42
46
|
SnapshotOwner: string[] | undefined;
|
|
43
47
|
DescriptionRegex: string | undefined;
|
|
44
48
|
}
|
|
45
|
-
export declare
|
|
46
|
-
MANAGED_CWE
|
|
47
|
-
}
|
|
49
|
+
export declare const EventSourceValues: {
|
|
50
|
+
readonly MANAGED_CWE: "MANAGED_CWE";
|
|
51
|
+
};
|
|
52
|
+
export type EventSourceValues =
|
|
53
|
+
(typeof EventSourceValues)[keyof typeof EventSourceValues];
|
|
48
54
|
export interface EventSource {
|
|
49
55
|
Type: EventSourceValues | string | undefined;
|
|
50
56
|
Parameters?: EventParameters;
|
|
@@ -58,26 +64,36 @@ export interface _Parameters {
|
|
|
58
64
|
NoReboot?: boolean;
|
|
59
65
|
ExcludeDataVolumeTags?: Tag[];
|
|
60
66
|
}
|
|
61
|
-
export declare
|
|
62
|
-
EBS_SNAPSHOT_MANAGEMENT
|
|
63
|
-
EVENT_BASED_POLICY
|
|
64
|
-
IMAGE_MANAGEMENT
|
|
65
|
-
}
|
|
66
|
-
export
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
export declare
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
67
|
+
export declare const PolicyTypeValues: {
|
|
68
|
+
readonly EBS_SNAPSHOT_MANAGEMENT: "EBS_SNAPSHOT_MANAGEMENT";
|
|
69
|
+
readonly EVENT_BASED_POLICY: "EVENT_BASED_POLICY";
|
|
70
|
+
readonly IMAGE_MANAGEMENT: "IMAGE_MANAGEMENT";
|
|
71
|
+
};
|
|
72
|
+
export type PolicyTypeValues =
|
|
73
|
+
(typeof PolicyTypeValues)[keyof typeof PolicyTypeValues];
|
|
74
|
+
export declare const ResourceLocationValues: {
|
|
75
|
+
readonly CLOUD: "CLOUD";
|
|
76
|
+
readonly OUTPOST: "OUTPOST";
|
|
77
|
+
};
|
|
78
|
+
export type ResourceLocationValues =
|
|
79
|
+
(typeof ResourceLocationValues)[keyof typeof ResourceLocationValues];
|
|
80
|
+
export declare const ResourceTypeValues: {
|
|
81
|
+
readonly INSTANCE: "INSTANCE";
|
|
82
|
+
readonly VOLUME: "VOLUME";
|
|
83
|
+
};
|
|
84
|
+
export type ResourceTypeValues =
|
|
85
|
+
(typeof ResourceTypeValues)[keyof typeof ResourceTypeValues];
|
|
86
|
+
export declare const IntervalUnitValues: {
|
|
87
|
+
readonly HOURS: "HOURS";
|
|
88
|
+
};
|
|
89
|
+
export type IntervalUnitValues =
|
|
90
|
+
(typeof IntervalUnitValues)[keyof typeof IntervalUnitValues];
|
|
91
|
+
export declare const LocationValues: {
|
|
92
|
+
readonly CLOUD: "CLOUD";
|
|
93
|
+
readonly OUTPOST_LOCAL: "OUTPOST_LOCAL";
|
|
94
|
+
};
|
|
95
|
+
export type LocationValues =
|
|
96
|
+
(typeof LocationValues)[keyof typeof LocationValues];
|
|
81
97
|
export interface CreateRule {
|
|
82
98
|
Location?: LocationValues | string;
|
|
83
99
|
Interval?: number;
|
|
@@ -142,10 +158,12 @@ export interface PolicyDetails {
|
|
|
142
158
|
EventSource?: EventSource;
|
|
143
159
|
Actions?: Action[];
|
|
144
160
|
}
|
|
145
|
-
export declare
|
|
146
|
-
DISABLED
|
|
147
|
-
ENABLED
|
|
148
|
-
}
|
|
161
|
+
export declare const SettablePolicyStateValues: {
|
|
162
|
+
readonly DISABLED: "DISABLED";
|
|
163
|
+
readonly ENABLED: "ENABLED";
|
|
164
|
+
};
|
|
165
|
+
export type SettablePolicyStateValues =
|
|
166
|
+
(typeof SettablePolicyStateValues)[keyof typeof SettablePolicyStateValues];
|
|
149
167
|
export interface CreateLifecyclePolicyRequest {
|
|
150
168
|
ExecutionRoleArn: string | undefined;
|
|
151
169
|
Description: string | undefined;
|
|
@@ -201,11 +219,13 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
201
219
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
202
220
|
);
|
|
203
221
|
}
|
|
204
|
-
export declare
|
|
205
|
-
DISABLED
|
|
206
|
-
ENABLED
|
|
207
|
-
ERROR
|
|
208
|
-
}
|
|
222
|
+
export declare const GettablePolicyStateValues: {
|
|
223
|
+
readonly DISABLED: "DISABLED";
|
|
224
|
+
readonly ENABLED: "ENABLED";
|
|
225
|
+
readonly ERROR: "ERROR";
|
|
226
|
+
};
|
|
227
|
+
export type GettablePolicyStateValues =
|
|
228
|
+
(typeof GettablePolicyStateValues)[keyof typeof GettablePolicyStateValues];
|
|
209
229
|
export interface GetLifecyclePoliciesRequest {
|
|
210
230
|
PolicyIds?: string[];
|
|
211
231
|
State?: GettablePolicyStateValues | string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dlm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dlm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|