@aws-sdk/client-fsx 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.
@@ -5,12 +5,14 @@ export interface ActiveDirectoryBackupAttributes {
5
5
  ActiveDirectoryId?: string;
6
6
  ResourceARN?: string;
7
7
  }
8
- export declare enum ActiveDirectoryErrorType {
9
- DOMAIN_NOT_FOUND = "DOMAIN_NOT_FOUND",
10
- INCOMPATIBLE_DOMAIN_MODE = "INCOMPATIBLE_DOMAIN_MODE",
11
- INVALID_DOMAIN_STAGE = "INVALID_DOMAIN_STAGE",
12
- WRONG_VPC = "WRONG_VPC",
13
- }
8
+ export declare const ActiveDirectoryErrorType: {
9
+ readonly DOMAIN_NOT_FOUND: "DOMAIN_NOT_FOUND";
10
+ readonly INCOMPATIBLE_DOMAIN_MODE: "INCOMPATIBLE_DOMAIN_MODE";
11
+ readonly INVALID_DOMAIN_STAGE: "INVALID_DOMAIN_STAGE";
12
+ readonly WRONG_VPC: "WRONG_VPC";
13
+ };
14
+ export type ActiveDirectoryErrorType =
15
+ (typeof ActiveDirectoryErrorType)[keyof typeof ActiveDirectoryErrorType];
14
16
  export declare class ActiveDirectoryError extends __BaseException {
15
17
  readonly name: "ActiveDirectoryError";
16
18
  readonly $fault: "client";
@@ -21,65 +23,78 @@ export declare class ActiveDirectoryError extends __BaseException {
21
23
  opts: __ExceptionOptionType<ActiveDirectoryError, __BaseException>
22
24
  );
23
25
  }
24
- export declare enum AdministrativeActionType {
25
- FILE_SYSTEM_ALIAS_ASSOCIATION = "FILE_SYSTEM_ALIAS_ASSOCIATION",
26
- FILE_SYSTEM_ALIAS_DISASSOCIATION = "FILE_SYSTEM_ALIAS_DISASSOCIATION",
27
- FILE_SYSTEM_UPDATE = "FILE_SYSTEM_UPDATE",
28
- RELEASE_NFS_V3_LOCKS = "RELEASE_NFS_V3_LOCKS",
29
- SNAPSHOT_UPDATE = "SNAPSHOT_UPDATE",
30
- STORAGE_OPTIMIZATION = "STORAGE_OPTIMIZATION",
31
- VOLUME_RESTORE = "VOLUME_RESTORE",
32
- VOLUME_UPDATE = "VOLUME_UPDATE",
33
- }
26
+ export declare const AdministrativeActionType: {
27
+ readonly FILE_SYSTEM_ALIAS_ASSOCIATION: "FILE_SYSTEM_ALIAS_ASSOCIATION";
28
+ readonly FILE_SYSTEM_ALIAS_DISASSOCIATION: "FILE_SYSTEM_ALIAS_DISASSOCIATION";
29
+ readonly FILE_SYSTEM_UPDATE: "FILE_SYSTEM_UPDATE";
30
+ readonly RELEASE_NFS_V3_LOCKS: "RELEASE_NFS_V3_LOCKS";
31
+ readonly SNAPSHOT_UPDATE: "SNAPSHOT_UPDATE";
32
+ readonly STORAGE_OPTIMIZATION: "STORAGE_OPTIMIZATION";
33
+ readonly VOLUME_RESTORE: "VOLUME_RESTORE";
34
+ readonly VOLUME_UPDATE: "VOLUME_UPDATE";
35
+ };
36
+ export type AdministrativeActionType =
37
+ (typeof AdministrativeActionType)[keyof typeof AdministrativeActionType];
34
38
  export interface AdministrativeActionFailureDetails {
35
39
  Message?: string;
36
40
  }
37
- export declare enum Status {
38
- COMPLETED = "COMPLETED",
39
- FAILED = "FAILED",
40
- IN_PROGRESS = "IN_PROGRESS",
41
- PENDING = "PENDING",
42
- UPDATED_OPTIMIZING = "UPDATED_OPTIMIZING",
43
- }
41
+ export declare const Status: {
42
+ readonly COMPLETED: "COMPLETED";
43
+ readonly FAILED: "FAILED";
44
+ readonly IN_PROGRESS: "IN_PROGRESS";
45
+ readonly PENDING: "PENDING";
46
+ readonly UPDATED_OPTIMIZING: "UPDATED_OPTIMIZING";
47
+ };
48
+ export type Status = (typeof Status)[keyof typeof Status];
44
49
  export interface FileSystemFailureDetails {
45
50
  Message?: string;
46
51
  }
47
- export declare enum FileSystemType {
48
- LUSTRE = "LUSTRE",
49
- ONTAP = "ONTAP",
50
- OPENZFS = "OPENZFS",
51
- WINDOWS = "WINDOWS",
52
- }
53
- export declare enum FileSystemLifecycle {
54
- AVAILABLE = "AVAILABLE",
55
- CREATING = "CREATING",
56
- DELETING = "DELETING",
57
- FAILED = "FAILED",
58
- MISCONFIGURED = "MISCONFIGURED",
59
- MISCONFIGURED_UNAVAILABLE = "MISCONFIGURED_UNAVAILABLE",
60
- UPDATING = "UPDATING",
61
- }
62
- export declare enum DataCompressionType {
63
- LZ4 = "LZ4",
64
- NONE = "NONE",
65
- }
66
- export declare enum AutoImportPolicyType {
67
- NEW = "NEW",
68
- NEW_CHANGED = "NEW_CHANGED",
69
- NEW_CHANGED_DELETED = "NEW_CHANGED_DELETED",
70
- NONE = "NONE",
71
- }
52
+ export declare const FileSystemType: {
53
+ readonly LUSTRE: "LUSTRE";
54
+ readonly ONTAP: "ONTAP";
55
+ readonly OPENZFS: "OPENZFS";
56
+ readonly WINDOWS: "WINDOWS";
57
+ };
58
+ export type FileSystemType =
59
+ (typeof FileSystemType)[keyof typeof FileSystemType];
60
+ export declare const FileSystemLifecycle: {
61
+ readonly AVAILABLE: "AVAILABLE";
62
+ readonly CREATING: "CREATING";
63
+ readonly DELETING: "DELETING";
64
+ readonly FAILED: "FAILED";
65
+ readonly MISCONFIGURED: "MISCONFIGURED";
66
+ readonly MISCONFIGURED_UNAVAILABLE: "MISCONFIGURED_UNAVAILABLE";
67
+ readonly UPDATING: "UPDATING";
68
+ };
69
+ export type FileSystemLifecycle =
70
+ (typeof FileSystemLifecycle)[keyof typeof FileSystemLifecycle];
71
+ export declare const DataCompressionType: {
72
+ readonly LZ4: "LZ4";
73
+ readonly NONE: "NONE";
74
+ };
75
+ export type DataCompressionType =
76
+ (typeof DataCompressionType)[keyof typeof DataCompressionType];
77
+ export declare const AutoImportPolicyType: {
78
+ readonly NEW: "NEW";
79
+ readonly NEW_CHANGED: "NEW_CHANGED";
80
+ readonly NEW_CHANGED_DELETED: "NEW_CHANGED_DELETED";
81
+ readonly NONE: "NONE";
82
+ };
83
+ export type AutoImportPolicyType =
84
+ (typeof AutoImportPolicyType)[keyof typeof AutoImportPolicyType];
72
85
  export interface DataRepositoryFailureDetails {
73
86
  Message?: string;
74
87
  }
