@aws-sdk/client-fsx 3.300.0 → 3.301.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 (42) hide show
  1. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +2 -2
  2. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +1 -1
  3. package/dist-types/commands/CopyBackupCommand.d.ts +3 -3
  4. package/dist-types/commands/CreateBackupCommand.d.ts +3 -3
  5. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +7 -7
  6. package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +5 -5
  7. package/dist-types/commands/CreateFileCacheCommand.d.ts +12 -12
  8. package/dist-types/commands/CreateFileSystemCommand.d.ts +26 -26
  9. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +24 -24
  10. package/dist-types/commands/CreateSnapshotCommand.d.ts +3 -3
  11. package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +6 -6
  12. package/dist-types/commands/CreateVolumeCommand.d.ts +14 -14
  13. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +5 -5
  14. package/dist-types/commands/DeleteBackupCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteFileCacheCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteFileSystemCommand.d.ts +7 -7
  18. package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +1 -1
  20. package/dist-types/commands/DeleteVolumeCommand.d.ts +6 -6
  21. package/dist-types/commands/DescribeBackupsCommand.d.ts +5 -5
  22. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +5 -5
  23. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +5 -5
  24. package/dist-types/commands/DescribeFileCachesCommand.d.ts +2 -2
  25. package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +2 -2
  27. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +5 -5
  28. package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +5 -5
  29. package/dist-types/commands/DescribeVolumesCommand.d.ts +5 -5
  30. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +2 -2
  31. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  32. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +1 -1
  33. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +2 -2
  34. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  35. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  36. package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +5 -5
  37. package/dist-types/commands/UpdateFileCacheCommand.d.ts +2 -2
  38. package/dist-types/commands/UpdateFileSystemCommand.d.ts +13 -13
  39. package/dist-types/commands/UpdateSnapshotCommand.d.ts +1 -1
  40. package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +4 -4
  41. package/dist-types/commands/UpdateVolumeCommand.d.ts +11 -11
  42. package/package.json +3 -3
@@ -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
  * };
