@aws-sdk/client-fsx 3.300.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.
Files changed (46) hide show
  1. package/dist-cjs/models/models_0.js +293 -347
  2. package/dist-es/models/models_0.js +293 -347
  3. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +2 -2
  4. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +1 -1
  5. package/dist-types/commands/CopyBackupCommand.d.ts +3 -3
  6. package/dist-types/commands/CreateBackupCommand.d.ts +3 -3
  7. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +7 -7
  8. package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +5 -5
  9. package/dist-types/commands/CreateFileCacheCommand.d.ts +12 -12
  10. package/dist-types/commands/CreateFileSystemCommand.d.ts +26 -26
  11. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +24 -24
  12. package/dist-types/commands/CreateSnapshotCommand.d.ts +3 -3
  13. package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +6 -6
  14. package/dist-types/commands/CreateVolumeCommand.d.ts +14 -14
  15. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +5 -5
  16. package/dist-types/commands/DeleteBackupCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteFileCacheCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteFileSystemCommand.d.ts +7 -7
  20. package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  21. package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +1 -1
  22. package/dist-types/commands/DeleteVolumeCommand.d.ts +6 -6
  23. package/dist-types/commands/DescribeBackupsCommand.d.ts +5 -5
  24. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +5 -5
  25. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +5 -5
  26. package/dist-types/commands/DescribeFileCachesCommand.d.ts +2 -2
  27. package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +2 -2
  29. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +5 -5
  30. package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +5 -5
  31. package/dist-types/commands/DescribeVolumesCommand.d.ts +5 -5
  32. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +2 -2
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  34. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +1 -1
  35. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +2 -2
  36. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  37. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  38. package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +5 -5
  39. package/dist-types/commands/UpdateFileCacheCommand.d.ts +2 -2
  40. package/dist-types/commands/UpdateFileSystemCommand.d.ts +13 -13
  41. package/dist-types/commands/UpdateSnapshotCommand.d.ts +1 -1
  42. package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +4 -4
  43. package/dist-types/commands/UpdateVolumeCommand.d.ts +11 -11
  44. package/dist-types/models/models_0.d.ts +563 -293
  45. package/dist-types/ts3.4/models/models_0.d.ts +388 -293
  46. package/package.json +34 -34
