@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.
@@ -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
- var RetentionIntervalUnitValues;
6
- (function (RetentionIntervalUnitValues) {
7
- RetentionIntervalUnitValues["DAYS"] = "DAYS";
8
- RetentionIntervalUnitValues["MONTHS"] = "MONTHS";
9
- RetentionIntervalUnitValues["WEEKS"] = "WEEKS";
10
- RetentionIntervalUnitValues["YEARS"] = "YEARS";
11
- })(RetentionIntervalUnitValues = exports.RetentionIntervalUnitValues || (exports.RetentionIntervalUnitValues = {}));
12
- var EventTypeValues;
13
- (function (EventTypeValues) {
14
- EventTypeValues["SHARE_SNAPSHOT"] = "shareSnapshot";
15
- })(EventTypeValues = exports.EventTypeValues || (exports.EventTypeValues = {}));
16
- var EventSourceValues;
17
- (function (EventSourceValues) {
18
- EventSourceValues["MANAGED_CWE"] = "MANAGED_CWE";
19
- })(EventSourceValues = exports.EventSourceValues || (exports.EventSourceValues = {}));
20
- var PolicyTypeValues;
21
- (function (PolicyTypeValues) {
22
- PolicyTypeValues["EBS_SNAPSHOT_MANAGEMENT"] = "EBS_SNAPSHOT_MANAGEMENT";
23
- PolicyTypeValues["EVENT_BASED_POLICY"] = "EVENT_BASED_POLICY";
24
- PolicyTypeValues["IMAGE_MANAGEMENT"] = "IMAGE_MANAGEMENT";
25
- })(PolicyTypeValues = exports.PolicyTypeValues || (exports.PolicyTypeValues = {}));
26
- var ResourceLocationValues;
27
- (function (ResourceLocationValues) {
28
- ResourceLocationValues["CLOUD"] = "CLOUD";
29
- ResourceLocationValues["OUTPOST"] = "OUTPOST";
30
- })(ResourceLocationValues = exports.ResourceLocationValues || (exports.ResourceLocationValues = {}));
31
- var ResourceTypeValues;
32
- (function (ResourceTypeValues) {
33
- ResourceTypeValues["INSTANCE"] = "INSTANCE";
34
- ResourceTypeValues["VOLUME"] = "VOLUME";
35
- })(ResourceTypeValues = exports.ResourceTypeValues || (exports.ResourceTypeValues = {}));
36
- var IntervalUnitValues;
37
- (function (IntervalUnitValues) {
38
- IntervalUnitValues["HOURS"] = "HOURS";
39
- })(IntervalUnitValues = exports.IntervalUnitValues || (exports.IntervalUnitValues = {}));
40
- var LocationValues;
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
- var GettablePolicyStateValues;
116
- (function (GettablePolicyStateValues) {
117
- GettablePolicyStateValues["DISABLED"] = "DISABLED";
118
- GettablePolicyStateValues["ENABLED"] = "ENABLED";
119
- GettablePolicyStateValues["ERROR"] = "ERROR";
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 var RetentionIntervalUnitValues;
3
- (function (RetentionIntervalUnitValues) {
4
- RetentionIntervalUnitValues["DAYS"] = "DAYS";
5
- RetentionIntervalUnitValues["MONTHS"] = "MONTHS";
6
- RetentionIntervalUnitValues["WEEKS"] = "WEEKS";
7
- RetentionIntervalUnitValues["YEARS"] = "YEARS";
8
- })(RetentionIntervalUnitValues || (RetentionIntervalUnitValues = {}));
9
- export var EventTypeValues;
10
- (function (EventTypeValues) {
11
- EventTypeValues["SHARE_SNAPSHOT"] = "shareSnapshot";
12
- })(EventTypeValues || (EventTypeValues = {}));
13
- export var EventSourceValues;
14
- (function (EventSourceValues) {
15
- EventSourceValues["MANAGED_CWE"] = "MANAGED_CWE";
16
- })(EventSourceValues || (EventSourceValues = {}));
17
- export var PolicyTypeValues;
18
- (function (PolicyTypeValues) {
19
- PolicyTypeValues["EBS_SNAPSHOT_MANAGEMENT"] = "EBS_SNAPSHOT_MANAGEMENT";
20
- PolicyTypeValues["EVENT_BASED_POLICY"] = "EVENT_BASED_POLICY";
21
- PolicyTypeValues["IMAGE_MANAGEMENT"] = "IMAGE_MANAGEMENT";
22
- })(PolicyTypeValues || (PolicyTypeValues = {}));
23
- export var ResourceLocationValues;
24
- (function (ResourceLocationValues) {
25
- ResourceLocationValues["CLOUD"] = "CLOUD";
26
- ResourceLocationValues["OUTPOST"] = "OUTPOST";
27
- })(ResourceLocationValues || (ResourceLocationValues = {}));
28
- export var ResourceTypeValues;
29
- (function (ResourceTypeValues) {
30
- ResourceTypeValues["INSTANCE"] = "INSTANCE";
31
- ResourceTypeValues["VOLUME"] = "VOLUME";
32
- })(ResourceTypeValues || (ResourceTypeValues = {}));
33
- export var IntervalUnitValues;
34
- (function (IntervalUnitValues) {
35
- IntervalUnitValues["HOURS"] = "HOURS";
36
- })(IntervalUnitValues || (IntervalUnitValues = {}));
37
- export var LocationValues;
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 var GettablePolicyStateValues;
109
- (function (GettablePolicyStateValues) {
110
- GettablePolicyStateValues["DISABLED"] = "DISABLED";
111
- GettablePolicyStateValues["ENABLED"] = "ENABLED";
112
- GettablePolicyStateValues["ERROR"] = "ERROR";
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 enum RetentionIntervalUnitValues {
26
- DAYS = "DAYS",
27
- MONTHS = "MONTHS",
28
- WEEKS = "WEEKS",
29
- YEARS = "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 enum EventTypeValues {
152
- SHARE_SNAPSHOT = "shareSnapshot"
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 enum EventSourceValues {
183
- MANAGED_CWE = "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 enum PolicyTypeValues {
257
- EBS_SNAPSHOT_MANAGEMENT = "EBS_SNAPSHOT_MANAGEMENT",
258
- EVENT_BASED_POLICY = "EVENT_BASED_POLICY",
259
- IMAGE_MANAGEMENT = "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 declare enum ResourceLocationValues {
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 enum ResourceTypeValues {
272
- INSTANCE = "INSTANCE",
273
- VOLUME = "VOLUME"
274
- }
285
+ export declare const ResourceLocationValues: {
286
+ readonly CLOUD: "CLOUD";
287
+ readonly OUTPOST: "OUTPOST";
288
+ };
275
289
  /**
276
290
  * @public
277
291
  */
278
- export declare enum IntervalUnitValues {
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 enum LocationValues {
285
- CLOUD = "CLOUD",
286
- OUTPOST_LOCAL = "OUTPOST_LOCAL"
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 enum SettablePolicyStateValues {
684
- DISABLED = "DISABLED",
685
- ENABLED = "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 enum GettablePolicyStateValues {
818
- DISABLED = "DISABLED",
819
- ENABLED = "ENABLED",
820
- ERROR = "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 enum RetentionIntervalUnitValues {
8
- DAYS = "DAYS",
9
- MONTHS = "MONTHS",
10
- WEEKS = "WEEKS",
11
- YEARS = "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 enum EventTypeValues {
38
- SHARE_SNAPSHOT = "shareSnapshot",
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 enum EventSourceValues {
46
- MANAGED_CWE = "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 enum PolicyTypeValues {
62
- EBS_SNAPSHOT_MANAGEMENT = "EBS_SNAPSHOT_MANAGEMENT",
63
- EVENT_BASED_POLICY = "EVENT_BASED_POLICY",
64
- IMAGE_MANAGEMENT = "IMAGE_MANAGEMENT",
65
- }
66
- export declare enum ResourceLocationValues {
67
- CLOUD = "CLOUD",
68
- OUTPOST = "OUTPOST",
69
- }
70
- export declare enum ResourceTypeValues {
71
- INSTANCE = "INSTANCE",
72
- VOLUME = "VOLUME",
73
- }
74
- export declare enum IntervalUnitValues {
75
- HOURS = "HOURS",
76
- }
77
- export declare enum LocationValues {
78
- CLOUD = "CLOUD",
79
- OUTPOST_LOCAL = "OUTPOST_LOCAL",
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 enum SettablePolicyStateValues {
146
- DISABLED = "DISABLED",
147
- ENABLED = "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 enum GettablePolicyStateValues {
205
- DISABLED = "DISABLED",
206
- ENABLED = "ENABLED",
207
- ERROR = "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.301.0",
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.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
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.295.0",
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",