@@ -48,19 +48,19 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
48
48
  * import { FSxClient, DeleteFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
49
49
  * // const { FSxClient, DeleteFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
50
50
  * const client = new FSxClient(config);
51
- * const input = {
51
+ * const input = { // DeleteFileSystemRequest
52
52
  * FileSystemId: "STRING_VALUE", // required
53
53
  * ClientRequestToken: "STRING_VALUE",
54
- * WindowsConfiguration: {
54
+ * WindowsConfiguration: { // DeleteFileSystemWindowsConfiguration
55
55
  * SkipFinalBackup: true || false,
56
- * FinalBackupTags: [
57
- * {
56
+ * FinalBackupTags: [ // Tags
57
+ * { // Tag
58
58
  * Key: "STRING_VALUE", // required
59
59
  * Value: "STRING_VALUE", // required
60
60
  * },
61
61
  * ],
62
62
  * },
63
- * LustreConfiguration: {
63
+ * LustreConfiguration: { // DeleteFileSystemLustreConfiguration
64
64
  * SkipFinalBackup: true || false,
65
65
  * FinalBackupTags: [
66
66
  * {
@@ -69,7 +69,7 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
69
69
  * },
70
70
  * ],
71
71
  * },
72
- * OpenZFSConfiguration: {
72
+ * OpenZFSConfiguration: { // DeleteFileSystemOpenZFSConfiguration
73
73
  * SkipFinalBackup: true || false,
74
74
  * FinalBackupTags: [
75
75
  * {
@@ -77,7 +77,7 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
77
77
  * Value: "STRING_VALUE", // required
78
78
  * },
79
79
  * ],
80
- * Options: [
80
+ * Options: [ // DeleteFileSystemOpenZFSOptions
81
81
  * "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
82
82
  * ],
83
83
  * },
@@ -30,7 +30,7 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
30
30
  * import { FSxClient, DeleteSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
31
31
  * // const { FSxClient, DeleteSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
32
32
  * const client = new FSxClient(config);
33
- * const input = {
33
+ * const input = { // DeleteSnapshotRequest
34
34
  * ClientRequestToken: "STRING_VALUE",
35
35
  * SnapshotId: "STRING_VALUE", // required
36
36
  * };
@@ -27,7 +27,7 @@ export interface DeleteStorageVirtualMachineCommandOutput extends DeleteStorageV
27
27
  * import { FSxClient, DeleteStorageVirtualMachineCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, DeleteStorageVirtualMachineCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
- * const input = {
30
+ * const input = { // DeleteStorageVirtualMachineRequest
31
31
  * ClientRequestToken: "STRING_VALUE",
32
32
  * StorageVirtualMachineId: "STRING_VALUE", // required
33
33
  * };
@@ -27,20 +27,20 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __Metad
27
27
  * import { FSxClient, DeleteVolumeCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, DeleteVolumeCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
- * const input = {
30
+ * const input = { // DeleteVolumeRequest
31
31
  * ClientRequestToken: "STRING_VALUE",
32
32
  * VolumeId: "STRING_VALUE", // required
33
- * OntapConfiguration: {
33
+ * OntapConfiguration: { // DeleteVolumeOntapConfiguration
34
34
  * SkipFinalBackup: true || false,
35
- * FinalBackupTags: [
36
- * {
35
+ * FinalBackupTags: [ // Tags
36
+ * { // Tag
37
37
  * Key: "STRING_VALUE", // required
38
38
  * Value: "STRING_VALUE", // required
39
39
  * },
40
40
  * ],
41
41
  * },
42
- * OpenZFSConfiguration: {
43
- * Options: [
42
+ * OpenZFSConfiguration: { // DeleteVolumeOpenZFSConfiguration
43
+ * Options: [ // DeleteOpenZFSVolumeOptions
44
44
  * "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
45
45
  * ],
46
46
  * },
@@ -51,14 +51,14 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
51
51
  * import { FSxClient, DescribeBackupsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
52
52
  * // const { FSxClient, DescribeBackupsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
53
53
  * const client = new FSxClient(config);
54
- * const input = {
55
- * BackupIds: [
54
+ * const input = { // DescribeBackupsRequest
55
+ * BackupIds: [ // BackupIds
56
56
  * "STRING_VALUE",
57
57
  * ],
58
- * Filters: [
59
- * {
58
+ * Filters: [ // Filters
59
+ * { // Filter
60
60
  * Name: "file-system-id" || "backup-type" || "file-system-type" || "volume-id" || "data-repository-type" || "file-cache-id" || "file-cache-type",
61
- * Values: [
61
+ * Values: [ // FilterValues
62
62
  * "STRING_VALUE",
63
63
  * ],
64
64
  * },
@@ -44,14 +44,14 @@ export interface DescribeDataRepositoryAssociationsCommandOutput extends Describ
44
44
  * import { FSxClient, DescribeDataRepositoryAssociationsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
45
45
  * // const { FSxClient, DescribeDataRepositoryAssociationsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
46
46
  * const client = new FSxClient(config);
47
- * const input = {
48
- * AssociationIds: [
47
+ * const input = { // DescribeDataRepositoryAssociationsRequest
48
+ * AssociationIds: [ // DataRepositoryAssociationIds
49
49
  * "STRING_VALUE",
50
50
  * ],
51
- * Filters: [
52
- * {
51
+ * Filters: [ // Filters
52
+ * { // Filter
53
53
  * Name: "file-system-id" || "backup-type" || "file-system-type" || "volume-id" || "data-repository-type" || "file-cache-id" || "file-cache-type",
54
- * Values: [
54
+ * Values: [ // FilterValues
55
55
  * "STRING_VALUE",
56
56
  * ],
57
57
  * },
@@ -35,14 +35,14 @@ export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRe
35
35
  * import { FSxClient, DescribeDataRepositoryTasksCommand } from "@aws-sdk/client-fsx"; // ES Modules import
36
36
  * // const { FSxClient, DescribeDataRepositoryTasksCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
37
37
  * const client = new FSxClient(config);
38
- * const input = {
39
- * TaskIds: [
38
+ * const input = { // DescribeDataRepositoryTasksRequest
39
+ * TaskIds: [ // TaskIds
40
40
  * "STRING_VALUE",
41
41
  * ],
42
- * Filters: [
43
- * {
42
+ * Filters: [ // DataRepositoryTaskFilters
43
+ * { // DataRepositoryTaskFilter
44
44
  * Name: "file-system-id" || "task-lifecycle" || "data-repository-association-id" || "file-cache-id",
45
- * Values: [
45
+ * Values: [ // DataRepositoryTaskFilterValues
46
46
  * "STRING_VALUE",
47
47
  * ],
48
48
  * },
@@ -53,8 +53,8 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo
53
53
  * import { FSxClient, DescribeFileCachesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
54
54
  * // const { FSxClient, DescribeFileCachesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
55
55
  * const client = new FSxClient(config);
56
- * const input = {
57
- * FileCacheIds: [
56
+ * const input = { // DescribeFileCachesRequest
57
+ * FileCacheIds: [ // FileCacheIds
58
58
  * "STRING_VALUE",
59
59
  * ],
60
60
  * MaxResults: Number("int"),
@@ -28,7 +28,7 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst
28
28
  * import { FSxClient, DescribeFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
29
29
  * // const { FSxClient, DescribeFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
30
30
  * const client = new FSxClient(config);
31
- * const input = {
31
+ * const input = { // DescribeFileSystemAliasesRequest
32
32
  * ClientRequestToken: "STRING_VALUE",
33
33
  * FileSystemId: "STRING_VALUE", // required
34
34
  * MaxResults: Number("int"),
@@ -53,8 +53,8 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
53
53
  * import { FSxClient, DescribeFileSystemsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
54
54
  * // const { FSxClient, DescribeFileSystemsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
55
55
  * const client = new FSxClient(config);
56
- * const input = {
57
- * FileSystemIds: [
56
+ * const input = { // DescribeFileSystemsRequest
57
+ * FileSystemIds: [ // FileSystemIds
58
58
  * "STRING_VALUE",
59
59
  * ],
60
60
  * MaxResults: Number("int"),
@@ -52,14 +52,14 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
52
52
  * import { FSxClient, DescribeSnapshotsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
53
53
  * // const { FSxClient, DescribeSnapshotsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
54
54
  * const client = new FSxClient(config);
55
- * const input = {
56
- * SnapshotIds: [
55
+ * const input = { // DescribeSnapshotsRequest
56
+ * SnapshotIds: [ // SnapshotIds
57
57
  * "STRING_VALUE",
58
58
  * ],
59
- * Filters: [
60
- * {
59
+ * Filters: [ // SnapshotFilters
60
+ * { // SnapshotFilter
61
61
  * Name: "file-system-id" || "volume-id",
62
- * Values: [
62
+ * Values: [ // SnapshotFilterValues
63
63
  * "STRING_VALUE",
64
64
  * ],
65
65
  * },
@@ -26,14 +26,14 @@ export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeSto
26
26
  * import { FSxClient, DescribeStorageVirtualMachinesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, DescribeStorageVirtualMachinesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
- * const input = {
30
- * StorageVirtualMachineIds: [
29
+ * const input = { // DescribeStorageVirtualMachinesRequest
30
+ * StorageVirtualMachineIds: [ // StorageVirtualMachineIds
31
31
  * "STRING_VALUE",
32
32
  * ],
33
- * Filters: [
34
- * {
33
+ * Filters: [ // StorageVirtualMachineFilters
34
+ * { // StorageVirtualMachineFilter
35
35
  * Name: "file-system-id",
36
- * Values: [
36
+ * Values: [ // StorageVirtualMachineFilterValues
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * },
@@ -27,14 +27,14 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _
27
27
  * import { FSxClient, DescribeVolumesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, DescribeVolumesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
- * const input = {
31
- * VolumeIds: [
30
+ * const input = { // DescribeVolumesRequest
31
+ * VolumeIds: [ // VolumeIds
32
32
  * "STRING_VALUE",
33
33
  * ],
34
- * Filters: [
35
- * {
34
+ * Filters: [ // VolumeFilters
35
+ * { // VolumeFilter
36
36
  * Name: "file-system-id" || "storage-virtual-machine-id",
37
- * Values: [
37
+ * Values: [ // VolumeFilterValues
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * },
@@ -34,10 +34,10 @@ export interface DisassociateFileSystemAliasesCommandOutput extends Disassociate
34
34
  * import { FSxClient, DisassociateFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
35
35
  * // const { FSxClient, DisassociateFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
36
36
  * const client = new FSxClient(config);
37
- * const input = {
37
+ * const input = { // DisassociateFileSystemAliasesRequest
38
38
  * ClientRequestToken: "STRING_VALUE",
39
39
  * FileSystemId: "STRING_VALUE", // required
40
- * Aliases: [ // required
40
+ * Aliases: [ // AlternateDNSNames // required
41
41
  * "STRING_VALUE",
42
42
  * ],
43
43
  * };
@@ -49,7 +49,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
49
49
  * import { FSxClient, ListTagsForResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
50
50
  * // const { FSxClient, ListTagsForResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
51
51
  * const client = new FSxClient(config);
52
- * const input = {
52
+ * const input = { // ListTagsForResourceRequest
53
53
  * ResourceARN: "STRING_VALUE", // required
54
54
  * MaxResults: Number("int"),
55
55
  * NextToken: "STRING_VALUE",
@@ -27,7 +27,7 @@ export interface ReleaseFileSystemNfsV3LocksCommandOutput extends ReleaseFileSys
27
27
  * import { FSxClient, ReleaseFileSystemNfsV3LocksCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, ReleaseFileSystemNfsV3LocksCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
- * const input = {
30
+ * const input = { // ReleaseFileSystemNfsV3LocksRequest
31
31
  * FileSystemId: "STRING_VALUE", // required
32
32
  * ClientRequestToken: "STRING_VALUE",
33
33
  * };
@@ -27,11 +27,11 @@ export interface RestoreVolumeFromSnapshotCommandOutput extends RestoreVolumeFro
27
27
  * import { FSxClient, RestoreVolumeFromSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, RestoreVolumeFromSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
- * const input = {
30
+ * const input = { // RestoreVolumeFromSnapshotRequest
31
31
  * ClientRequestToken: "STRING_VALUE",
32
32
  * VolumeId: "STRING_VALUE", // required
33
33
  * SnapshotId: "STRING_VALUE", // required
34
- * Options: [
34
+ * Options: [ // RestoreOpenZFSVolumeOptions
35
35
  * "DELETE_INTERMEDIATE_SNAPSHOTS" || "DELETE_CLONED_VOLUMES",
36
36
  * ],
37
37
  * };
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { FSxClient, TagResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, TagResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * Tags: [ // required
32
- * {
31
+ * Tags: [ // Tags // required
32
+ * { // Tag
33
33
  * Key: "STRING_VALUE", // required
34
34
  * Value: "STRING_VALUE", // required
35
35
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { FSxClient, UntagResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, UntagResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeys // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -28,17 +28,17 @@ export interface UpdateDataRepositoryAssociationCommandOutput extends UpdateData
28
28
  * import { FSxClient, UpdateDataRepositoryAssociationCommand } from "@aws-sdk/client-fsx"; // ES Modules import
29
29
  * // const { FSxClient, UpdateDataRepositoryAssociationCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
30
30
  * const client = new FSxClient(config);
31
- * const input = {
31
+ * const input = { // UpdateDataRepositoryAssociationRequest
32
32
  * AssociationId: "STRING_VALUE", // required
33
33
  * ClientRequestToken: "STRING_VALUE",
34
34
  * ImportedFileChunkSize: Number("int"),
35
- * S3: {
36
- * AutoImportPolicy: {
37
- * Events: [
35
+ * S3: { // S3DataRepositoryConfiguration
36
+ * AutoImportPolicy: { // AutoImportPolicy
37
+ * Events: [ // EventTypes
38
38
  * "NEW" || "CHANGED" || "DELETED",
39
39
  * ],
40
40
  * },
41
- * AutoExportPolicy: {
41
+ * AutoExportPolicy: { // AutoExportPolicy
42
42
  * Events: [
43
43
  * "NEW" || "CHANGED" || "DELETED",
44
44
  * ],
@@ -27,10 +27,10 @@ export interface UpdateFileCacheCommandOutput extends UpdateFileCacheResponse, _
27
27
  * import { FSxClient, UpdateFileCacheCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, UpdateFileCacheCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
- * const input = {
30
+ * const input = { // UpdateFileCacheRequest
31
31
  * FileCacheId: "STRING_VALUE", // required
32
32
  * ClientRequestToken: "STRING_VALUE",
33
- * LustreConfiguration: {
33
+ * LustreConfiguration: { // UpdateFileCacheLustreConfiguration
34
34
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
35
35
  * },
36
36
  * };
@@ -178,63 +178,63 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
178
178
  * import { FSxClient, UpdateFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
179
179
  * // const { FSxClient, UpdateFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
180
180
  * const client = new FSxClient(config);
181
- * const input = {
181
+ * const input = { // UpdateFileSystemRequest
182
182
  * FileSystemId: "STRING_VALUE", // required
183
183
  * ClientRequestToken: "STRING_VALUE",
184
184
  * StorageCapacity: Number("int"),
185
- * WindowsConfiguration: {
185
+ * WindowsConfiguration: { // UpdateFileSystemWindowsConfiguration
186
186
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
187
187
  * DailyAutomaticBackupStartTime: "STRING_VALUE",
188
188
  * AutomaticBackupRetentionDays: Number("int"),
189
189
  * ThroughputCapacity: Number("int"),
190
- * SelfManagedActiveDirectoryConfiguration: {
190
+ * SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryConfigurationUpdates
191
191
  * UserName: "STRING_VALUE",
192
192
  * Password: "STRING_VALUE",
193
- * DnsIps: [
193
+ * DnsIps: [ // DnsIps
194
194
  * "STRING_VALUE",
195
195
  * ],
196
196
  * },
197
- * AuditLogConfiguration: {
197
+ * AuditLogConfiguration: { // WindowsAuditLogCreateConfiguration
198
198
  * FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
199
199
  * FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
200
200
  * AuditLogDestination: "STRING_VALUE",
201
201
  * },
202
202
  * },
203
- * LustreConfiguration: {
203
+ * LustreConfiguration: { // UpdateFileSystemLustreConfiguration
204
204
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
205
205
  * DailyAutomaticBackupStartTime: "STRING_VALUE",
206
206
  * AutomaticBackupRetentionDays: Number("int"),
207
207
  * AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
208
208
  * DataCompressionType: "NONE" || "LZ4",
209
- * LogConfiguration: {
209
+ * LogConfiguration: { // LustreLogCreateConfiguration
210
210
  * Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
211
211
  * Destination: "STRING_VALUE",
212
212
  * },
213
- * RootSquashConfiguration: {
213
+ * RootSquashConfiguration: { // LustreRootSquashConfiguration
214
214
  * RootSquash: "STRING_VALUE",
215
- * NoSquashNids: [
215
+ * NoSquashNids: [ // LustreNoSquashNids
216
216
  * "STRING_VALUE",
217
217
  * ],
218
218
  * },
219
219
  * },
220
- * OntapConfiguration: {
220
+ * OntapConfiguration: { // UpdateFileSystemOntapConfiguration
221
221
  * AutomaticBackupRetentionDays: Number("int"),
222
222
  * DailyAutomaticBackupStartTime: "STRING_VALUE",
223
223
  * FsxAdminPassword: "STRING_VALUE",
224
224
  * WeeklyMaintenanceStartTime: "STRING_VALUE",
225
- * DiskIopsConfiguration: {
225
+ * DiskIopsConfiguration: { // DiskIopsConfiguration
226
226
  * Mode: "AUTOMATIC" || "USER_PROVISIONED",
227
227
  * Iops: Number("long"),
228
228
  * },
229
229
  * ThroughputCapacity: Number("int"),
230
- * AddRouteTableIds: [
230
+ * AddRouteTableIds: [ // RouteTableIds
231
231
  * "STRING_VALUE",
232
232
  * ],
233
233
  * RemoveRouteTableIds: [
234
234
  * "STRING_VALUE",
235
235
  * ],
236
236
  * },
237
- * OpenZFSConfiguration: {
237
+ * OpenZFSConfiguration: { // UpdateFileSystemOpenZFSConfiguration
238
238
  * AutomaticBackupRetentionDays: Number("int"),
239
239
  * CopyTagsToBackups: true || false,
240
240
  * CopyTagsToVolumes: true || false,
@@ -26,7 +26,7 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
26
26
  * import { FSxClient, UpdateSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, UpdateSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
- * const input = {
29
+ * const input = { // UpdateSnapshotRequest
30
30
  * ClientRequestToken: "STRING_VALUE",
31
31
  * Name: "STRING_VALUE", // required
32
32
  * SnapshotId: "STRING_VALUE", // required
@@ -26,12 +26,12 @@ export interface UpdateStorageVirtualMachineCommandOutput extends UpdateStorageV
26
26
  * import { FSxClient, UpdateStorageVirtualMachineCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, UpdateStorageVirtualMachineCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
- * const input = {
30
- * ActiveDirectoryConfiguration: {
31
- * SelfManagedActiveDirectoryConfiguration: {
29
+ * const input = { // UpdateStorageVirtualMachineRequest
30
+ * ActiveDirectoryConfiguration: { // UpdateSvmActiveDirectoryConfiguration
31
+ * SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryConfigurationUpdates
32
32
  * UserName: "STRING_VALUE",
33
33
  * Password: "STRING_VALUE",
34
- * DnsIps: [
34
+ * DnsIps: [ // DnsIps
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * },
@@ -26,15 +26,15 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad
26
26
  * import { FSxClient, UpdateVolumeCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, UpdateVolumeCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
- * const input = {
29
+ * const input = { // UpdateVolumeRequest
30
30
  * ClientRequestToken: "STRING_VALUE",
31
31
  * VolumeId: "STRING_VALUE", // required
32
- * OntapConfiguration: {
32
+ * OntapConfiguration: { // UpdateOntapVolumeConfiguration
33
33
  * JunctionPath: "STRING_VALUE",
34
34
  * SecurityStyle: "UNIX" || "NTFS" || "MIXED",
35
35
  * SizeInMegabytes: Number("int"),
36
36
  * StorageEfficiencyEnabled: true || false,
37
- * TieringPolicy: {
37
+ * TieringPolicy: { // TieringPolicy
38
38
  * CoolingPeriod: Number("int"),
39
39
  * Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
40
40
  * },
@@ -42,25 +42,25 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad
42
42
  * CopyTagsToBackups: true || false,
43
43
  * },
44
44
  * Name: "STRING_VALUE",
45
- * OpenZFSConfiguration: {
45
+ * OpenZFSConfiguration: { // UpdateOpenZFSVolumeConfiguration
46
46
  * StorageCapacityReservationGiB: Number("int"),
47
47
  * StorageCapacityQuotaGiB: Number("int"),
48
48
  * RecordSizeKiB: Number("int"),
49
49
  * DataCompressionType: "NONE" || "ZSTD" || "LZ4",
50
- * NfsExports: [
51
- * {
52
- * ClientConfigurations: [ // required
53
- * {
50
+ * NfsExports: [ // OpenZFSNfsExports
51
+ * { // OpenZFSNfsExport
52
+ * ClientConfigurations: [ // OpenZFSClientConfigurations // required
53
+ * { // OpenZFSClientConfiguration
54
54
  * Clients: "STRING_VALUE", // required
55
- * Options: [ // required
55
+ * Options: [ // OpenZFSNfsExportOptions // required
56
56
  * "STRING_VALUE",
57
57
  * ],
58
58
  * },
59
59
  * ],
60
60
  * },
61
61
  * ],
62
- * UserAndGroupQuotas: [
63
- * {
62
+ * UserAndGroupQuotas: [ // OpenZFSUserAndGroupQuotas
63
+ * { // OpenZFSUserOrGroupQuota
64
64
  * Type: "USER" || "GROUP", // required
65
65
  * Id: Number("int"), // required
66
66
  * StorageCapacityQuotaGiB: Number("int"), // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-fsx",
3
3
  "description": "AWS SDK for JavaScript Fsx Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",