@@ -36,10 +36,10 @@ export interface AssociateFileSystemAliasesCommandOutput extends AssociateFileSy
36
36
  * import { FSxClient, AssociateFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
37
37
  * // const { FSxClient, AssociateFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
38
38
  * const client = new FSxClient(config);
39
- * const input = {
39
+ * const input = { // AssociateFileSystemAliasesRequest
40
40
  * ClientRequestToken: "STRING_VALUE",
41
41
  * FileSystemId: "STRING_VALUE", // required
42
- * Aliases: [ // required
42
+ * Aliases: [ // AlternateDNSNames // required
43
43
  * "STRING_VALUE",
44
44
  * ],
45
45
  * };
@@ -38,7 +38,7 @@ export interface CancelDataRepositoryTaskCommandOutput extends CancelDataReposit
38
38
  * import { FSxClient, CancelDataRepositoryTaskCommand } from "@aws-sdk/client-fsx"; // ES Modules import
39
39
  * // const { FSxClient, CancelDataRepositoryTaskCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
40
40
  * const client = new FSxClient(config);
41
- * const input = {
41
+ * const input = { // CancelDataRepositoryTaskRequest
42
42
  * TaskId: "STRING_VALUE", // required
43
43
  * };
44
44
  * const command = new CancelDataRepositoryTaskCommand(input);
@@ -46,14 +46,14 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
46
46
  * import { FSxClient, CopyBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
47
47
  * // const { FSxClient, CopyBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
48
48
  * const client = new FSxClient(config);
49
- * const input = {
49
+ * const input = { // CopyBackupRequest
50
50
  * ClientRequestToken: "STRING_VALUE",
51
51
  * SourceBackupId: "STRING_VALUE", // required
52
52
  * SourceRegion: "STRING_VALUE",
53
53
  * KmsKeyId: "STRING_VALUE",
54
54
  * CopyTags: true || false,
55
- * Tags: [
56
- * {
55
+ * Tags: [ // Tags
56
+ * { // Tag
57
57
  * Key: "STRING_VALUE", // required
58
58
  * Value: "STRING_VALUE", // required
59
59
  * },
@@ -81,11 +81,11 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad
81
81
  * import { FSxClient, CreateBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
82
82
  * // const { FSxClient, CreateBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
83
83
  * const client = new FSxClient(config);
84
- * const input = {
84
+ * const input = { // CreateBackupRequest
85
85
  * FileSystemId: "STRING_VALUE",
86
86
  * ClientRequestToken: "STRING_VALUE",
87
- * Tags: [
88
- * {
87
+ * Tags: [ // Tags
88
+ * { // Tag
89
89
  * Key: "STRING_VALUE", // required
90
90
  * Value: "STRING_VALUE", // required
91
91
  * },
@@ -42,27 +42,27 @@ export interface CreateDataRepositoryAssociationCommandOutput extends CreateData
42
42
  * import { FSxClient, CreateDataRepositoryAssociationCommand } from "@aws-sdk/client-fsx"; // ES Modules import
43
43
  * // const { FSxClient, CreateDataRepositoryAssociationCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
44
44
  * const client = new FSxClient(config);
45
- * const input = {
45
+ * const input = { // CreateDataRepositoryAssociationRequest
46
46
  * FileSystemId: "STRING_VALUE", // required
47
47
  * FileSystemPath: "STRING_VALUE",
48
48
  * DataRepositoryPath: "STRING_VALUE", // required
49
49
  * BatchImportMetaDataOnCreate: true || false,
50
50
  * ImportedFileChunkSize: Number("int"),
51
- * S3: {
52
- * AutoImportPolicy: {
53
- * Events: [
51
+ * S3: { // S3DataRepositoryConfiguration
52
+ * AutoImportPolicy: { // AutoImportPolicy
53
+ * Events: [ // EventTypes
54
54
  * "NEW" || "CHANGED" || "DELETED",
55
55
  * ],
56
56
  * },
57
- * AutoExportPolicy: {
57
+ * AutoExportPolicy: { // AutoExportPolicy
58
58
  * Events: [
59
59
  * "NEW" || "CHANGED" || "DELETED",
60
60
  * ],
61
61
  * },
62
62
  * },
63
63
  * ClientRequestToken: "STRING_VALUE",
64
- * Tags: [
65
- * {
64
+ * Tags: [ // Tags
65
+ * { // Tag
66
66
  * Key: "STRING_VALUE", // required
67
67
  * Value: "STRING_VALUE", // required
68
68
  * },
@@ -35,21 +35,21 @@ export interface CreateDataRepositoryTaskCommandOutput extends CreateDataReposit
35
35
  * import { FSxClient, CreateDataRepositoryTaskCommand } from "@aws-sdk/client-fsx"; // ES Modules import
36
36
  * // const { FSxClient, CreateDataRepositoryTaskCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
37
37
  * const client = new FSxClient(config);
38
- * const input = {
38
+ * const input = { // CreateDataRepositoryTaskRequest
39
39
  * Type: "EXPORT_TO_REPOSITORY" || "IMPORT_METADATA_FROM_REPOSITORY" || "RELEASE_DATA_FROM_FILESYSTEM" || "AUTO_RELEASE_DATA", // required
40
- * Paths: [
40
+ * Paths: [ // DataRepositoryTaskPaths
41
41
  * "STRING_VALUE",
42
42
  * ],
43
43
  * FileSystemId: "STRING_VALUE", // required
44
- * Report: {
44
+ * Report: { // CompletionReport
45
45
  * Enabled: true || false, // required
46
46
  * Path: "STRING_VALUE",
47
47
  * Format: "REPORT_CSV_20191124",
48
48
  * Scope: "FAILED_FILES_ONLY",
49
49
  * },
50
50
  * ClientRequestToken: "STRING_VALUE",
51
- * Tags: [
52
- * {
51
+ * Tags: [ // Tags
52
+ * { // Tag
53
53
  * Key: "STRING_VALUE", // required
54
54
  * Value: "STRING_VALUE", // required
55
55
  * },
@@ -49,43 +49,43 @@ export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, _
49
49
  * import { FSxClient, CreateFileCacheCommand } from "@aws-sdk/client-fsx"; // ES Modules import
50
50
  * // const { FSxClient, CreateFileCacheCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
51
51
  * const client = new FSxClient(config);
52
- * const input = {
52
+ * const input = { // CreateFileCacheRequest
53
53
  * ClientRequestToken: "STRING_VALUE",
54
54
  * FileCacheType: "LUSTRE", // required
55
55
  * FileCacheTypeVersion: "STRING_VALUE", // required
56
56
  * StorageCapacity: Number("int"), // required
57
- * SubnetIds: [ // required
57
+ * SubnetIds: [ // SubnetIds // required
58
58
  * "STRING_VALUE",
59
59
  * ],
60
- * SecurityGroupIds: [
60
+ * SecurityGroupIds: [ // SecurityGroupIds
61
61
  * "STRING_VALUE",
62
62
  * ],
63
- * Tags: [
64
- * {
63
+ * Tags: [ // Tags
64
+ * { // Tag
65
65
  * Key: "STRING_VALUE", // required
66
66
  * Value: "STRING_VALUE", // required
67
67
  * },
68
68
  * ],
69
69
  * CopyTagsToDataRepositoryAssociations: true || false,
70
70
  * KmsKeyId: "STRING_VALUE",
71
- * LustreConfiguration: {
71
+ * LustreConfiguration: { // CreateFileCacheLustreConfiguration
72
72
  * PerUnitStorageThroughput: Number("int"), // required
73
73
  * DeploymentType: "CACHE_1", // required
74
74
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
75
- * MetadataConfiguration: {
75
+ * MetadataConfiguration: { // FileCacheLustreMetadataConfiguration
76
76
  * StorageCapacity: Number("int"), // required
77
77
  * },
78
78
  * },
79
- * DataRepositoryAssociations: [
80
- * {
79
+ * DataRepositoryAssociations: [ // CreateFileCacheDataRepositoryAssociations
80
+ * { // FileCacheDataRepositoryAssociation
81
81
  * FileCachePath: "STRING_VALUE", // required
82
82
  * DataRepositoryPath: "STRING_VALUE", // required
83
- * DataRepositorySubdirectories: [
83
+ * DataRepositorySubdirectories: [ // SubDirectoriesPaths
84
84
  * "STRING_VALUE",
85
85
  * ],
86
- * NFS: {
86
+ * NFS: { // FileCacheNFSConfiguration
87
87
  * Version: "NFS3", // required
88
- * DnsIps: [
88
+ * DnsIps: [ // RepositoryDnsIps
89
89
  * "STRING_VALUE",
90
90
  * ],
91
91
  * },
@@ -71,33 +71,33 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
71
71
  * import { FSxClient, CreateFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
72
72
  * // const { FSxClient, CreateFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
73
73
  * const client = new FSxClient(config);
74
- * const input = {
74
+ * const input = { // CreateFileSystemRequest
75
75
  * ClientRequestToken: "STRING_VALUE",
76
76
  * FileSystemType: "WINDOWS" || "LUSTRE" || "ONTAP" || "OPENZFS", // required
77
77
  * StorageCapacity: Number("int"), // required
78
78
  * StorageType: "SSD" || "HDD",
79
- * SubnetIds: [ // required
79
+ * SubnetIds: [ // SubnetIds // required
80
80
  * "STRING_VALUE",
81
81
  * ],
82
- * SecurityGroupIds: [
82
+ * SecurityGroupIds: [ // SecurityGroupIds
83
83
  * "STRING_VALUE",
84
84
  * ],
85
- * Tags: [
86
- * {
85
+ * Tags: [ // Tags
86
+ * { // Tag
87
87
  * Key: "STRING_VALUE", // required
88
88
  * Value: "STRING_VALUE", // required
89
89
  * },
90
90
  * ],
91
91
  * KmsKeyId: "STRING_VALUE",
92
- * WindowsConfiguration: {
92
+ * WindowsConfiguration: { // CreateFileSystemWindowsConfiguration
93
93
  * ActiveDirectoryId: "STRING_VALUE",
94
- * SelfManagedActiveDirectoryConfiguration: {
94
+ * SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryConfiguration
95
95
  * DomainName: "STRING_VALUE", // required
96
96
  * OrganizationalUnitDistinguishedName: "STRING_VALUE",
97
97
  * FileSystemAdministratorsGroup: "STRING_VALUE",
98
98
  * UserName: "STRING_VALUE", // required
99
99
  * Password: "STRING_VALUE", // required
100
- * DnsIps: [ // required
100
+ * DnsIps: [ // DnsIps // required
101
101
  * "STRING_VALUE",
102
102
  * ],
103
103
  * },
@@ -108,16 +108,16 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
108
108
  * DailyAutomaticBackupStartTime: "STRING_VALUE",
109
109
  * AutomaticBackupRetentionDays: Number("int"),
110
110
  * CopyTagsToBackups: true || false,
111
- * Aliases: [
111
+ * Aliases: [ // AlternateDNSNames
112
112
  * "STRING_VALUE",
113
113
  * ],
114
- * AuditLogConfiguration: {
114
+ * AuditLogConfiguration: { // WindowsAuditLogCreateConfiguration
115
115
  * FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
116
116
  * FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
117
117
  * AuditLogDestination: "STRING_VALUE",
118
118
  * },
119
119
  * },
120
- * LustreConfiguration: {
120
+ * LustreConfiguration: { // CreateFileSystemLustreConfiguration
121
121
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
122
122
  * ImportPath: "STRING_VALUE",
123
123
  * ExportPath: "STRING_VALUE",
@@ -130,36 +130,36 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
130
130
  * CopyTagsToBackups: true || false,
131
131
  * DriveCacheType: "NONE" || "READ",
132
132
  * DataCompressionType: "NONE" || "LZ4",
133
- * LogConfiguration: {
133
+ * LogConfiguration: { // LustreLogCreateConfiguration
134
134
  * Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
135
135
  * Destination: "STRING_VALUE",
136
136
  * },
137
- * RootSquashConfiguration: {
137
+ * RootSquashConfiguration: { // LustreRootSquashConfiguration
138
138
  * RootSquash: "STRING_VALUE",
139
- * NoSquashNids: [
139
+ * NoSquashNids: [ // LustreNoSquashNids
140
140
  * "STRING_VALUE",
141
141
  * ],
142
142
  * },
143
143
  * },
144
- * OntapConfiguration: {
144
+ * OntapConfiguration: { // CreateFileSystemOntapConfiguration
145
145
  * AutomaticBackupRetentionDays: Number("int"),
146
146
  * DailyAutomaticBackupStartTime: "STRING_VALUE",
147
147
  * DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1", // required
148
148
  * EndpointIpAddressRange: "STRING_VALUE",
149
149
  * FsxAdminPassword: "STRING_VALUE",
150
- * DiskIopsConfiguration: {
150
+ * DiskIopsConfiguration: { // DiskIopsConfiguration
151
151
  * Mode: "AUTOMATIC" || "USER_PROVISIONED",
152
152
  * Iops: Number("long"),
153
153
  * },
154
154
  * PreferredSubnetId: "STRING_VALUE",
155
- * RouteTableIds: [
155
+ * RouteTableIds: [ // RouteTableIds
156
156
  * "STRING_VALUE",
157
157
  * ],
158
158
  * ThroughputCapacity: Number("int"), // required
159
159
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
160
160
  * },
161
161
  * FileSystemTypeVersion: "STRING_VALUE",
162
- * OpenZFSConfiguration: {
162
+ * OpenZFSConfiguration: { // CreateFileSystemOpenZFSConfiguration
163
163
  * AutomaticBackupRetentionDays: Number("int"),
164
164
  * CopyTagsToBackups: true || false,
165
165
  * CopyTagsToVolumes: true || false,
@@ -171,23 +171,23 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
171
171
  * Mode: "AUTOMATIC" || "USER_PROVISIONED",
172
172
  * Iops: Number("long"),
173
173
  * },
174
- * RootVolumeConfiguration: {
174
+ * RootVolumeConfiguration: { // OpenZFSCreateRootVolumeConfiguration
175
175
  * RecordSizeKiB: Number("int"),
176
176
  * DataCompressionType: "NONE" || "ZSTD" || "LZ4",
177
- * NfsExports: [
178
- * {
179
- * ClientConfigurations: [ // required
180
- * {
177
+ * NfsExports: [ // OpenZFSNfsExports
178
+ * { // OpenZFSNfsExport
179
+ * ClientConfigurations: [ // OpenZFSClientConfigurations // required
180
+ * { // OpenZFSClientConfiguration
181
181
  * Clients: "STRING_VALUE", // required
182
- * Options: [ // required
182
+ * Options: [ // OpenZFSNfsExportOptions // required
183
183
  * "STRING_VALUE",
184
184
  * ],
185
185
  * },
186
186
  * ],
187
187
  * },
188
188
  * ],
189
- * UserAndGroupQuotas: [
190
- * {
189
+ * UserAndGroupQuotas: [ // OpenZFSUserAndGroupQuotas
190
+ * { // OpenZFSUserOrGroupQuota
191
191
  * Type: "USER" || "GROUP", // required
192
192
  * Id: Number("int"), // required
193
193
  * StorageCapacityQuotaGiB: Number("int"), // required
@@ -58,30 +58,30 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
58
58
  * import { FSxClient, CreateFileSystemFromBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
59
59
  * // const { FSxClient, CreateFileSystemFromBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
60
60
  * const client = new FSxClient(config);
61
- * const input = {
61
+ * const input = { // CreateFileSystemFromBackupRequest
62
62
  * BackupId: "STRING_VALUE", // required
63
63
  * ClientRequestToken: "STRING_VALUE",
64
- * SubnetIds: [ // required
64
+ * SubnetIds: [ // SubnetIds // required
65
65
  * "STRING_VALUE",
66
66
  * ],
67
- * SecurityGroupIds: [
67
+ * SecurityGroupIds: [ // SecurityGroupIds
68
68
  * "STRING_VALUE",
69
69
  * ],
70
- * Tags: [
71
- * {
70
+ * Tags: [ // Tags
71
+ * { // Tag
72
72
  * Key: "STRING_VALUE", // required
73
73
  * Value: "STRING_VALUE", // required
74
74
  * },
75
75
  * ],
76
- * WindowsConfiguration: {
76
+ * WindowsConfiguration: { // CreateFileSystemWindowsConfiguration
77
77
  * ActiveDirectoryId: "STRING_VALUE",
78
- * SelfManagedActiveDirectoryConfiguration: {
78
+ * SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryConfiguration
79
79
  * DomainName: "STRING_VALUE", // required
80
80
  * OrganizationalUnitDistinguishedName: "STRING_VALUE",
81
81
  * FileSystemAdministratorsGroup: "STRING_VALUE",
82
82
  * UserName: "STRING_VALUE", // required
83
83
  * Password: "STRING_VALUE", // required
84
- * DnsIps: [ // required
84
+ * DnsIps: [ // DnsIps // required
85
85
  * "STRING_VALUE",
86
86
  * ],
87
87
  * },
@@ -92,16 +92,16 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
92
92
  * DailyAutomaticBackupStartTime: "STRING_VALUE",
93
93
  * AutomaticBackupRetentionDays: Number("int"),
94
94
  * CopyTagsToBackups: true || false,
95
- * Aliases: [
95
+ * Aliases: [ // AlternateDNSNames
96
96
  * "STRING_VALUE",
97
97
  * ],
98
- * AuditLogConfiguration: {
98
+ * AuditLogConfiguration: { // WindowsAuditLogCreateConfiguration
99
99
  * FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
100
100
  * FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
101
101
  * AuditLogDestination: "STRING_VALUE",
102
102
  * },
103
103
  * },
104
- * LustreConfiguration: {
104
+ * LustreConfiguration: { // CreateFileSystemLustreConfiguration
105
105
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
106
106
  * ImportPath: "STRING_VALUE",
107
107
  * ExportPath: "STRING_VALUE",
@@ -114,13 +114,13 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
114
114
  * CopyTagsToBackups: true || false,
115
115
  * DriveCacheType: "NONE" || "READ",
116
116
  * DataCompressionType: "NONE" || "LZ4",
117
- * LogConfiguration: {
117
+ * LogConfiguration: { // LustreLogCreateConfiguration
118
118
  * Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
119
119
  * Destination: "STRING_VALUE",
120
120
  * },
121
- * RootSquashConfiguration: {
121
+ * RootSquashConfiguration: { // LustreRootSquashConfiguration
122
122
  * RootSquash: "STRING_VALUE",
123
- * NoSquashNids: [
123
+ * NoSquashNids: [ // LustreNoSquashNids
124
124
  * "STRING_VALUE",
125
125
  * ],
126
126
  * },
@@ -128,7 +128,7 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
128
128
  * StorageType: "SSD" || "HDD",
129
129
  * KmsKeyId: "STRING_VALUE",
130
130
  * FileSystemTypeVersion: "STRING_VALUE",
131
- * OpenZFSConfiguration: {
131
+ * OpenZFSConfiguration: { // CreateFileSystemOpenZFSConfiguration
132
132
  * AutomaticBackupRetentionDays: Number("int"),
133
133
  * CopyTagsToBackups: true || false,
134
134
  * CopyTagsToVolumes: true || false,
@@ -136,27 +136,27 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
136
136
  * DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2", // required
137
137
  * ThroughputCapacity: Number("int"), // required
138
138
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
139
- * DiskIopsConfiguration: {
139
+ * DiskIopsConfiguration: { // DiskIopsConfiguration
140
140
  * Mode: "AUTOMATIC" || "USER_PROVISIONED",
141
141
  * Iops: Number("long"),
142
142
  * },
143
- * RootVolumeConfiguration: {
143
+ * RootVolumeConfiguration: { // OpenZFSCreateRootVolumeConfiguration
144
144
  * RecordSizeKiB: Number("int"),
145
145
  * DataCompressionType: "NONE" || "ZSTD" || "LZ4",
146
- * NfsExports: [
147
- * {
148
- * ClientConfigurations: [ // required
149
- * {
146
+ * NfsExports: [ // OpenZFSNfsExports
147
+ * { // OpenZFSNfsExport
148
+ * ClientConfigurations: [ // OpenZFSClientConfigurations // required
149
+ * { // OpenZFSClientConfiguration
150
150
  * Clients: "STRING_VALUE", // required
151
- * Options: [ // required
151
+ * Options: [ // OpenZFSNfsExportOptions // required
152
152
  * "STRING_VALUE",
153
153
  * ],
154
154
  * },
155
155
  * ],
156
156
  * },
157
157
  * ],
158
- * UserAndGroupQuotas: [
159
- * {
158
+ * UserAndGroupQuotas: [ // OpenZFSUserAndGroupQuotas
159
+ * { // OpenZFSUserOrGroupQuota
160
160
  * Type: "USER" || "GROUP", // required
161
161
  * Id: Number("int"), // required
162
162
  * StorageCapacityQuotaGiB: Number("int"), // required
@@ -53,12 +53,12 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
53
53
  * import { FSxClient, CreateSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
54
54
  * // const { FSxClient, CreateSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
55
55
  * const client = new FSxClient(config);
56
- * const input = {
56
+ * const input = { // CreateSnapshotRequest
57
57
  * ClientRequestToken: "STRING_VALUE",
58
58
  * Name: "STRING_VALUE", // required
59
59
  * VolumeId: "STRING_VALUE", // required
60
- * Tags: [
61
- * {
60
+ * Tags: [ // Tags
61
+ * { // Tag
62
62
  * Key: "STRING_VALUE", // required
63
63
  * Value: "STRING_VALUE", // required
64
64
  * },
@@ -26,16 +26,16 @@ export interface CreateStorageVirtualMachineCommandOutput extends CreateStorageV
26
26
  * import { FSxClient, CreateStorageVirtualMachineCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, CreateStorageVirtualMachineCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
- * const input = {
30
- * ActiveDirectoryConfiguration: {
29
+ * const input = { // CreateStorageVirtualMachineRequest
30
+ * ActiveDirectoryConfiguration: { // CreateSvmActiveDirectoryConfiguration
31
31
  * NetBiosName: "STRING_VALUE", // required
32
- * SelfManagedActiveDirectoryConfiguration: {
32
+ * SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryConfiguration
33
33
  * DomainName: "STRING_VALUE", // required
34
34
  * OrganizationalUnitDistinguishedName: "STRING_VALUE",
35
35
  * FileSystemAdministratorsGroup: "STRING_VALUE",
36
36
  * UserName: "STRING_VALUE", // required
37
37
  * Password: "STRING_VALUE", // required
38
- * DnsIps: [ // required
38
+ * DnsIps: [ // DnsIps // required
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * },
@@ -44,8 +44,8 @@ export interface CreateStorageVirtualMachineCommandOutput extends CreateStorageV
44
44
  * FileSystemId: "STRING_VALUE", // required
45
45
  * Name: "STRING_VALUE", // required
46
46
  * SvmAdminPassword: "STRING_VALUE",
47
- * Tags: [
48
- * {
47
+ * Tags: [ // Tags
48
+ * { // Tag
49
49
  * Key: "STRING_VALUE", // required
50
50
  * Value: "STRING_VALUE", // required
51
51
  * },
@@ -26,17 +26,17 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad
26
26
  * import { FSxClient, CreateVolumeCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, CreateVolumeCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
- * const input = {
29
+ * const input = { // CreateVolumeRequest
30
30
  * ClientRequestToken: "STRING_VALUE",
31
31
  * VolumeType: "ONTAP" || "OPENZFS", // required
32
32
  * Name: "STRING_VALUE", // required
33
- * OntapConfiguration: {
33
+ * OntapConfiguration: { // CreateOntapVolumeConfiguration
34
34
  * JunctionPath: "STRING_VALUE",
35
35
  * SecurityStyle: "UNIX" || "NTFS" || "MIXED",
36
36
  * SizeInMegabytes: Number("int"), // required
37
37
  * StorageEfficiencyEnabled: true || false,
38
38
  * StorageVirtualMachineId: "STRING_VALUE", // required
39
- * TieringPolicy: {
39
+ * TieringPolicy: { // TieringPolicy
40
40
  * CoolingPeriod: Number("int"),
41
41
  * Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
42
42
  * },
@@ -44,38 +44,38 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad
44
44
  * SnapshotPolicy: "STRING_VALUE",
45
45
  * CopyTagsToBackups: true || false,
46
46
  * },
47
- * Tags: [
48
- * {
47
+ * Tags: [ // Tags
48
+ * { // Tag
49
49
  * Key: "STRING_VALUE", // required
50
50
  * Value: "STRING_VALUE", // required
51
51
  * },
52
52
  * ],
53
- * OpenZFSConfiguration: {
53
+ * OpenZFSConfiguration: { // CreateOpenZFSVolumeConfiguration
54
54
  * ParentVolumeId: "STRING_VALUE", // required
55
55
  * StorageCapacityReservationGiB: Number("int"),
56
56
  * StorageCapacityQuotaGiB: Number("int"),
57
57
  * RecordSizeKiB: Number("int"),
58
58
  * DataCompressionType: "NONE" || "ZSTD" || "LZ4",
59
59
  * CopyTagsToSnapshots: true || false,
60
- * OriginSnapshot: {
60
+ * OriginSnapshot: { // CreateOpenZFSOriginSnapshotConfiguration
61
61
  * SnapshotARN: "STRING_VALUE", // required
62
62
  * CopyStrategy: "CLONE" || "FULL_COPY", // required
63
63
  * },
64
64
  * ReadOnly: true || false,
65
- * NfsExports: [
66
- * {
67
- * ClientConfigurations: [ // required
68
- * {
65
+ * NfsExports: [ // OpenZFSNfsExports
66
+ * { // OpenZFSNfsExport
67
+ * ClientConfigurations: [ // OpenZFSClientConfigurations // required
68
+ * { // OpenZFSClientConfiguration
69
69
  * Clients: "STRING_VALUE", // required
70
- * Options: [ // required
70
+ * Options: [ // OpenZFSNfsExportOptions // required
71
71
  * "STRING_VALUE",
72
72
  * ],
73
73
  * },
74
74
  * ],
75
75
  * },
76
76
  * ],
77
- * UserAndGroupQuotas: [
78
- * {
77
+ * UserAndGroupQuotas: [ // OpenZFSUserAndGroupQuotas
78
+ * { // OpenZFSUserOrGroupQuota
79
79
  * Type: "USER" || "GROUP", // required
80
80
  * Id: Number("int"), // required
81
81
  * StorageCapacityQuotaGiB: Number("int"), // required
@@ -27,17 +27,17 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac
27
27
  * import { FSxClient, CreateVolumeFromBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, CreateVolumeFromBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
- * const input = {
30
+ * const input = { // CreateVolumeFromBackupRequest
31
31
  * BackupId: "STRING_VALUE", // required
32
32
  * ClientRequestToken: "STRING_VALUE",
33
33
  * Name: "STRING_VALUE", // required
34
- * OntapConfiguration: {
34
+ * OntapConfiguration: { // CreateOntapVolumeConfiguration
35
35
  * JunctionPath: "STRING_VALUE",
36
36
  * SecurityStyle: "UNIX" || "NTFS" || "MIXED",
37
37
  * SizeInMegabytes: Number("int"), // required
38
38
  * StorageEfficiencyEnabled: true || false,
39
39
  * StorageVirtualMachineId: "STRING_VALUE", // required
40
- * TieringPolicy: {
40
+ * TieringPolicy: { // TieringPolicy
41
41
  * CoolingPeriod: Number("int"),
42
42
  * Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
43
43
  * },
@@ -45,8 +45,8 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac
45
45
  * SnapshotPolicy: "STRING_VALUE",
46
46
  * CopyTagsToBackups: true || false,
47
47
  * },
48
- * Tags: [
49
- * {
48
+ * Tags: [ // Tags
49
+ * { // Tag
50
50
  * Key: "STRING_VALUE", // required
51
51
  * Value: "STRING_VALUE", // required
52
52
  * },
@@ -33,7 +33,7 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad
33
33
  * import { FSxClient, DeleteBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
34
34
  * // const { FSxClient, DeleteBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
35
35
  * const client = new FSxClient(config);
36
- * const input = {
36
+ * const input = { // DeleteBackupRequest
37
37
  * BackupId: "STRING_VALUE", // required
38
38
  * ClientRequestToken: "STRING_VALUE",
39
39
  * };
@@ -32,7 +32,7 @@ export interface DeleteDataRepositoryAssociationCommandOutput extends DeleteData
32
32
  * import { FSxClient, DeleteDataRepositoryAssociationCommand } from "@aws-sdk/client-fsx"; // ES Modules import
33
33
  * // const { FSxClient, DeleteDataRepositoryAssociationCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
34
34
  * const client = new FSxClient(config);
35
- * const input = {
35
+ * const input = { // DeleteDataRepositoryAssociationRequest
36
36
  * AssociationId: "STRING_VALUE", // required
37
37
  * ClientRequestToken: "STRING_VALUE",
38
38
  * DeleteDataInFileSystem: true || false,
@@ -37,7 +37,7 @@ export interface DeleteFileCacheCommandOutput extends DeleteFileCacheResponse, _
37
37
  * import { FSxClient, DeleteFileCacheCommand } from "@aws-sdk/client-fsx"; // ES Modules import
38
38
  * // const { FSxClient, DeleteFileCacheCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
39
39
  * const client = new FSxClient(config);
40
- * const input = {
40
+ * const input = { // DeleteFileCacheRequest
41
41
  * FileCacheId: "STRING_VALUE", // required
42
42
  * ClientRequestToken: "STRING_VALUE",
43
43
  * };