75
- export declare enum DataRepositoryLifecycle {
76
- AVAILABLE = "AVAILABLE",
77
- CREATING = "CREATING",
78
- DELETING = "DELETING",
79
- FAILED = "FAILED",
80
- MISCONFIGURED = "MISCONFIGURED",
81
- UPDATING = "UPDATING",
82
- }
88
+ export declare const DataRepositoryLifecycle: {
89
+ readonly AVAILABLE: "AVAILABLE";
90
+ readonly CREATING: "CREATING";
91
+ readonly DELETING: "DELETING";
92
+ readonly FAILED: "FAILED";
93
+ readonly MISCONFIGURED: "MISCONFIGURED";
94
+ readonly UPDATING: "UPDATING";
95
+ };
96
+ export type DataRepositoryLifecycle =
97
+ (typeof DataRepositoryLifecycle)[keyof typeof DataRepositoryLifecycle];
83
98
  export interface DataRepositoryConfiguration {
84
99
  Lifecycle?: DataRepositoryLifecycle | string;
85
100
  ImportPath?: string;
@@ -88,22 +103,28 @@ export interface DataRepositoryConfiguration {
88
103
  AutoImportPolicy?: AutoImportPolicyType | string;
89
104
  FailureDetails?: DataRepositoryFailureDetails;
90
105
  }
91
- export declare enum LustreDeploymentType {
92
- PERSISTENT_1 = "PERSISTENT_1",
93
- PERSISTENT_2 = "PERSISTENT_2",
94
- SCRATCH_1 = "SCRATCH_1",
95
- SCRATCH_2 = "SCRATCH_2",
96
- }
97
- export declare enum DriveCacheType {
98
- NONE = "NONE",
99
- READ = "READ",
100
- }
101
- export declare enum LustreAccessAuditLogLevel {
102
- DISABLED = "DISABLED",
103
- ERROR_ONLY = "ERROR_ONLY",
104
- WARN_ERROR = "WARN_ERROR",
105
- WARN_ONLY = "WARN_ONLY",
106
- }
106
+ export declare const LustreDeploymentType: {
107
+ readonly PERSISTENT_1: "PERSISTENT_1";
108
+ readonly PERSISTENT_2: "PERSISTENT_2";
109
+ readonly SCRATCH_1: "SCRATCH_1";
110
+ readonly SCRATCH_2: "SCRATCH_2";
111
+ };
112
+ export type LustreDeploymentType =
113
+ (typeof LustreDeploymentType)[keyof typeof LustreDeploymentType];
114
+ export declare const DriveCacheType: {
115
+ readonly NONE: "NONE";
116
+ readonly READ: "READ";
117
+ };
118
+ export type DriveCacheType =
119
+ (typeof DriveCacheType)[keyof typeof DriveCacheType];
120
+ export declare const LustreAccessAuditLogLevel: {
121
+ readonly DISABLED: "DISABLED";
122
+ readonly ERROR_ONLY: "ERROR_ONLY";
123
+ readonly WARN_ERROR: "WARN_ERROR";
124
+ readonly WARN_ONLY: "WARN_ONLY";
125
+ };
126
+ export type LustreAccessAuditLogLevel =
127
+ (typeof LustreAccessAuditLogLevel)[keyof typeof LustreAccessAuditLogLevel];
107
128
  export interface LustreLogConfiguration {
108
129
  Level: LustreAccessAuditLogLevel | string | undefined;
109
130
  Destination?: string;
@@ -126,14 +147,18 @@ export interface LustreFileSystemConfiguration {
126
147
  LogConfiguration?: LustreLogConfiguration;
127
148
  RootSquashConfiguration?: LustreRootSquashConfiguration;
128
149
  }
129
- export declare enum OntapDeploymentType {
130
- MULTI_AZ_1 = "MULTI_AZ_1",
131
- SINGLE_AZ_1 = "SINGLE_AZ_1",
132
- }
133
- export declare enum DiskIopsConfigurationMode {
134
- AUTOMATIC = "AUTOMATIC",
135
- USER_PROVISIONED = "USER_PROVISIONED",
136
- }
150
+ export declare const OntapDeploymentType: {
151
+ readonly MULTI_AZ_1: "MULTI_AZ_1";
152
+ readonly SINGLE_AZ_1: "SINGLE_AZ_1";
153
+ };
154
+ export type OntapDeploymentType =
155
+ (typeof OntapDeploymentType)[keyof typeof OntapDeploymentType];
156
+ export declare const DiskIopsConfigurationMode: {
157
+ readonly AUTOMATIC: "AUTOMATIC";
158
+ readonly USER_PROVISIONED: "USER_PROVISIONED";
159
+ };
160
+ export type DiskIopsConfigurationMode =
161
+ (typeof DiskIopsConfigurationMode)[keyof typeof DiskIopsConfigurationMode];
137
162
  export interface DiskIopsConfiguration {
138
163
  Mode?: DiskIopsConfigurationMode | string;
139
164
  Iops?: number;
@@ -158,10 +183,12 @@ export interface OntapFileSystemConfiguration {
158
183
  ThroughputCapacity?: number;
159
184
  WeeklyMaintenanceStartTime?: string;
160
185
  }
161
- export declare enum OpenZFSDeploymentType {
162
- SINGLE_AZ_1 = "SINGLE_AZ_1",
163
- SINGLE_AZ_2 = "SINGLE_AZ_2",
164
- }
186
+ export declare const OpenZFSDeploymentType: {
187
+ readonly SINGLE_AZ_1: "SINGLE_AZ_1";
188
+ readonly SINGLE_AZ_2: "SINGLE_AZ_2";
189
+ };
190
+ export type OpenZFSDeploymentType =
191
+ (typeof OpenZFSDeploymentType)[keyof typeof OpenZFSDeploymentType];
165
192
  export interface OpenZFSFileSystemConfiguration {
166
193
  AutomaticBackupRetentionDays?: number;
167
194
  CopyTagsToBackups?: boolean;
@@ -173,45 +200,54 @@ export interface OpenZFSFileSystemConfiguration {
173
200
  DiskIopsConfiguration?: DiskIopsConfiguration;
174
201
  RootVolumeId?: string;
175
202
  }
176
- export declare enum StorageType {
177
- HDD = "HDD",
178
- SSD = "SSD",
179
- }
203
+ export declare const StorageType: {
204
+ readonly HDD: "HDD";
205
+ readonly SSD: "SSD";
206
+ };
207
+ export type StorageType = (typeof StorageType)[keyof typeof StorageType];
180
208
  export interface Tag {
181
209
  Key: string | undefined;
182
210
  Value: string | undefined;
183
211
  }
184
- export declare enum AliasLifecycle {
185
- AVAILABLE = "AVAILABLE",
186
- CREATE_FAILED = "CREATE_FAILED",
187
- CREATING = "CREATING",
188
- DELETE_FAILED = "DELETE_FAILED",
189
- DELETING = "DELETING",
190
- }
212
+ export declare const AliasLifecycle: {
213
+ readonly AVAILABLE: "AVAILABLE";
214
+ readonly CREATE_FAILED: "CREATE_FAILED";
215
+ readonly CREATING: "CREATING";
216
+ readonly DELETE_FAILED: "DELETE_FAILED";
217
+ readonly DELETING: "DELETING";
218
+ };
219
+ export type AliasLifecycle =
220
+ (typeof AliasLifecycle)[keyof typeof AliasLifecycle];
191
221
  export interface Alias {
192
222
  Name?: string;
193
223
  Lifecycle?: AliasLifecycle | string;
194
224
  }
195
- export declare enum WindowsAccessAuditLogLevel {
196
- DISABLED = "DISABLED",
197
- FAILURE_ONLY = "FAILURE_ONLY",
198
- SUCCESS_AND_FAILURE = "SUCCESS_AND_FAILURE",
199
- SUCCESS_ONLY = "SUCCESS_ONLY",
200
- }
225
+ export declare const WindowsAccessAuditLogLevel: {
226
+ readonly DISABLED: "DISABLED";
227
+ readonly FAILURE_ONLY: "FAILURE_ONLY";
228
+ readonly SUCCESS_AND_FAILURE: "SUCCESS_AND_FAILURE";
229
+ readonly SUCCESS_ONLY: "SUCCESS_ONLY";
230
+ };
231
+ export type WindowsAccessAuditLogLevel =
232
+ (typeof WindowsAccessAuditLogLevel)[keyof typeof WindowsAccessAuditLogLevel];
201
233
  export interface WindowsAuditLogConfiguration {
202
234
  FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
203
235
  FileShareAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
204
236
  AuditLogDestination?: string;
205
237
  }
206
- export declare enum WindowsDeploymentType {
207
- MULTI_AZ_1 = "MULTI_AZ_1",
208
- SINGLE_AZ_1 = "SINGLE_AZ_1",
209
- SINGLE_AZ_2 = "SINGLE_AZ_2",
210
- }
211
- export declare enum FileSystemMaintenanceOperation {
212
- BACKING_UP = "BACKING_UP",
213
- PATCHING = "PATCHING",
214
- }
238
+ export declare const WindowsDeploymentType: {
239
+ readonly MULTI_AZ_1: "MULTI_AZ_1";
240
+ readonly SINGLE_AZ_1: "SINGLE_AZ_1";
241
+ readonly SINGLE_AZ_2: "SINGLE_AZ_2";
242
+ };
243
+ export type WindowsDeploymentType =
244
+ (typeof WindowsDeploymentType)[keyof typeof WindowsDeploymentType];
245
+ export declare const FileSystemMaintenanceOperation: {
246
+ readonly BACKING_UP: "BACKING_UP";
247
+ readonly PATCHING: "PATCHING";
248
+ };
249
+ export type FileSystemMaintenanceOperation =
250
+ (typeof FileSystemMaintenanceOperation)[keyof typeof FileSystemMaintenanceOperation];
215
251
  export interface SelfManagedActiveDirectoryAttributes {
216
252
  DomainName?: string;
217
253
  OrganizationalUnitDistinguishedName?: string;
@@ -235,45 +271,56 @@ export interface WindowsFileSystemConfiguration {
235
271
  Aliases?: Alias[];
236
272
  AuditLogConfiguration?: WindowsAuditLogConfiguration;
237
273
  }
238
- export declare enum SnapshotLifecycle {
239
- AVAILABLE = "AVAILABLE",
240
- CREATING = "CREATING",
241
- DELETING = "DELETING",
242
- PENDING = "PENDING",
243
- }
274
+ export declare const SnapshotLifecycle: {
275
+ readonly AVAILABLE: "AVAILABLE";
276
+ readonly CREATING: "CREATING";
277
+ readonly DELETING: "DELETING";
278
+ readonly PENDING: "PENDING";
279
+ };
280
+ export type SnapshotLifecycle =
281
+ (typeof SnapshotLifecycle)[keyof typeof SnapshotLifecycle];
244
282
  export interface LifecycleTransitionReason {
245
283
  Message?: string;
246
284
  }
247
- export declare enum VolumeLifecycle {
248
- AVAILABLE = "AVAILABLE",
249
- CREATED = "CREATED",
250
- CREATING = "CREATING",
251
- DELETING = "DELETING",
252
- FAILED = "FAILED",
253
- MISCONFIGURED = "MISCONFIGURED",
254
- PENDING = "PENDING",
255
- }
256
- export declare enum FlexCacheEndpointType {
257
- CACHE = "CACHE",
258
- NONE = "NONE",
259
- ORIGIN = "ORIGIN",
260
- }
261
- export declare enum OntapVolumeType {
262
- DP = "DP",
263
- LS = "LS",
264
- RW = "RW",
265
- }
266
- export declare enum SecurityStyle {
267
- MIXED = "MIXED",
268
- NTFS = "NTFS",
269
- UNIX = "UNIX",
270
- }
271
- export declare enum TieringPolicyName {
272
- ALL = "ALL",
273
- AUTO = "AUTO",
274
- NONE = "NONE",
275
- SNAPSHOT_ONLY = "SNAPSHOT_ONLY",
276
- }
285
+ export declare const VolumeLifecycle: {
286
+ readonly AVAILABLE: "AVAILABLE";
287
+ readonly CREATED: "CREATED";
288
+ readonly CREATING: "CREATING";
289
+ readonly DELETING: "DELETING";
290
+ readonly FAILED: "FAILED";
291
+ readonly MISCONFIGURED: "MISCONFIGURED";
292
+ readonly PENDING: "PENDING";
293
+ };
294
+ export type VolumeLifecycle =
295
+ (typeof VolumeLifecycle)[keyof typeof VolumeLifecycle];
296
+ export declare const FlexCacheEndpointType: {
297
+ readonly CACHE: "CACHE";
298
+ readonly NONE: "NONE";
299
+ readonly ORIGIN: "ORIGIN";
300
+ };
301
+ export type FlexCacheEndpointType =
302
+ (typeof FlexCacheEndpointType)[keyof typeof FlexCacheEndpointType];
303
+ export declare const OntapVolumeType: {
304
+ readonly DP: "DP";
305
+ readonly LS: "LS";
306
+ readonly RW: "RW";
307
+ };
308
+ export type OntapVolumeType =
309
+ (typeof OntapVolumeType)[keyof typeof OntapVolumeType];
310
+ export declare const SecurityStyle: {
311
+ readonly MIXED: "MIXED";
312
+ readonly NTFS: "NTFS";
313
+ readonly UNIX: "UNIX";
314
+ };
315
+ export type SecurityStyle = (typeof SecurityStyle)[keyof typeof SecurityStyle];
316
+ export declare const TieringPolicyName: {
317
+ readonly ALL: "ALL";
318
+ readonly AUTO: "AUTO";
319
+ readonly NONE: "NONE";
320
+ readonly SNAPSHOT_ONLY: "SNAPSHOT_ONLY";
321
+ };
322
+ export type TieringPolicyName =
323
+ (typeof TieringPolicyName)[keyof typeof TieringPolicyName];
277
324
  export interface TieringPolicy {
278
325
  CoolingPeriod?: number;
279
326
  Name?: TieringPolicyName | string;
@@ -292,11 +339,13 @@ export interface OntapVolumeConfiguration {
292
339
  SnapshotPolicy?: string;
293
340
  CopyTagsToBackups?: boolean;
294
341
  }
295
- export declare enum OpenZFSDataCompressionType {
296
- LZ4 = "LZ4",
297
- NONE = "NONE",
298
- ZSTD = "ZSTD",
299
- }
342
+ export declare const OpenZFSDataCompressionType: {
343
+ readonly LZ4: "LZ4";
344
+ readonly NONE: "NONE";
345
+ readonly ZSTD: "ZSTD";
346
+ };
347
+ export type OpenZFSDataCompressionType =
348
+ (typeof OpenZFSDataCompressionType)[keyof typeof OpenZFSDataCompressionType];
300
349
  export interface OpenZFSClientConfiguration {
301
350
  Clients: string | undefined;
302
351
  Options: string[] | undefined;
@@ -304,18 +353,22 @@ export interface OpenZFSClientConfiguration {
304
353
  export interface OpenZFSNfsExport {
305
354
  ClientConfigurations: OpenZFSClientConfiguration[] | undefined;
306
355
  }
307
- export declare enum OpenZFSCopyStrategy {
308
- CLONE = "CLONE",
309
- FULL_COPY = "FULL_COPY",
310
- }
356
+ export declare const OpenZFSCopyStrategy: {
357
+ readonly CLONE: "CLONE";
358
+ readonly FULL_COPY: "FULL_COPY";
359
+ };
360
+ export type OpenZFSCopyStrategy =
361
+ (typeof OpenZFSCopyStrategy)[keyof typeof OpenZFSCopyStrategy];
311
362
  export interface OpenZFSOriginSnapshotConfiguration {
312
363
  SnapshotARN?: string;
313
364
  CopyStrategy?: OpenZFSCopyStrategy | string;
314
365
  }
315
- export declare enum OpenZFSQuotaType {
316
- GROUP = "GROUP",
317
- USER = "USER",
318
- }
366
+ export declare const OpenZFSQuotaType: {
367
+ readonly GROUP: "GROUP";
368
+ readonly USER: "USER";
369
+ };
370
+ export type OpenZFSQuotaType =
371
+ (typeof OpenZFSQuotaType)[keyof typeof OpenZFSQuotaType];
319
372
  export interface OpenZFSUserOrGroupQuota {
320
373
  Type: OpenZFSQuotaType | string | undefined;
321
374
  Id: number | undefined;
@@ -337,10 +390,11 @@ export interface OpenZFSVolumeConfiguration {
337
390
  DeleteIntermediateSnaphots?: boolean;
338
391
  DeleteClonedVolumes?: boolean;
339
392
  }
340
- export declare enum VolumeType {
341
- ONTAP = "ONTAP",
342
- OPENZFS = "OPENZFS",
343
- }
393
+ export declare const VolumeType: {
394
+ readonly ONTAP: "ONTAP";
395
+ readonly OPENZFS: "OPENZFS";
396
+ };
397
+ export type VolumeType = (typeof VolumeType)[keyof typeof VolumeType];
344
398
  export interface AssociateFileSystemAliasesRequest {
345
399
  ClientRequestToken?: string;
346
400
  FileSystemId: string | undefined;
@@ -369,11 +423,12 @@ export declare class InternalServerError extends __BaseException {
369
423
  opts: __ExceptionOptionType<InternalServerError, __BaseException>
370
424
  );
371
425
  }
372
- export declare enum EventType {
373
- CHANGED = "CHANGED",
374
- DELETED = "DELETED",
375
- NEW = "NEW",
376
- }
426
+ export declare const EventType: {
427
+ readonly CHANGED: "CHANGED";
428
+ readonly DELETED: "DELETED";
429
+ readonly NEW: "NEW";
430
+ };
431
+ export type EventType = (typeof EventType)[keyof typeof EventType];
377
432
  export interface AutoExportPolicy {
378
433
  Events?: (EventType | string)[];
379
434
  }
@@ -383,14 +438,16 @@ export interface AutoImportPolicy {
383
438
  export interface CancelDataRepositoryTaskRequest {
384
439
  TaskId: string | undefined;
385
440
  }
386
- export declare enum DataRepositoryTaskLifecycle {
387
- CANCELED = "CANCELED",
388
- CANCELING = "CANCELING",
389
- EXECUTING = "EXECUTING",
390
- FAILED = "FAILED",
391
- PENDING = "PENDING",
392
- SUCCEEDED = "SUCCEEDED",
393
- }
441
+ export declare const DataRepositoryTaskLifecycle: {
442
+ readonly CANCELED: "CANCELED";
443
+ readonly CANCELING: "CANCELING";
444
+ readonly EXECUTING: "EXECUTING";
445
+ readonly FAILED: "FAILED";
446
+ readonly PENDING: "PENDING";
447
+ readonly SUCCEEDED: "SUCCEEDED";
448
+ };
449
+ export type DataRepositoryTaskLifecycle =
450
+ (typeof DataRepositoryTaskLifecycle)[keyof typeof DataRepositoryTaskLifecycle];
394
451
  export interface CancelDataRepositoryTaskResponse {
395
452
  Lifecycle?: DataRepositoryTaskLifecycle | string;
396
453
  TaskId?: string;
@@ -436,24 +493,28 @@ export interface CopyBackupRequest {
436
493
  export interface BackupFailureDetails {
437
494
  Message?: string;
438
495
  }
439
- export declare enum BackupLifecycle {
440
- AVAILABLE = "AVAILABLE",
441
- COPYING = "COPYING",
442
- CREATING = "CREATING",
443
- DELETED = "DELETED",
444
- FAILED = "FAILED",
445
- PENDING = "PENDING",
446
- TRANSFERRING = "TRANSFERRING",
447
- }
448
- export declare enum ResourceType {
449
- FILE_SYSTEM = "FILE_SYSTEM",
450
- VOLUME = "VOLUME",
451
- }
452
- export declare enum BackupType {
453
- AUTOMATIC = "AUTOMATIC",
454
- AWS_BACKUP = "AWS_BACKUP",
455
- USER_INITIATED = "USER_INITIATED",
456
- }
496
+ export declare const BackupLifecycle: {
497
+ readonly AVAILABLE: "AVAILABLE";
498
+ readonly COPYING: "COPYING";
499
+ readonly CREATING: "CREATING";
500
+ readonly DELETED: "DELETED";
501
+ readonly FAILED: "FAILED";
502
+ readonly PENDING: "PENDING";
503
+ readonly TRANSFERRING: "TRANSFERRING";
504
+ };
505
+ export type BackupLifecycle =
506
+ (typeof BackupLifecycle)[keyof typeof BackupLifecycle];
507
+ export declare const ResourceType: {
508
+ readonly FILE_SYSTEM: "FILE_SYSTEM";
509
+ readonly VOLUME: "VOLUME";
510
+ };
511
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
512
+ export declare const BackupType: {
513
+ readonly AUTOMATIC: "AUTOMATIC";
514
+ readonly AWS_BACKUP: "AWS_BACKUP";
515
+ readonly USER_INITIATED: "USER_INITIATED";
516
+ };
517
+ export type BackupType = (typeof BackupType)[keyof typeof BackupType];
457
518
  export declare class IncompatibleParameterError extends __BaseException {
458
519
  readonly name: "IncompatibleParameterError";
459
520
  readonly $fault: "client";
@@ -493,18 +554,19 @@ export declare class InvalidSourceKmsKey extends __BaseException {
493
554
  opts: __ExceptionOptionType<InvalidSourceKmsKey, __BaseException>
494
555
  );
495
556
  }
496
- export declare enum ServiceLimit {
497
- FILE_CACHE_COUNT = "FILE_CACHE_COUNT",
498
- FILE_SYSTEM_COUNT = "FILE_SYSTEM_COUNT",
499
- STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM = "STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM",
500
- TOTAL_IN_PROGRESS_COPY_BACKUPS = "TOTAL_IN_PROGRESS_COPY_BACKUPS",
501
- TOTAL_SSD_IOPS = "TOTAL_SSD_IOPS",
502
- TOTAL_STORAGE = "TOTAL_STORAGE",
503
- TOTAL_THROUGHPUT_CAPACITY = "TOTAL_THROUGHPUT_CAPACITY",
504
- TOTAL_USER_INITIATED_BACKUPS = "TOTAL_USER_INITIATED_BACKUPS",
505
- TOTAL_USER_TAGS = "TOTAL_USER_TAGS",
506
- VOLUMES_PER_FILE_SYSTEM = "VOLUMES_PER_FILE_SYSTEM",
507
- }
557
+ export declare const ServiceLimit: {
558
+ readonly FILE_CACHE_COUNT: "FILE_CACHE_COUNT";
559
+ readonly FILE_SYSTEM_COUNT: "FILE_SYSTEM_COUNT";
560
+ readonly STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM: "STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM";
561
+ readonly TOTAL_IN_PROGRESS_COPY_BACKUPS: "TOTAL_IN_PROGRESS_COPY_BACKUPS";
562
+ readonly TOTAL_SSD_IOPS: "TOTAL_SSD_IOPS";
563
+ readonly TOTAL_STORAGE: "TOTAL_STORAGE";
564
+ readonly TOTAL_THROUGHPUT_CAPACITY: "TOTAL_THROUGHPUT_CAPACITY";
565
+ readonly TOTAL_USER_INITIATED_BACKUPS: "TOTAL_USER_INITIATED_BACKUPS";
566
+ readonly TOTAL_USER_TAGS: "TOTAL_USER_TAGS";
567
+ readonly VOLUMES_PER_FILE_SYSTEM: "VOLUMES_PER_FILE_SYSTEM";
568
+ };
569
+ export type ServiceLimit = (typeof ServiceLimit)[keyof typeof ServiceLimit];
508
570
  export declare class ServiceLimitExceeded extends __BaseException {
509
571
  readonly name: "ServiceLimitExceeded";
510
572
  readonly $fault: "client";
@@ -555,9 +617,10 @@ export interface CreateDataRepositoryAssociationRequest {
555
617
  ClientRequestToken?: string;
556
618
  Tags?: Tag[];
557
619
  }
558
- export declare enum NfsVersion {
559
- NFS3 = "NFS3",
560
- }
620
+ export declare const NfsVersion: {
621
+ readonly NFS3: "NFS3";
622
+ };
623
+ export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
561
624
  export interface NFSDataRepositoryConfiguration {
562
625
  Version: NfsVersion | string | undefined;
563
626
  DnsIps?: string[];
@@ -584,24 +647,28 @@ export interface DataRepositoryAssociation {
584
647
  export interface CreateDataRepositoryAssociationResponse {
585
648
  Association?: DataRepositoryAssociation;
586
649
  }
587
- export declare enum ReportFormat {
588
- REPORT_CSV_20191124 = "REPORT_CSV_20191124",
589
- }
590
- export declare enum ReportScope {
591
- FAILED_FILES_ONLY = "FAILED_FILES_ONLY",
592
- }
650
+ export declare const ReportFormat: {
651
+ readonly REPORT_CSV_20191124: "REPORT_CSV_20191124";
652
+ };
653
+ export type ReportFormat = (typeof ReportFormat)[keyof typeof ReportFormat];
654
+ export declare const ReportScope: {
655
+ readonly FAILED_FILES_ONLY: "FAILED_FILES_ONLY";
656
+ };
657
+ export type ReportScope = (typeof ReportScope)[keyof typeof ReportScope];
593
658
  export interface CompletionReport {
594
659
  Enabled: boolean | undefined;
595
660
  Path?: string;
596
661
  Format?: ReportFormat | string;
597
662
  Scope?: ReportScope | string;
598
663
  }
599
- export declare enum DataRepositoryTaskType {
600
- AUTO_TRIGGERED_EVICTION = "AUTO_RELEASE_DATA",
601
- EVICTION = "RELEASE_DATA_FROM_FILESYSTEM",
602
- EXPORT = "EXPORT_TO_REPOSITORY",
603
- IMPORT = "IMPORT_METADATA_FROM_REPOSITORY",
604
- }
664
+ export declare const DataRepositoryTaskType: {
665
+ readonly AUTO_TRIGGERED_EVICTION: "AUTO_RELEASE_DATA";
666
+ readonly EVICTION: "RELEASE_DATA_FROM_FILESYSTEM";
667
+ readonly EXPORT: "EXPORT_TO_REPOSITORY";
668
+ readonly IMPORT: "IMPORT_METADATA_FROM_REPOSITORY";
669
+ };
670
+ export type DataRepositoryTaskType =
671
+ (typeof DataRepositoryTaskType)[keyof typeof DataRepositoryTaskType];
605
672
  export interface CreateDataRepositoryTaskRequest {
606
673
  Type: DataRepositoryTaskType | string | undefined;
607
674
  Paths?: string[];
@@ -659,12 +726,15 @@ export interface FileCacheDataRepositoryAssociation {
659
726
  DataRepositorySubdirectories?: string[];
660
727
  NFS?: FileCacheNFSConfiguration;
661
728
  }
662
- export declare enum FileCacheType {
663
- LUSTRE = "LUSTRE",
664
- }
665
- export declare enum FileCacheLustreDeploymentType {
666
- CACHE_1 = "CACHE_1",
667
- }
729
+ export declare const FileCacheType: {
730
+ readonly LUSTRE: "LUSTRE";
731
+ };
732
+ export type FileCacheType = (typeof FileCacheType)[keyof typeof FileCacheType];
733
+ export declare const FileCacheLustreDeploymentType: {
734
+ readonly CACHE_1: "CACHE_1";
735
+ };
736
+ export type FileCacheLustreDeploymentType =
737
+ (typeof FileCacheLustreDeploymentType)[keyof typeof FileCacheLustreDeploymentType];
668
738
  export interface FileCacheLustreMetadataConfiguration {
669
739
  StorageCapacity: number | undefined;
670
740
  }
@@ -690,13 +760,15 @@ export interface CreateFileCacheRequest {
690
760
  export interface FileCacheFailureDetails {
691
761
  Message?: string;
692
762
  }
693
- export declare enum FileCacheLifecycle {
694
- AVAILABLE = "AVAILABLE",
695
- CREATING = "CREATING",
696
- DELETING = "DELETING",
697
- FAILED = "FAILED",
698
- UPDATING = "UPDATING",
699
- }
763
+ export declare const FileCacheLifecycle: {
764
+ readonly AVAILABLE: "AVAILABLE";
765
+ readonly CREATING: "CREATING";
766
+ readonly DELETING: "DELETING";
767
+ readonly FAILED: "FAILED";
768
+ readonly UPDATING: "UPDATING";
769
+ };
770
+ export type FileCacheLifecycle =
771
+ (typeof FileCacheLifecycle)[keyof typeof FileCacheLifecycle];
700
772
  export interface FileCacheLustreConfiguration {
701
773
  PerUnitStorageThroughput?: number;
702
774
  DeploymentType?: FileCacheLustreDeploymentType | string;
@@ -894,11 +966,13 @@ export interface CreateSvmActiveDirectoryConfiguration {
894
966
  NetBiosName: string | undefined;
895
967
  SelfManagedActiveDirectoryConfiguration?: SelfManagedActiveDirectoryConfiguration;
896
968
  }
897
- export declare enum StorageVirtualMachineRootVolumeSecurityStyle {
898
- MIXED = "MIXED",
899
- NTFS = "NTFS",
900
- UNIX = "UNIX",
901
- }
969
+ export declare const StorageVirtualMachineRootVolumeSecurityStyle: {
970
+ readonly MIXED: "MIXED";
971
+ readonly NTFS: "NTFS";
972
+ readonly UNIX: "UNIX";
973
+ };
974
+ export type StorageVirtualMachineRootVolumeSecurityStyle =
975
+ (typeof StorageVirtualMachineRootVolumeSecurityStyle)[keyof typeof StorageVirtualMachineRootVolumeSecurityStyle];
902
976
  export interface CreateStorageVirtualMachineRequest {
903
977
  ActiveDirectoryConfiguration?: CreateSvmActiveDirectoryConfiguration;
904
978
  ClientRequestToken?: string;
@@ -924,20 +998,24 @@ export interface SvmEndpoints {
924
998
  Nfs?: SvmEndpoint;
925
999
  Smb?: SvmEndpoint;
926
1000
  }
927
- export declare enum StorageVirtualMachineLifecycle {
928
- CREATED = "CREATED",
929
- CREATING = "CREATING",
930
- DELETING = "DELETING",
931
- FAILED = "FAILED",
932
- MISCONFIGURED = "MISCONFIGURED",
933
- PENDING = "PENDING",
934
- }
935
- export declare enum StorageVirtualMachineSubtype {
936
- DEFAULT = "DEFAULT",
937
- DP_DESTINATION = "DP_DESTINATION",
938
- SYNC_DESTINATION = "SYNC_DESTINATION",
939
- SYNC_SOURCE = "SYNC_SOURCE",
940
- }
1001
+ export declare const StorageVirtualMachineLifecycle: {
1002
+ readonly CREATED: "CREATED";
1003
+ readonly CREATING: "CREATING";
1004
+ readonly DELETING: "DELETING";
1005
+ readonly FAILED: "FAILED";
1006
+ readonly MISCONFIGURED: "MISCONFIGURED";
1007
+ readonly PENDING: "PENDING";
1008
+ };
1009
+ export type StorageVirtualMachineLifecycle =
1010
+ (typeof StorageVirtualMachineLifecycle)[keyof typeof StorageVirtualMachineLifecycle];
1011
+ export declare const StorageVirtualMachineSubtype: {
1012
+ readonly DEFAULT: "DEFAULT";
1013
+ readonly DP_DESTINATION: "DP_DESTINATION";
1014
+ readonly SYNC_DESTINATION: "SYNC_DESTINATION";
1015
+ readonly SYNC_SOURCE: "SYNC_SOURCE";
1016
+ };
1017
+ export type StorageVirtualMachineSubtype =
1018
+ (typeof StorageVirtualMachineSubtype)[keyof typeof StorageVirtualMachineSubtype];
941
1019
  export interface StorageVirtualMachine {
942
1020
  ActiveDirectoryConfiguration?: SvmActiveDirectoryConfiguration;
943
1021
  CreationTime?: Date;
@@ -958,10 +1036,12 @@ export interface StorageVirtualMachine {
958
1036
  export interface CreateStorageVirtualMachineResponse {
959
1037
  StorageVirtualMachine?: StorageVirtualMachine;
960
1038
  }
961
- export declare enum InputOntapVolumeType {
962
- DP = "DP",
963
- RW = "RW",
964
- }
1039
+ export declare const InputOntapVolumeType: {
1040
+ readonly DP: "DP";
1041
+ readonly RW: "RW";
1042
+ };
1043
+ export type InputOntapVolumeType =
1044
+ (typeof InputOntapVolumeType)[keyof typeof InputOntapVolumeType];
965
1045
  export interface CreateOntapVolumeConfiguration {
966
1046
  JunctionPath?: string;
967
1047
  SecurityStyle?: SecurityStyle | string;
@@ -1081,9 +1161,11 @@ export interface DeleteFileSystemLustreConfiguration {
1081
1161
  SkipFinalBackup?: boolean;
1082
1162
  FinalBackupTags?: Tag[];
1083
1163
  }
1084
- export declare enum DeleteFileSystemOpenZFSOption {
1085
- DELETE_CHILD_VOLUMES_AND_SNAPSHOTS = "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
1086
- }
1164
+ export declare const DeleteFileSystemOpenZFSOption: {
1165
+ readonly DELETE_CHILD_VOLUMES_AND_SNAPSHOTS: "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS";
1166
+ };
1167
+ export type DeleteFileSystemOpenZFSOption =
1168
+ (typeof DeleteFileSystemOpenZFSOption)[keyof typeof DeleteFileSystemOpenZFSOption];
1087
1169
  export interface DeleteFileSystemOpenZFSConfiguration {
1088
1170
  SkipFinalBackup?: boolean;
1089
1171
  FinalBackupTags?: Tag[];
@@ -1145,9 +1227,11 @@ export interface DeleteVolumeOntapConfiguration {
1145
1227
  SkipFinalBackup?: boolean;
1146
1228
  FinalBackupTags?: Tag[];
1147
1229
  }
1148
- export declare enum DeleteOpenZFSVolumeOption {
1149
- DELETE_CHILD_VOLUMES_AND_SNAPSHOTS = "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
1150
- }
1230
+ export declare const DeleteOpenZFSVolumeOption: {
1231
+ readonly DELETE_CHILD_VOLUMES_AND_SNAPSHOTS: "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS";
1232
+ };
1233
+ export type DeleteOpenZFSVolumeOption =
1234
+ (typeof DeleteOpenZFSVolumeOption)[keyof typeof DeleteOpenZFSVolumeOption];
1151
1235
  export interface DeleteVolumeOpenZFSConfiguration {
1152
1236
  Options?: (DeleteOpenZFSVolumeOption | string)[];
1153
1237
  }
@@ -1166,15 +1250,16 @@ export interface DeleteVolumeResponse {
1166
1250
  Lifecycle?: VolumeLifecycle | string;
1167
1251
  OntapResponse?: DeleteVolumeOntapResponse;
1168
1252
  }
1169
- export declare enum FilterName {
1170
- BACKUP_TYPE = "backup-type",
1171
- DATA_REPOSITORY_TYPE = "data-repository-type",
1172
- FILE_CACHE_ID = "file-cache-id",
1173
- FILE_CACHE_TYPE = "file-cache-type",
1174
- FILE_SYSTEM_ID = "file-system-id",
1175
- FILE_SYSTEM_TYPE = "file-system-type",
1176
- VOLUME_ID = "volume-id",
1177
- }
1253
+ export declare const FilterName: {
1254
+ readonly BACKUP_TYPE: "backup-type";
1255
+ readonly DATA_REPOSITORY_TYPE: "data-repository-type";
1256
+ readonly FILE_CACHE_ID: "file-cache-id";
1257
+ readonly FILE_CACHE_TYPE: "file-cache-type";
1258
+ readonly FILE_SYSTEM_ID: "file-system-id";
1259
+ readonly FILE_SYSTEM_TYPE: "file-system-type";
1260
+ readonly VOLUME_ID: "volume-id";
1261
+ };
1262
+ export type FilterName = (typeof FilterName)[keyof typeof FilterName];
1178
1263
  export interface Filter {
1179
1264
  Name?: FilterName | string;
1180
1265
  Values?: string[];
@@ -1203,12 +1288,14 @@ export declare class InvalidDataRepositoryType extends __BaseException {
1203
1288
  opts: __ExceptionOptionType<InvalidDataRepositoryType, __BaseException>
1204
1289
  );
1205
1290
  }
1206
- export declare enum DataRepositoryTaskFilterName {
1207
- DATA_REPO_ASSOCIATION_ID = "data-repository-association-id",
1208
- FILE_CACHE_ID = "file-cache-id",
1209
- FILE_SYSTEM_ID = "file-system-id",
1210
- TASK_LIFECYCLE = "task-lifecycle",
1211
- }
1291
+ export declare const DataRepositoryTaskFilterName: {
1292
+ readonly DATA_REPO_ASSOCIATION_ID: "data-repository-association-id";
1293
+ readonly FILE_CACHE_ID: "file-cache-id";
1294
+ readonly FILE_SYSTEM_ID: "file-system-id";
1295
+ readonly TASK_LIFECYCLE: "task-lifecycle";
1296
+ };
1297
+ export type DataRepositoryTaskFilterName =
1298
+ (typeof DataRepositoryTaskFilterName)[keyof typeof DataRepositoryTaskFilterName];
1212
1299
  export interface DataRepositoryTaskFilter {
1213
1300
  Name?: DataRepositoryTaskFilterName | string;
1214
1301
  Values?: string[];
@@ -1265,10 +1352,12 @@ export interface DescribeFileSystemsRequest {
1265
1352
  MaxResults?: number;
1266
1353
  NextToken?: string;
1267
1354
  }
1268
- export declare enum SnapshotFilterName {
1269
- FILE_SYSTEM_ID = "file-system-id",
1270
- VOLUME_ID = "volume-id",
1271
- }
1355
+ export declare const SnapshotFilterName: {
1356
+ readonly FILE_SYSTEM_ID: "file-system-id";
1357
+ readonly VOLUME_ID: "volume-id";
1358
+ };
1359
+ export type SnapshotFilterName =
1360
+ (typeof SnapshotFilterName)[keyof typeof SnapshotFilterName];
1272
1361
  export interface SnapshotFilter {
1273
1362
  Name?: SnapshotFilterName | string;
1274
1363
  Values?: string[];
@@ -1279,9 +1368,11 @@ export interface DescribeSnapshotsRequest {
1279
1368
  MaxResults?: number;
1280
1369
  NextToken?: string;
1281
1370
  }
1282
- export declare enum StorageVirtualMachineFilterName {
1283
- FILE_SYSTEM_ID = "file-system-id",
1284
- }
1371
+ export declare const StorageVirtualMachineFilterName: {
1372
+ readonly FILE_SYSTEM_ID: "file-system-id";
1373
+ };
1374
+ export type StorageVirtualMachineFilterName =
1375
+ (typeof StorageVirtualMachineFilterName)[keyof typeof StorageVirtualMachineFilterName];
1285
1376
  export interface StorageVirtualMachineFilter {
1286
1377
  Name?: StorageVirtualMachineFilterName | string;
1287
1378
  Values?: string[];
@@ -1296,10 +1387,12 @@ export interface DescribeStorageVirtualMachinesResponse {
1296
1387
  StorageVirtualMachines?: StorageVirtualMachine[];
1297
1388
  NextToken?: string;
1298
1389
  }
1299
- export declare enum VolumeFilterName {
1300
- FILE_SYSTEM_ID = "file-system-id",
1301
- STORAGE_VIRTUAL_MACHINE_ID = "storage-virtual-machine-id",
1302
- }
1390
+ export declare const VolumeFilterName: {
1391
+ readonly FILE_SYSTEM_ID: "file-system-id";
1392
+ readonly STORAGE_VIRTUAL_MACHINE_ID: "storage-virtual-machine-id";
1393
+ };
1394
+ export type VolumeFilterName =
1395
+ (typeof VolumeFilterName)[keyof typeof VolumeFilterName];
1303
1396
  export interface VolumeFilter {
1304
1397
  Name?: VolumeFilterName | string;
1305
1398
  Values?: string[];
@@ -1356,10 +1449,12 @@ export interface ReleaseFileSystemNfsV3LocksRequest {
1356
1449
  FileSystemId: string | undefined;
1357
1450
  ClientRequestToken?: string;
1358
1451
  }
1359
- export declare enum RestoreOpenZFSVolumeOption {
1360
- DELETE_CLONED_VOLUMES = "DELETE_CLONED_VOLUMES",
1361
- DELETE_INTERMEDIATE_SNAPSHOTS = "DELETE_INTERMEDIATE_SNAPSHOTS",
1362
- }
1452
+ export declare const RestoreOpenZFSVolumeOption: {
1453
+ readonly DELETE_CLONED_VOLUMES: "DELETE_CLONED_VOLUMES";
1454
+ readonly DELETE_INTERMEDIATE_SNAPSHOTS: "DELETE_INTERMEDIATE_SNAPSHOTS";
1455
+ };
1456
+ export type RestoreOpenZFSVolumeOption =
1457
+ (typeof RestoreOpenZFSVolumeOption)[keyof typeof RestoreOpenZFSVolumeOption];
1363
1458
  export interface RestoreVolumeFromSnapshotRequest {
1364
1459
  ClientRequestToken?: string;
1365
1460
  VolumeId: string | undefined;