@aws-sdk/client-fsx 3.428.0 → 3.429.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.
@@ -17,7 +17,7 @@ export declare class ActiveDirectoryError extends __BaseException {
17
17
  readonly name: "ActiveDirectoryError";
18
18
  readonly $fault: "client";
19
19
  ActiveDirectoryId: string | undefined;
20
- Type?: ActiveDirectoryErrorType | string;
20
+ Type?: ActiveDirectoryErrorType;
21
21
  Message?: string;
22
22
  constructor(
23
23
  opts: __ExceptionOptionType<ActiveDirectoryError, __BaseException>
@@ -100,11 +100,11 @@ export declare const DataRepositoryLifecycle: {
100
100
  export type DataRepositoryLifecycle =
101
101
  (typeof DataRepositoryLifecycle)[keyof typeof DataRepositoryLifecycle];
102
102
  export interface DataRepositoryConfiguration {
103
- Lifecycle?: DataRepositoryLifecycle | string;
103
+ Lifecycle?: DataRepositoryLifecycle;
104
104
  ImportPath?: string;
105
105
  ExportPath?: string;
106
106
  ImportedFileChunkSize?: number;
107
- AutoImportPolicy?: AutoImportPolicyType | string;
107
+ AutoImportPolicy?: AutoImportPolicyType;
108
108
  FailureDetails?: DataRepositoryFailureDetails;
109
109
  }
110
110
  export declare const LustreDeploymentType: {
@@ -130,7 +130,7 @@ export declare const LustreAccessAuditLogLevel: {
130
130
  export type LustreAccessAuditLogLevel =
131
131
  (typeof LustreAccessAuditLogLevel)[keyof typeof LustreAccessAuditLogLevel];
132
132
  export interface LustreLogConfiguration {
133
- Level: LustreAccessAuditLogLevel | string | undefined;
133
+ Level: LustreAccessAuditLogLevel | undefined;
134
134
  Destination?: string;
135
135
  }
136
136
  export interface LustreRootSquashConfiguration {
@@ -140,14 +140,14 @@ export interface LustreRootSquashConfiguration {
140
140
  export interface LustreFileSystemConfiguration {
141
141
  WeeklyMaintenanceStartTime?: string;
142
142
  DataRepositoryConfiguration?: DataRepositoryConfiguration;
143
- DeploymentType?: LustreDeploymentType | string;
143
+ DeploymentType?: LustreDeploymentType;
144
144
  PerUnitStorageThroughput?: number;
145
145
  MountName?: string;
146
146
  DailyAutomaticBackupStartTime?: string;
147
147
  AutomaticBackupRetentionDays?: number;
148
148
  CopyTagsToBackups?: boolean;
149
- DriveCacheType?: DriveCacheType | string;
150
- DataCompressionType?: DataCompressionType | string;
149
+ DriveCacheType?: DriveCacheType;
150
+ DataCompressionType?: DataCompressionType;
151
151
  LogConfiguration?: LustreLogConfiguration;
152
152
  RootSquashConfiguration?: LustreRootSquashConfiguration;
153
153
  }
@@ -164,7 +164,7 @@ export declare const DiskIopsConfigurationMode: {
164
164
  export type DiskIopsConfigurationMode =
165
165
  (typeof DiskIopsConfigurationMode)[keyof typeof DiskIopsConfigurationMode];
166
166
  export interface DiskIopsConfiguration {
167
- Mode?: DiskIopsConfigurationMode | string;
167
+ Mode?: DiskIopsConfigurationMode;
168
168
  Iops?: number;
169
169
  }
170
170
  export interface FileSystemEndpoint {
@@ -178,7 +178,7 @@ export interface FileSystemEndpoints {
178
178
  export interface OntapFileSystemConfiguration {
179
179
  AutomaticBackupRetentionDays?: number;
180
180
  DailyAutomaticBackupStartTime?: string;
181
- DeploymentType?: OntapDeploymentType | string;
181
+ DeploymentType?: OntapDeploymentType;
182
182
  EndpointIpAddressRange?: string;
183
183
  Endpoints?: FileSystemEndpoints;
184
184
  DiskIopsConfiguration?: DiskIopsConfiguration;
@@ -200,7 +200,7 @@ export interface OpenZFSFileSystemConfiguration {
200
200
  CopyTagsToBackups?: boolean;
201
201
  CopyTagsToVolumes?: boolean;
202
202
  DailyAutomaticBackupStartTime?: string;
203
- DeploymentType?: OpenZFSDeploymentType | string;
203
+ DeploymentType?: OpenZFSDeploymentType;
204
204
  ThroughputCapacity?: number;
205
205
  WeeklyMaintenanceStartTime?: string;
206
206
  DiskIopsConfiguration?: DiskIopsConfiguration;
@@ -230,7 +230,7 @@ export type AliasLifecycle =
230
230
  (typeof AliasLifecycle)[keyof typeof AliasLifecycle];
231
231
  export interface Alias {
232
232
  Name?: string;
233
- Lifecycle?: AliasLifecycle | string;
233
+ Lifecycle?: AliasLifecycle;
234
234
  }
235
235
  export declare const WindowsAccessAuditLogLevel: {
236
236
  readonly DISABLED: "DISABLED";
@@ -241,8 +241,8 @@ export declare const WindowsAccessAuditLogLevel: {
241
241
  export type WindowsAccessAuditLogLevel =
242
242
  (typeof WindowsAccessAuditLogLevel)[keyof typeof WindowsAccessAuditLogLevel];
243
243
  export interface WindowsAuditLogConfiguration {
244
- FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
245
- FileShareAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
244
+ FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | undefined;
245
+ FileShareAccessAuditLogLevel: WindowsAccessAuditLogLevel | undefined;
246
246
  AuditLogDestination?: string;
247
247
  }
248
248
  export declare const WindowsDeploymentType: {
@@ -268,12 +268,12 @@ export interface SelfManagedActiveDirectoryAttributes {
268
268
  export interface WindowsFileSystemConfiguration {
269
269
  ActiveDirectoryId?: string;
270
270
  SelfManagedActiveDirectoryConfiguration?: SelfManagedActiveDirectoryAttributes;
271
- DeploymentType?: WindowsDeploymentType | string;
271
+ DeploymentType?: WindowsDeploymentType;
272
272
  RemoteAdministrationEndpoint?: string;
273
273
  PreferredSubnetId?: string;
274
274
  PreferredFileServerIp?: string;
275
275
  ThroughputCapacity?: number;
276
- MaintenanceOperationsInProgress?: (FileSystemMaintenanceOperation | string)[];
276
+ MaintenanceOperationsInProgress?: FileSystemMaintenanceOperation[];
277
277
  WeeklyMaintenanceStartTime?: string;
278
278
  DailyAutomaticBackupStartTime?: string;
279
279
  AutomaticBackupRetentionDays?: number;
@@ -335,7 +335,7 @@ export declare const AutocommitPeriodType: {
335
335
  export type AutocommitPeriodType =
336
336
  (typeof AutocommitPeriodType)[keyof typeof AutocommitPeriodType];
337
337
  export interface AutocommitPeriod {
338
- Type: AutocommitPeriodType | string | undefined;
338
+ Type: AutocommitPeriodType | undefined;
339
339
  Value?: number;
340
340
  }
341
341
  export declare const PrivilegedDelete: {
@@ -358,7 +358,7 @@ export declare const RetentionPeriodType: {
358
358
  export type RetentionPeriodType =
359
359
  (typeof RetentionPeriodType)[keyof typeof RetentionPeriodType];
360
360
  export interface RetentionPeriod {
361
- Type: RetentionPeriodType | string | undefined;
361
+ Type: RetentionPeriodType | undefined;
362
362
  Value?: number;
363
363
  }
364
364
  export interface SnaplockRetentionPeriod {
@@ -374,9 +374,9 @@ export type SnaplockType = (typeof SnaplockType)[keyof typeof SnaplockType];
374
374
  export interface SnaplockConfiguration {
375
375
  AuditLogVolume?: boolean;
376
376
  AutocommitPeriod?: AutocommitPeriod;
377
- PrivilegedDelete?: PrivilegedDelete | string;
377
+ PrivilegedDelete?: PrivilegedDelete;
378
378
  RetentionPeriod?: SnaplockRetentionPeriod;
379
- SnaplockType?: SnaplockType | string;
379
+ SnaplockType?: SnaplockType;
380
380
  VolumeAppendModeEnabled?: boolean;
381
381
  }
382
382
  export declare const TieringPolicyName: {
@@ -389,19 +389,19 @@ export type TieringPolicyName =
389
389
  (typeof TieringPolicyName)[keyof typeof TieringPolicyName];
390
390
  export interface TieringPolicy {
391
391
  CoolingPeriod?: number;
392
- Name?: TieringPolicyName | string;
392
+ Name?: TieringPolicyName;
393
393
  }
394
394
  export interface OntapVolumeConfiguration {
395
- FlexCacheEndpointType?: FlexCacheEndpointType | string;
395
+ FlexCacheEndpointType?: FlexCacheEndpointType;
396
396
  JunctionPath?: string;
397
- SecurityStyle?: SecurityStyle | string;
397
+ SecurityStyle?: SecurityStyle;
398
398
  SizeInMegabytes?: number;
399
399
  StorageEfficiencyEnabled?: boolean;
400
400
  StorageVirtualMachineId?: string;
401
401
  StorageVirtualMachineRoot?: boolean;
402
402
  TieringPolicy?: TieringPolicy;
403
403
  UUID?: string;
404
- OntapVolumeType?: OntapVolumeType | string;
404
+ OntapVolumeType?: OntapVolumeType;
405
405
  SnapshotPolicy?: string;
406
406
  CopyTagsToBackups?: boolean;
407
407
  SnaplockConfiguration?: SnaplockConfiguration;
@@ -428,7 +428,7 @@ export type OpenZFSCopyStrategy =
428
428
  (typeof OpenZFSCopyStrategy)[keyof typeof OpenZFSCopyStrategy];
429
429
  export interface OpenZFSOriginSnapshotConfiguration {
430
430
  SnapshotARN?: string;
431
- CopyStrategy?: OpenZFSCopyStrategy | string;
431
+ CopyStrategy?: OpenZFSCopyStrategy;
432
432
  }
433
433
  export declare const OpenZFSQuotaType: {
434
434
  readonly GROUP: "GROUP";
@@ -437,7 +437,7 @@ export declare const OpenZFSQuotaType: {
437
437
  export type OpenZFSQuotaType =
438
438
  (typeof OpenZFSQuotaType)[keyof typeof OpenZFSQuotaType];
439
439
  export interface OpenZFSUserOrGroupQuota {
440
- Type: OpenZFSQuotaType | string | undefined;
440
+ Type: OpenZFSQuotaType | undefined;
441
441
  Id: number | undefined;
442
442
  StorageCapacityQuotaGiB: number | undefined;
443
443
  }
@@ -447,7 +447,7 @@ export interface OpenZFSVolumeConfiguration {
447
447
  StorageCapacityReservationGiB?: number;
448
448
  StorageCapacityQuotaGiB?: number;
449
449
  RecordSizeKiB?: number;
450
- DataCompressionType?: OpenZFSDataCompressionType | string;
450
+ DataCompressionType?: OpenZFSDataCompressionType;
451
451
  CopyTagsToSnapshots?: boolean;
452
452
  OriginSnapshot?: OpenZFSOriginSnapshotConfiguration;
453
453
  ReadOnly?: boolean;
@@ -497,10 +497,10 @@ export declare const EventType: {
497
497
  };
498
498
  export type EventType = (typeof EventType)[keyof typeof EventType];
499
499
  export interface AutoExportPolicy {
500
- Events?: (EventType | string)[];
500
+ Events?: EventType[];
501
501
  }
502
502
  export interface AutoImportPolicy {
503
- Events?: (EventType | string)[];
503
+ Events?: EventType[];
504
504
  }
505
505
  export interface CancelDataRepositoryTaskRequest {
506
506
  TaskId: string | undefined;
@@ -516,7 +516,7 @@ export declare const DataRepositoryTaskLifecycle: {
516
516
  export type DataRepositoryTaskLifecycle =
517
517
  (typeof DataRepositoryTaskLifecycle)[keyof typeof DataRepositoryTaskLifecycle];
518
518
  export interface CancelDataRepositoryTaskResponse {
519
- Lifecycle?: DataRepositoryTaskLifecycle | string;
519
+ Lifecycle?: DataRepositoryTaskLifecycle;
520
520
  TaskId?: string;
521
521
  }
522
522
  export declare class DataRepositoryTaskEnded extends __BaseException {
@@ -637,7 +637,7 @@ export type ServiceLimit = (typeof ServiceLimit)[keyof typeof ServiceLimit];
637
637
  export declare class ServiceLimitExceeded extends __BaseException {
638
638
  readonly name: "ServiceLimitExceeded";
639
639
  readonly $fault: "client";
640
- Limit: ServiceLimit | string | undefined;
640
+ Limit: ServiceLimit | undefined;
641
641
  Message?: string;
642
642
  constructor(
643
643
  opts: __ExceptionOptionType<ServiceLimitExceeded, __BaseException>
@@ -689,7 +689,7 @@ export declare const NfsVersion: {
689
689
  };
690
690
  export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
691
691
  export interface NFSDataRepositoryConfiguration {
692
- Version: NfsVersion | string | undefined;
692
+ Version: NfsVersion | undefined;
693
693
  DnsIps?: string[];
694
694
  AutoExportPolicy?: AutoExportPolicy;
695
695
  }
@@ -697,7 +697,7 @@ export interface DataRepositoryAssociation {
697
697
  AssociationId?: string;
698
698
  ResourceARN?: string;
699
699
  FileSystemId?: string;
700
- Lifecycle?: DataRepositoryLifecycle | string;
700
+ Lifecycle?: DataRepositoryLifecycle;
701
701
  FailureDetails?: DataRepositoryFailureDetails;
702
702
  FileSystemPath?: string;
703
703
  DataRepositoryPath?: string;
@@ -719,7 +719,7 @@ export declare const Unit: {
719
719
  };
720
720
  export type Unit = (typeof Unit)[keyof typeof Unit];
721
721
  export interface DurationSinceLastAccess {
722
- Unit?: Unit | string;
722
+ Unit?: Unit;
723
723
  Value?: number;
724
724
  }
725
725
  export interface ReleaseConfiguration {
@@ -736,8 +736,8 @@ export type ReportScope = (typeof ReportScope)[keyof typeof ReportScope];
736
736
  export interface CompletionReport {
737
737
  Enabled: boolean | undefined;
738
738
  Path?: string;
739
- Format?: ReportFormat | string;
740
- Scope?: ReportScope | string;
739
+ Format?: ReportFormat;
740
+ Scope?: ReportScope;
741
741
  }
742
742
  export declare const DataRepositoryTaskType: {
743
743
  readonly AUTO_TRIGGERED_EVICTION: "AUTO_RELEASE_DATA";
@@ -748,7 +748,7 @@ export declare const DataRepositoryTaskType: {
748
748
  export type DataRepositoryTaskType =
749
749
  (typeof DataRepositoryTaskType)[keyof typeof DataRepositoryTaskType];
750
750
  export interface CreateDataRepositoryTaskRequest {
751
- Type: DataRepositoryTaskType | string | undefined;
751
+ Type: DataRepositoryTaskType | undefined;
752
752
  Paths?: string[];
753
753
  FileSystemId: string | undefined;
754
754
  Report: CompletionReport | undefined;
@@ -769,8 +769,8 @@ export interface DataRepositoryTaskStatus {
769
769
  }
770
770
  export interface DataRepositoryTask {
771
771
  TaskId: string | undefined;
772
- Lifecycle: DataRepositoryTaskLifecycle | string | undefined;
773
- Type: DataRepositoryTaskType | string | undefined;
772
+ Lifecycle: DataRepositoryTaskLifecycle | undefined;
773
+ Type: DataRepositoryTaskType | undefined;
774
774
  CreationTime: Date | undefined;
775
775
  StartTime?: Date;
776
776
  EndTime?: Date;
@@ -797,7 +797,7 @@ export declare class DataRepositoryTaskExecuting extends __BaseException {
797
797
  );
798
798
  }
799
799
  export interface FileCacheNFSConfiguration {
800
- Version: NfsVersion | string | undefined;
800
+ Version: NfsVersion | undefined;
801
801
  DnsIps?: string[];
802
802
  }
803
803
  export interface FileCacheDataRepositoryAssociation {
@@ -820,13 +820,13 @@ export interface FileCacheLustreMetadataConfiguration {
820
820
  }
821
821
  export interface CreateFileCacheLustreConfiguration {
822
822
  PerUnitStorageThroughput: number | undefined;
823
- DeploymentType: FileCacheLustreDeploymentType | string | undefined;
823
+ DeploymentType: FileCacheLustreDeploymentType | undefined;
824
824
  WeeklyMaintenanceStartTime?: string;
825
825
  MetadataConfiguration: FileCacheLustreMetadataConfiguration | undefined;
826
826
  }
827
827
  export interface CreateFileCacheRequest {
828
828
  ClientRequestToken?: string;
829
- FileCacheType: FileCacheType | string | undefined;
829
+ FileCacheType: FileCacheType | undefined;
830
830
  FileCacheTypeVersion: string | undefined;
831
831
  StorageCapacity: number | undefined;
832
832
  SubnetIds: string[] | undefined;
@@ -851,7 +851,7 @@ export type FileCacheLifecycle =
851
851
  (typeof FileCacheLifecycle)[keyof typeof FileCacheLifecycle];
852
852
  export interface FileCacheLustreConfiguration {
853
853
  PerUnitStorageThroughput?: number;
854
- DeploymentType?: FileCacheLustreDeploymentType | string;
854
+ DeploymentType?: FileCacheLustreDeploymentType;
855
855
  MountName?: string;
856
856
  WeeklyMaintenanceStartTime?: string;
857
857
  MetadataConfiguration?: FileCacheLustreMetadataConfiguration;
@@ -861,9 +861,9 @@ export interface FileCacheCreating {
861
861
  OwnerId?: string;
862
862
  CreationTime?: Date;
863
863
  FileCacheId?: string;
864
- FileCacheType?: FileCacheType | string;
864
+ FileCacheType?: FileCacheType;
865
865
  FileCacheTypeVersion?: string;
866
- Lifecycle?: FileCacheLifecycle | string;
866
+ Lifecycle?: FileCacheLifecycle;
867
867
  FailureDetails?: FileCacheFailureDetails;
868
868
  StorageCapacity?: number;
869
869
  VpcId?: string;
@@ -911,7 +911,7 @@ export declare class MissingFileCacheConfiguration extends __BaseException {
911
911
  );
912
912
  }
913
913
  export interface LustreLogCreateConfiguration {
914
- Level: LustreAccessAuditLogLevel | string | undefined;
914
+ Level: LustreAccessAuditLogLevel | undefined;
915
915
  Destination?: string;
916
916
  }
917
917
  export interface CreateFileSystemLustreConfiguration {
@@ -919,21 +919,21 @@ export interface CreateFileSystemLustreConfiguration {
919
919
  ImportPath?: string;
920
920
  ExportPath?: string;
921
921
  ImportedFileChunkSize?: number;
922
- DeploymentType?: LustreDeploymentType | string;
923
- AutoImportPolicy?: AutoImportPolicyType | string;
922
+ DeploymentType?: LustreDeploymentType;
923
+ AutoImportPolicy?: AutoImportPolicyType;
924
924
  PerUnitStorageThroughput?: number;
925
925
  DailyAutomaticBackupStartTime?: string;
926
926
  AutomaticBackupRetentionDays?: number;
927
927
  CopyTagsToBackups?: boolean;
928
- DriveCacheType?: DriveCacheType | string;
929
- DataCompressionType?: DataCompressionType | string;
928
+ DriveCacheType?: DriveCacheType;
929
+ DataCompressionType?: DataCompressionType;
930
930
  LogConfiguration?: LustreLogCreateConfiguration;
931
931
  RootSquashConfiguration?: LustreRootSquashConfiguration;
932
932
  }
933
933
  export interface CreateFileSystemOntapConfiguration {
934
934
  AutomaticBackupRetentionDays?: number;
935
935
  DailyAutomaticBackupStartTime?: string;
936
- DeploymentType: OntapDeploymentType | string | undefined;
936
+ DeploymentType: OntapDeploymentType | undefined;
937
937
  EndpointIpAddressRange?: string;
938
938
  FsxAdminPassword?: string;
939
939
  DiskIopsConfiguration?: DiskIopsConfiguration;
@@ -944,7 +944,7 @@ export interface CreateFileSystemOntapConfiguration {
944
944
  }
945
945
  export interface OpenZFSCreateRootVolumeConfiguration {
946
946
  RecordSizeKiB?: number;
947
- DataCompressionType?: OpenZFSDataCompressionType | string;
947
+ DataCompressionType?: OpenZFSDataCompressionType;
948
948
  NfsExports?: OpenZFSNfsExport[];
949
949
  UserAndGroupQuotas?: OpenZFSUserOrGroupQuota[];
950
950
  CopyTagsToSnapshots?: boolean;
@@ -955,7 +955,7 @@ export interface CreateFileSystemOpenZFSConfiguration {
955
955
  CopyTagsToBackups?: boolean;
956
956
  CopyTagsToVolumes?: boolean;
957
957
  DailyAutomaticBackupStartTime?: string;
958
- DeploymentType: OpenZFSDeploymentType | string | undefined;
958
+ DeploymentType: OpenZFSDeploymentType | undefined;
959
959
  ThroughputCapacity: number | undefined;
960
960
  WeeklyMaintenanceStartTime?: string;
961
961
  DiskIopsConfiguration?: DiskIopsConfiguration;
@@ -965,8 +965,8 @@ export interface CreateFileSystemOpenZFSConfiguration {
965
965
  RouteTableIds?: string[];
966
966
  }
967
967
  export interface WindowsAuditLogCreateConfiguration {
968
- FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
969
- FileShareAccessAuditLogLevel: WindowsAccessAuditLogLevel | string | undefined;
968
+ FileAccessAuditLogLevel: WindowsAccessAuditLogLevel | undefined;
969
+ FileShareAccessAuditLogLevel: WindowsAccessAuditLogLevel | undefined;
970
970
  AuditLogDestination?: string;
971
971
  }
972
972
  export interface SelfManagedActiveDirectoryConfiguration {
@@ -980,7 +980,7 @@ export interface SelfManagedActiveDirectoryConfiguration {
980
980
  export interface CreateFileSystemWindowsConfiguration {
981
981
  ActiveDirectoryId?: string;
982
982
  SelfManagedActiveDirectoryConfiguration?: SelfManagedActiveDirectoryConfiguration;
983
- DeploymentType?: WindowsDeploymentType | string;
983
+ DeploymentType?: WindowsDeploymentType;
984
984
  PreferredSubnetId?: string;
985
985
  ThroughputCapacity: number | undefined;
986
986
  WeeklyMaintenanceStartTime?: string;
@@ -993,9 +993,9 @@ export interface CreateFileSystemWindowsConfiguration {
993
993
  }
994
994
  export interface CreateFileSystemRequest {
995
995
  ClientRequestToken?: string;
996
- FileSystemType: FileSystemType | string | undefined;
996
+ FileSystemType: FileSystemType | undefined;
997
997
  StorageCapacity: number | undefined;
998
- StorageType?: StorageType | string;
998
+ StorageType?: StorageType;
999
999
  SubnetIds: string[] | undefined;
1000
1000
  SecurityGroupIds?: string[];
1001
1001
  Tags?: Tag[];
@@ -1034,7 +1034,7 @@ export interface CreateFileSystemFromBackupRequest {
1034
1034
  Tags?: Tag[];
1035
1035
  WindowsConfiguration?: CreateFileSystemWindowsConfiguration;
1036
1036
  LustreConfiguration?: CreateFileSystemLustreConfiguration;
1037
- StorageType?: StorageType | string;
1037
+ StorageType?: StorageType;
1038
1038
  KmsKeyId?: string;
1039
1039
  FileSystemTypeVersion?: string;
1040
1040
  OpenZFSConfiguration?: CreateFileSystemOpenZFSConfiguration;
@@ -1064,9 +1064,7 @@ export interface CreateStorageVirtualMachineRequest {
1064
1064
  Name: string | undefined;
1065
1065
  SvmAdminPassword?: string;
1066
1066
  Tags?: Tag[];
1067
- RootVolumeSecurityStyle?:
1068
- | StorageVirtualMachineRootVolumeSecurityStyle
1069
- | string;
1067
+ RootVolumeSecurityStyle?: StorageVirtualMachineRootVolumeSecurityStyle;
1070
1068
  }
1071
1069
  export interface SvmActiveDirectoryConfiguration {
1072
1070
  NetBiosName?: string;
@@ -1105,17 +1103,15 @@ export interface StorageVirtualMachine {
1105
1103
  CreationTime?: Date;
1106
1104
  Endpoints?: SvmEndpoints;
1107
1105
  FileSystemId?: string;
1108
- Lifecycle?: StorageVirtualMachineLifecycle | string;
1106
+ Lifecycle?: StorageVirtualMachineLifecycle;
1109
1107
  Name?: string;
1110
1108
  ResourceARN?: string;
1111
1109
  StorageVirtualMachineId?: string;
1112
- Subtype?: StorageVirtualMachineSubtype | string;
1110
+ Subtype?: StorageVirtualMachineSubtype;
1113
1111
  UUID?: string;
1114
1112
  Tags?: Tag[];
1115
1113
  LifecycleTransitionReason?: LifecycleTransitionReason;
1116
- RootVolumeSecurityStyle?:
1117
- | StorageVirtualMachineRootVolumeSecurityStyle
1118
- | string;
1114
+ RootVolumeSecurityStyle?: StorageVirtualMachineRootVolumeSecurityStyle;
1119
1115
  }
1120
1116
  export interface CreateStorageVirtualMachineResponse {
1121
1117
  StorageVirtualMachine?: StorageVirtualMachine;
@@ -1129,33 +1125,33 @@ export type InputOntapVolumeType =
1129
1125
  export interface CreateSnaplockConfiguration {
1130
1126
  AuditLogVolume?: boolean;
1131
1127
  AutocommitPeriod?: AutocommitPeriod;
1132
- PrivilegedDelete?: PrivilegedDelete | string;
1128
+ PrivilegedDelete?: PrivilegedDelete;
1133
1129
  RetentionPeriod?: SnaplockRetentionPeriod;
1134
- SnaplockType: SnaplockType | string | undefined;
1130
+ SnaplockType: SnaplockType | undefined;
1135
1131
  VolumeAppendModeEnabled?: boolean;
1136
1132
  }
1137
1133
  export interface CreateOntapVolumeConfiguration {
1138
1134
  JunctionPath?: string;
1139
- SecurityStyle?: SecurityStyle | string;
1135
+ SecurityStyle?: SecurityStyle;
1140
1136
  SizeInMegabytes: number | undefined;
1141
1137
  StorageEfficiencyEnabled?: boolean;
1142
1138
  StorageVirtualMachineId: string | undefined;
1143
1139
  TieringPolicy?: TieringPolicy;
1144
- OntapVolumeType?: InputOntapVolumeType | string;
1140
+ OntapVolumeType?: InputOntapVolumeType;
1145
1141
  SnapshotPolicy?: string;
1146
1142
  CopyTagsToBackups?: boolean;
1147
1143
  SnaplockConfiguration?: CreateSnaplockConfiguration;
1148
1144
  }
1149
1145
  export interface CreateOpenZFSOriginSnapshotConfiguration {
1150
1146
  SnapshotARN: string | undefined;
1151
- CopyStrategy: OpenZFSCopyStrategy | string | undefined;
1147
+ CopyStrategy: OpenZFSCopyStrategy | undefined;
1152
1148
  }
1153
1149
  export interface CreateOpenZFSVolumeConfiguration {
1154
1150
  ParentVolumeId: string | undefined;
1155
1151
  StorageCapacityReservationGiB?: number;
1156
1152
  StorageCapacityQuotaGiB?: number;
1157
1153
  RecordSizeKiB?: number;
1158
- DataCompressionType?: OpenZFSDataCompressionType | string;
1154
+ DataCompressionType?: OpenZFSDataCompressionType;
1159
1155
  CopyTagsToSnapshots?: boolean;
1160
1156
  OriginSnapshot?: CreateOpenZFSOriginSnapshotConfiguration;
1161
1157
  ReadOnly?: boolean;
@@ -1164,7 +1160,7 @@ export interface CreateOpenZFSVolumeConfiguration {
1164
1160
  }
1165
1161
  export interface CreateVolumeRequest {
1166
1162
  ClientRequestToken?: string;
1167
- VolumeType: VolumeType | string | undefined;
1163
+ VolumeType: VolumeType | undefined;
1168
1164
  Name: string | undefined;
1169
1165
  OntapConfiguration?: CreateOntapVolumeConfiguration;
1170
1166
  Tags?: Tag[];
@@ -1213,7 +1209,7 @@ export interface DeleteBackupRequest {
1213
1209
  }
1214
1210
  export interface DeleteBackupResponse {
1215
1211
  BackupId?: string;
1216
- Lifecycle?: BackupLifecycle | string;
1212
+ Lifecycle?: BackupLifecycle;
1217
1213
  }
1218
1214
  export declare class DataRepositoryAssociationNotFound extends __BaseException {
1219
1215
  readonly name: "DataRepositoryAssociationNotFound";
@@ -1233,7 +1229,7 @@ export interface DeleteDataRepositoryAssociationRequest {
1233
1229
  }
1234
1230
  export interface DeleteDataRepositoryAssociationResponse {
1235
1231
  AssociationId?: string;
1236
- Lifecycle?: DataRepositoryLifecycle | string;
1232
+ Lifecycle?: DataRepositoryLifecycle;
1237
1233
  DeleteDataInFileSystem?: boolean;
1238
1234
  }
1239
1235
  export interface DeleteFileCacheRequest {
@@ -1242,7 +1238,7 @@ export interface DeleteFileCacheRequest {
1242
1238
  }
1243
1239
  export interface DeleteFileCacheResponse {
1244
1240
  FileCacheId?: string;
1245
- Lifecycle?: FileCacheLifecycle | string;
1241
+ Lifecycle?: FileCacheLifecycle;
1246
1242
  }
1247
1243
  export declare class FileCacheNotFound extends __BaseException {
1248
1244
  readonly name: "FileCacheNotFound";
@@ -1262,7 +1258,7 @@ export type DeleteFileSystemOpenZFSOption =
1262
1258
  export interface DeleteFileSystemOpenZFSConfiguration {
1263
1259
  SkipFinalBackup?: boolean;
1264
1260
  FinalBackupTags?: Tag[];
1265
- Options?: (DeleteFileSystemOpenZFSOption | string)[];
1261
+ Options?: DeleteFileSystemOpenZFSOption[];
1266
1262
  }
1267
1263
  export interface DeleteFileSystemWindowsConfiguration {
1268
1264
  SkipFinalBackup?: boolean;
@@ -1289,7 +1285,7 @@ export interface DeleteFileSystemWindowsResponse {
1289
1285
  }
1290
1286
  export interface DeleteFileSystemResponse {
1291
1287
  FileSystemId?: string;
1292
- Lifecycle?: FileSystemLifecycle | string;
1288
+ Lifecycle?: FileSystemLifecycle;
1293
1289
  WindowsResponse?: DeleteFileSystemWindowsResponse;
1294
1290
  LustreResponse?: DeleteFileSystemLustreResponse;
1295
1291
  OpenZFSResponse?: DeleteFileSystemOpenZFSResponse;
@@ -1300,7 +1296,7 @@ export interface DeleteSnapshotRequest {
1300
1296
  }
1301
1297
  export interface DeleteSnapshotResponse {
1302
1298
  SnapshotId?: string;
1303
- Lifecycle?: SnapshotLifecycle | string;
1299
+ Lifecycle?: SnapshotLifecycle;
1304
1300
  }
1305
1301
  export declare class SnapshotNotFound extends __BaseException {
1306
1302
  readonly name: "SnapshotNotFound";
@@ -1314,7 +1310,7 @@ export interface DeleteStorageVirtualMachineRequest {
1314
1310
  }
1315
1311
  export interface DeleteStorageVirtualMachineResponse {
1316
1312
  StorageVirtualMachineId?: string;
1317
- Lifecycle?: StorageVirtualMachineLifecycle | string;
1313
+ Lifecycle?: StorageVirtualMachineLifecycle;
1318
1314
  }
1319
1315
  export interface DeleteVolumeOntapConfiguration {
1320
1316
  SkipFinalBackup?: boolean;
@@ -1327,7 +1323,7 @@ export declare const DeleteOpenZFSVolumeOption: {
1327
1323
  export type DeleteOpenZFSVolumeOption =
1328
1324
  (typeof DeleteOpenZFSVolumeOption)[keyof typeof DeleteOpenZFSVolumeOption];
1329
1325
  export interface DeleteVolumeOpenZFSConfiguration {
1330
- Options?: (DeleteOpenZFSVolumeOption | string)[];
1326
+ Options?: DeleteOpenZFSVolumeOption[];
1331
1327
  }
1332
1328
  export interface DeleteVolumeRequest {
1333
1329
  ClientRequestToken?: string;
@@ -1341,7 +1337,7 @@ export interface DeleteVolumeOntapResponse {
1341
1337
  }
1342
1338
  export interface DeleteVolumeResponse {
1343
1339
  VolumeId?: string;
1344
- Lifecycle?: VolumeLifecycle | string;
1340
+ Lifecycle?: VolumeLifecycle;
1345
1341
  OntapResponse?: DeleteVolumeOntapResponse;
1346
1342
  }
1347
1343
  export declare const FilterName: {
@@ -1355,7 +1351,7 @@ export declare const FilterName: {
1355
1351
  };
1356
1352
  export type FilterName = (typeof FilterName)[keyof typeof FilterName];
1357
1353
  export interface Filter {
1358
- Name?: FilterName | string;
1354
+ Name?: FilterName;
1359
1355
  Values?: string[];
1360
1356
  }
1361
1357
  export interface DescribeBackupsRequest {
@@ -1391,7 +1387,7 @@ export declare const DataRepositoryTaskFilterName: {
1391
1387
  export type DataRepositoryTaskFilterName =
1392
1388
  (typeof DataRepositoryTaskFilterName)[keyof typeof DataRepositoryTaskFilterName];
1393
1389
  export interface DataRepositoryTaskFilter {
1394
- Name?: DataRepositoryTaskFilterName | string;
1390
+ Name?: DataRepositoryTaskFilterName;
1395
1391
  Values?: string[];
1396
1392
  }
1397
1393
  export interface DescribeDataRepositoryTasksRequest {
@@ -1413,9 +1409,9 @@ export interface FileCache {
1413
1409
  OwnerId?: string;
1414
1410
  CreationTime?: Date;
1415
1411
  FileCacheId?: string;
1416
- FileCacheType?: FileCacheType | string;
1412
+ FileCacheType?: FileCacheType;
1417
1413
  FileCacheTypeVersion?: string;
1418
- Lifecycle?: FileCacheLifecycle | string;
1414
+ Lifecycle?: FileCacheLifecycle;
1419
1415
  FailureDetails?: FileCacheFailureDetails;
1420
1416
  StorageCapacity?: number;
1421
1417
  VpcId?: string;
@@ -1453,7 +1449,7 @@ export declare const SnapshotFilterName: {
1453
1449
  export type SnapshotFilterName =
1454
1450
  (typeof SnapshotFilterName)[keyof typeof SnapshotFilterName];
1455
1451
  export interface SnapshotFilter {
1456
- Name?: SnapshotFilterName | string;
1452
+ Name?: SnapshotFilterName;
1457
1453
  Values?: string[];
1458
1454
  }
1459
1455
  export interface DescribeSnapshotsRequest {
@@ -1468,7 +1464,7 @@ export declare const StorageVirtualMachineFilterName: {
1468
1464
  export type StorageVirtualMachineFilterName =
1469
1465
  (typeof StorageVirtualMachineFilterName)[keyof typeof StorageVirtualMachineFilterName];
1470
1466
  export interface StorageVirtualMachineFilter {
1471
- Name?: StorageVirtualMachineFilterName | string;
1467
+ Name?: StorageVirtualMachineFilterName;
1472
1468
  Values?: string[];
1473
1469
  }
1474
1470
  export interface DescribeStorageVirtualMachinesRequest {
@@ -1488,7 +1484,7 @@ export declare const VolumeFilterName: {
1488
1484
  export type VolumeFilterName =
1489
1485
  (typeof VolumeFilterName)[keyof typeof VolumeFilterName];
1490
1486
  export interface VolumeFilter {
1491
- Name?: VolumeFilterName | string;
1487
+ Name?: VolumeFilterName;
1492
1488
  Values?: string[];
1493
1489
  }
1494
1490
  export interface DescribeVolumesRequest {
@@ -1553,7 +1549,7 @@ export interface RestoreVolumeFromSnapshotRequest {
1553
1549
  ClientRequestToken?: string;
1554
1550
  VolumeId: string | undefined;
1555
1551
  SnapshotId: string | undefined;
1556
- Options?: (RestoreOpenZFSVolumeOption | string)[];
1552
+ Options?: RestoreOpenZFSVolumeOption[];
1557
1553
  }
1558
1554
  export interface StartMisconfiguredStateRecoveryRequest {
1559
1555
  ClientRequestToken?: string;
@@ -1593,8 +1589,8 @@ export interface UpdateFileSystemLustreConfiguration {
1593
1589
  WeeklyMaintenanceStartTime?: string;
1594
1590
  DailyAutomaticBackupStartTime?: string;
1595
1591
  AutomaticBackupRetentionDays?: number;
1596
- AutoImportPolicy?: AutoImportPolicyType | string;
1597
- DataCompressionType?: DataCompressionType | string;
1592
+ AutoImportPolicy?: AutoImportPolicyType;
1593
+ DataCompressionType?: DataCompressionType;
1598
1594
  LogConfiguration?: LustreLogCreateConfiguration;
1599
1595
  RootSquashConfiguration?: LustreRootSquashConfiguration;
1600
1596
  }
@@ -1644,7 +1640,7 @@ export interface UpdateFileSystemRequest {
1644
1640
  LustreConfiguration?: UpdateFileSystemLustreConfiguration;
1645
1641
  OntapConfiguration?: UpdateFileSystemOntapConfiguration;
1646
1642
  OpenZFSConfiguration?: UpdateFileSystemOpenZFSConfiguration;
1647
- StorageType?: StorageType | string;
1643
+ StorageType?: StorageType;
1648
1644
  }
1649
1645
  export interface UpdateSnapshotRequest {
1650
1646
  ClientRequestToken?: string;
@@ -1667,13 +1663,13 @@ export interface UpdateStorageVirtualMachineResponse {
1667
1663
  export interface UpdateSnaplockConfiguration {
1668
1664
  AuditLogVolume?: boolean;
1669
1665
  AutocommitPeriod?: AutocommitPeriod;
1670
- PrivilegedDelete?: PrivilegedDelete | string;
1666
+ PrivilegedDelete?: PrivilegedDelete;
1671
1667
  RetentionPeriod?: SnaplockRetentionPeriod;
1672
1668
  VolumeAppendModeEnabled?: boolean;
1673
1669
  }
1674
1670
  export interface UpdateOntapVolumeConfiguration {
1675
1671
  JunctionPath?: string;
1676
- SecurityStyle?: SecurityStyle | string;
1672
+ SecurityStyle?: SecurityStyle;
1677
1673
  SizeInMegabytes?: number;
1678
1674
  StorageEfficiencyEnabled?: boolean;
1679
1675
  TieringPolicy?: TieringPolicy;
@@ -1685,7 +1681,7 @@ export interface UpdateOpenZFSVolumeConfiguration {
1685
1681
  StorageCapacityReservationGiB?: number;
1686
1682
  StorageCapacityQuotaGiB?: number;
1687
1683
  RecordSizeKiB?: number;
1688
- DataCompressionType?: OpenZFSDataCompressionType | string;
1684
+ DataCompressionType?: OpenZFSDataCompressionType;
1689
1685
  NfsExports?: OpenZFSNfsExport[];
1690
1686
  UserAndGroupQuotas?: OpenZFSUserOrGroupQuota[];
1691
1687
  ReadOnly?: boolean;
@@ -1698,10 +1694,10 @@ export interface UpdateVolumeRequest {
1698
1694
  OpenZFSConfiguration?: UpdateOpenZFSVolumeConfiguration;
1699
1695
  }
1700
1696
  export interface AdministrativeAction {
1701
- AdministrativeActionType?: AdministrativeActionType | string;
1697
+ AdministrativeActionType?: AdministrativeActionType;
1702
1698
  ProgressPercent?: number;
1703
1699
  RequestTime?: Date;
1704
- Status?: Status | string;
1700
+ Status?: Status;
1705
1701
  TargetFileSystemValues?: FileSystem;
1706
1702
  FailureDetails?: AdministrativeActionFailureDetails;
1707
1703
  TargetVolumeValues?: Volume;
@@ -1711,11 +1707,11 @@ export interface FileSystem {
1711
1707
  OwnerId?: string;
1712
1708
  CreationTime?: Date;
1713
1709
  FileSystemId?: string;
1714
- FileSystemType?: FileSystemType | string;
1715
- Lifecycle?: FileSystemLifecycle | string;
1710
+ FileSystemType?: FileSystemType;
1711
+ Lifecycle?: FileSystemLifecycle;
1716
1712
  FailureDetails?: FileSystemFailureDetails;
1717
1713
  StorageCapacity?: number;
1718
- StorageType?: StorageType | string;
1714
+ StorageType?: StorageType;
1719
1715
  VpcId?: string;
1720
1716
  SubnetIds?: string[];
1721
1717
  NetworkInterfaceIds?: string[];
@@ -1736,7 +1732,7 @@ export interface Snapshot {
1736
1732
  Name?: string;
1737
1733
  VolumeId?: string;
1738
1734
  CreationTime?: Date;
1739
- Lifecycle?: SnapshotLifecycle | string;
1735
+ Lifecycle?: SnapshotLifecycle;
1740
1736
  LifecycleTransitionReason?: LifecycleTransitionReason;
1741
1737
  Tags?: Tag[];
1742
1738
  AdministrativeActions?: AdministrativeAction[];
@@ -1744,20 +1740,20 @@ export interface Snapshot {
1744
1740
  export interface Volume {
1745
1741
  CreationTime?: Date;
1746
1742
  FileSystemId?: string;
1747
- Lifecycle?: VolumeLifecycle | string;
1743
+ Lifecycle?: VolumeLifecycle;
1748
1744
  Name?: string;
1749
1745
  OntapConfiguration?: OntapVolumeConfiguration;
1750
1746
  ResourceARN?: string;
1751
1747
  Tags?: Tag[];
1752
1748
  VolumeId?: string;
1753
- VolumeType?: VolumeType | string;
1749
+ VolumeType?: VolumeType;
1754
1750
  LifecycleTransitionReason?: LifecycleTransitionReason;
1755
1751
  AdministrativeActions?: AdministrativeAction[];
1756
1752
  OpenZFSConfiguration?: OpenZFSVolumeConfiguration;
1757
1753
  }
1758
1754
  export interface RestoreVolumeFromSnapshotResponse {
1759
1755
  VolumeId?: string;
1760
- Lifecycle?: VolumeLifecycle | string;
1756
+ Lifecycle?: VolumeLifecycle;
1761
1757
  AdministrativeActions?: AdministrativeAction[];
1762
1758
  }
1763
1759
  export interface CreateFileSystemFromBackupResponse {
@@ -1804,9 +1800,9 @@ export interface DescribeVolumesResponse {
1804
1800
  }
1805
1801
  export interface Backup {
1806
1802
  BackupId: string | undefined;
1807
- Lifecycle: BackupLifecycle | string | undefined;
1803
+ Lifecycle: BackupLifecycle | undefined;
1808
1804
  FailureDetails?: BackupFailureDetails;
1809
- Type: BackupType | string | undefined;
1805
+ Type: BackupType | undefined;
1810
1806
  ProgressPercent?: number;
1811
1807
  CreationTime: Date | undefined;
1812
1808
  KmsKeyId?: string;
@@ -1817,7 +1813,7 @@ export interface Backup {
1817
1813
  OwnerId?: string;
1818
1814
  SourceBackupId?: string;
1819
1815
  SourceBackupRegion?: string;
1820
- ResourceType?: ResourceType | string;
1816
+ ResourceType?: ResourceType;
1821
1817
  Volume?: Volume;
1822
1818
  }
1823
1819
  export interface CopyBackupResponse {